Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 151753 Details for
Bug 127026
Requesting a Second Life client ebuild (secondlife)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
new patch goes with secondlife-1.18.5.3.ebuild (see comment #153)
secondlife-1.18.5.3-gentoo.patch (text/plain), 5.49 KB, created by
dhubbard
on 2008-05-04 05:54:16 UTC
(
hide
)
Description:
new patch goes with secondlife-1.18.5.3.ebuild (see comment #153)
Filename:
MIME Type:
Creator:
dhubbard
Created:
2008-05-04 05:54:16 UTC
Size:
5.49 KB
patch
obsolete
>diff -Naur linden.orig/indra/SConstruct linden/indra/SConstruct >--- linden.orig/indra/SConstruct 2007-10-30 06:12:46.000000000 +0900 >+++ linden/indra/SConstruct 2007-11-05 01:14:51.000000000 +0900 >@@ -112,7 +112,7 @@ > channel = optenv['CHANNEL'] > standalone = optenv['STANDALONE'] > opensource = standalone or optenv['OPENSOURCE'] >-enable_fmod = not opensource and optenv['FMOD'] >+enable_fmod = optenv['FMOD'] > elfio = optenv['ELFIO'] > > targets = [ target_param ] >@@ -135,6 +135,7 @@ > 'gdk-pixbuf-2.0', > 'glib-2.0', > 'gmodule-2.0', >+ 'gthread-2.0', > 'gtk+-2.0', > 'libpng', > 'pango', >@@ -155,6 +156,9 @@ > 'libssl', > ] > >+if enable_gstreamer: >+ standalone_pkgs += [ 'gstreamer-0.10' ] >+ > def pkgconfig(opt, pkgs=None): > if pkgs is None: > pkgs = standalone_pkgs + standalone_net_pkgs >@@ -243,7 +247,7 @@ > ############## > > # Generic GCC flags >- cflags = '-g -pipe -Wall -Wno-reorder -Wno-trigraphs -Wno-sign-compare -Werror -fexceptions ' >+ cflags = '-g -pipe -Wall -Wno-reorder -Wno-trigraphs -Wno-sign-compare -fexceptions ' > cxxflags = '' > cppflags = '-D_FORTIFY_SOURCE=2 ' > if standalone: >@@ -602,7 +606,7 @@ > net_external_libs = [ 'curl', 'ssl', 'crypto', 'aprutil-1', 'apr-1' ] > net_external_libs += [ 'cares', 'expat' ] > >- common_external_libs = net_external_libs + [ 'xmlrpc-epi', 'z' ] >+ common_external_libs = net_external_libs + [ 'xmlrpc', 'z' ] > > if build_target == 'client': > if platform == 'linux': >@@ -742,7 +746,7 @@ > internal_libs + external_libs) > > # Rpcserver >- external_libs = common_external_libs + ['xmlrpc-epi', 'mysqlclient'] >+ external_libs = common_external_libs + ['xmlrpc', 'mysqlclient'] > internal_libs = ['llscene', 'llmessage', 'lldatabase', 'llvfs', > 'llmath', 'llcommon'] > create_executable('rpcserver/rpcserver' + file_suffix, 'rpcserver', >diff -Naur linden.orig/indra/llimagej2coj/llimagej2coj.cpp linden/indra/llimagej2coj/llimagej2coj.cpp >--- linden.orig/indra/llimagej2coj/llimagej2coj.cpp 2007-10-30 06:12:46.000000000 +0900 >+++ linden/indra/llimagej2coj/llimagej2coj.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -33,7 +33,7 @@ > #include "llimagej2coj.h" > > // this is defined so that we get static linking. >-#include "openjpeg/openjpeg.h" >+#include "openjpeg.h" > > #include "lltimer.h" > #include "llmemory.h" >diff -Naur linden.orig/indra/llmath/llquaternion.cpp linden/indra/llmath/llquaternion.cpp >--- linden.orig/indra/llmath/llquaternion.cpp 2007-10-30 06:12:46.000000000 +0900 >+++ linden/indra/llmath/llquaternion.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -698,22 +698,22 @@ > { > default: > case LLQuaternion::XYZ: >- p = "XYZ"; >+ strcpy(p, "XYZ"); > break; > case LLQuaternion::YZX: >- p = "YZX"; >+ strcpy(p, "YZX"); > break; > case LLQuaternion::ZXY: >- p = "ZXY"; >+ strcpy(p, "ZXY"); > break; > case LLQuaternion::XZY: >- p = "XZY"; >+ strcpy(p, "XZY"); > break; > case LLQuaternion::YXZ: >- p = "YXZ"; >+ strcpy(p, "YXZ"); > break; > case LLQuaternion::ZYX: >- p = "ZYX"; >+ strcpy(p, "ZYX"); > break; > } > return p; >diff -Naur linden.orig/indra/llmessage/llfiltersd2xmlrpc.cpp linden/indra/llmessage/llfiltersd2xmlrpc.cpp >--- linden.orig/indra/llmessage/llfiltersd2xmlrpc.cpp 2007-10-30 06:12:46.000000000 +0900 >+++ linden/indra/llmessage/llfiltersd2xmlrpc.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -80,7 +80,7 @@ > > #include <sstream> > #include <iterator> >-#include <xmlrpc-epi/xmlrpc.h> >+#include <xmlrpc.h> > #include "apr-1/apr_base64.h" > > #include "llbuffer.h" >diff -Naur linden.orig/indra/llwindow/llgl.cpp linden/indra/llwindow/llgl.cpp >--- linden.orig/indra/llwindow/llgl.cpp 2007-10-30 06:12:47.000000000 +0900 >+++ linden/indra/llwindow/llgl.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -64,7 +64,7 @@ > # include "GL/glxext.h" > // Use glXGetProcAddressARB instead of glXGetProcAddress - the ARB symbol > // is considered 'legacy' but works on more machines. >-# define GLH_EXT_GET_PROC_ADDRESS(p) glXGetProcAddressARB((const GLubyte*)(p)) >+# define GLH_EXT_GET_PROC_ADDRESS(p) glXGetProcAddress((const GLubyte*)(p)) > #endif // LL_LINUX && !LL_MESA_HEADLESS > > >diff -Naur linden.orig/indra/newview/lluserauth.cpp linden/indra/newview/lluserauth.cpp >--- linden.orig/indra/newview/lluserauth.cpp 2007-10-30 06:12:51.000000000 +0900 >+++ linden/indra/newview/lluserauth.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -45,7 +45,7 @@ > > // NOTE: MUST include these after otherincludes since queue gets redefined!?!! > #include <curl/curl.h> >-#include <xmlrpc-epi/xmlrpc.h> >+#include <xmlrpc.h> > > > >diff -Naur linden.orig/indra/newview/llvoiceclient.cpp linden/indra/newview/llvoiceclient.cpp >--- linden.orig/indra/newview/llvoiceclient.cpp 2007-10-30 06:12:51.000000000 +0900 >+++ linden/indra/newview/llvoiceclient.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -39,7 +39,7 @@ > #include "llvoavatar.h" > #include "llbufferstream.h" > #include "llfile.h" >-#include "expat/expat.h" >+#include "expat.h" > #include "llcallbacklist.h" > #include "llviewerregion.h" > #include "llviewernetwork.h" // for gUserServerChoice >diff -Naur linden.orig/indra/newview/llxmlrpctransaction.cpp linden/indra/newview/llxmlrpctransaction.cpp >--- linden.orig/indra/newview/llxmlrpctransaction.cpp 2007-10-30 06:12:51.000000000 +0900 >+++ linden/indra/newview/llxmlrpctransaction.cpp 2007-11-05 01:13:59.000000000 +0900 >@@ -37,7 +37,7 @@ > > // Have to include these last to avoid queue redefinition! > #include <curl/curl.h> >-#include <xmlrpc-epi/xmlrpc.h> >+#include <xmlrpc.h> > > #include "viewer.h" >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 127026
:
87669
|
90814
|
90819
|
92739
|
101806
|
106217
|
106219
|
106221
|
106223
|
106225
|
106253
|
106259
|
106263
|
106265
|
106350
|
106352
|
106354
|
106554
|
106556
|
106558
|
106833
|
106834
|
106839
|
106898
|
106900
|
107290
|
107515
|
107540
|
107542
|
107550
|
107566
|
107598
|
107599
|
107600
|
107601
|
107603
|
108183
|
108224
|
110626
|
110627
|
110629
|
110630
|
110634
|
110636
|
110647
|
110648
|
110649
|
110651
|
110652
|
110654
|
110655
|
110656
|
110696
|
110698
|
111517
|
111519
|
111521
|
113643
|
113644
|
113664
|
113666
|
113668
|
113670
|
135152
|
142612
|
151751
| 151753 |
151755
|
152403
|
152405
|
152481
|
152485
|
152487
|
152745
|
152747
|
152749
|
156521