summaryrefslogtreecommitdiff
blob: 39c539e1c2f9f68f8cc97e7c7034c668309ae714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
diff -Naur linden.orig/indra/SConstruct linden/indra/SConstruct
--- linden.orig/indra/SConstruct	2007-04-04 00:40:46.000000000 +0900
+++ linden/indra/SConstruct	2007-04-04 18:32:46.000000000 +0900
@@ -63,6 +63,8 @@
 opts.Add(EnumOption('OPENSOURCE', 'Build using only non-proprietary dependencies',
 			'yes',# OPENSOURCE: do not edit this line
 			allowed_values=('yes', 'no')))
+opts.Add(EnumOption('FMOD', 'Enabled fmod support', 'yes',
+			allowed_values=('yes', 'no')))
 helpenv = Environment(options = opts)
 Help(opts.GenerateHelpText(helpenv))
 
@@ -75,6 +77,7 @@
 grid = ARGUMENTS.get('GRID', 'default')
 # OPENSOURCE: do not edit the following line:
 opensource = ARGUMENTS.get('OPENSOURCE', 'yes')
+enable_fmod = ARGUMENTS.get('FMOD', 'yes')
 
 targets = [ target_param ]
 
@@ -184,16 +187,22 @@
 		flags += '-DLL_LINUX=1 '
 		if build_target == 'client':
 			flags += '-DAPPID=secondlife -DLL_SDL=1 '
-			if arch == 'x86_64' or arch == 'x86_64cross':
+			if enable_fmod == 'no' or arch == 'x86_64' or arch == 'x86_64cross':
 				flags += '-DLL_FMOD=0 '
 			flags += '-DLL_X11=1 -DLL_GTK=1 '
-			client_external_libs += [ 'gtk-x11-2.0', 'elfio' ]
+			client_external_libs += [ 'gtk-x11-2.0', 'ELFIO' ]
 			include_dirs += [ '../libraries/' + system_str + '/include/gtk-2.0' ]
 			include_dirs += [ '../libraries/' + system_str + '/include/glib-2.0']
 			include_dirs += [ '../libraries/' + system_str + '/include/pango-1.0' ]
 			include_dirs += [ '../libraries/' + system_str + '/include/atk-1.0' ]
 			include_dirs += [ '../libraries/' + system_str + '/include/ELFIO' ]
 			include_dirs += [ '../libraries/' + system_str + '/include/llfreetype2' ]
+ 			pipe = os.popen('pkg-config gtk+-2.0 --cflags')
+ 			flags += pipe.read().rstrip('\n') + ' '
+ 			pipe.close()
+ 			pipe = os.popen('freetype-config --cflags')
+ 			flags += pipe.read().rstrip('\n') + ' '
+ 			pipe.close()
 
 			# llmozlib stuff
 			if enable_mozlib == 'yes':
@@ -209,7 +218,7 @@
 	### Build type-specific flags ###
 
 	debug_opts = flags + '-fno-inline -O0 -D_DEBUG -DLL_DEBUG=1 '
-	release_opts = flags + '-O2 -DNDEBUG -DLL_RELEASE=1 '
+	release_opts = flags + '-DNDEBUG -DLL_RELEASE=1 '
 	releasenoopt_opts = flags + '-O0 -DNDEBUG -DLL_RELEASE=1 '
 	releasefordownload_opts = flags + '-O2 -DNDEBUG -DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 '
 
@@ -419,7 +428,7 @@
 
 		external_libs = client_external_libs + common_external_libs + [ 'freetype', 'jpeg', 'SDL', 'GL', 'GLU', 'ogg', 'vorbisenc', 'vorbisfile', 'vorbis', 'db-4.2', 'openjpeg' ]
 
-		if arch != 'x86_64' and arch != 'x86_64cross':
+		if enable_fmod == 'yes' and arch != 'x86_64' and arch != 'x86_64cross':
 			external_libs += [ 'fmod-3.75' ]
 
 		external_libs.remove('cares')
diff -Naur linden.orig/indra/llcommon/llsdserialize_xml.cpp linden/indra/llcommon/llsdserialize_xml.cpp
--- linden.orig/indra/llcommon/llsdserialize_xml.cpp	2007-04-04 00:40:49.000000000 +0900
+++ linden/indra/llcommon/llsdserialize_xml.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -35,7 +35,7 @@
 
 extern "C"
 {
-#include "expat/expat.h"
+#include "expat.h"
 }
 
 /**
diff -Naur linden.orig/indra/llcommon/llsys.cpp linden/indra/llcommon/llsys.cpp
--- linden.orig/indra/llcommon/llsys.cpp	2007-04-04 00:40:49.000000000 +0900
+++ linden/indra/llcommon/llsys.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -30,7 +30,7 @@
 #include "llsys.h"
 
 #include <iostream>
-#include <zlib/zlib.h>
+#include <zlib.h>
 #include "processor.h"
 
 #if LL_WINDOWS
diff -Naur linden.orig/indra/llimage/llimagejpeg.h linden/indra/llimage/llimagejpeg.h
--- linden.orig/indra/llimage/llimagejpeg.h	2007-04-04 00:40:49.000000000 +0900
+++ linden/indra/llimage/llimagejpeg.h	2007-04-04 17:49:58.000000000 +0900
@@ -33,9 +33,8 @@
 #include "llimage.h"
 
 extern "C" {
-#include "jpeglib/jinclude.h"
-#include "jpeglib/jpeglib.h"
-#include "jpeglib/jerror.h"
+#include "jpeglib.h"
+#include "jerror.h"
 }
 
 class LLImageJPEG : public LLImageFormatted
diff -Naur linden.orig/indra/llimagej2coj/llimagej2coj.cpp linden/indra/llimagej2coj/llimagej2coj.cpp
--- linden.orig/indra/llimagej2coj/llimagej2coj.cpp	2007-04-04 00:40:50.000000000 +0900
+++ linden/indra/llimagej2coj/llimagej2coj.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -30,7 +30,7 @@
 
 // this is defined so that we get static linking.
 #define OPJ_STATIC
-#include "openjpeg/openjpeg.h"
+#include "openjpeg.h"
 
 #include "lltimer.h"
 #include "llmemory.h"
diff -Naur linden.orig/indra/llmessage/llfiltersd2xmlrpc.cpp linden/indra/llmessage/llfiltersd2xmlrpc.cpp
--- linden.orig/indra/llmessage/llfiltersd2xmlrpc.cpp	2007-04-04 00:40:52.000000000 +0900
+++ linden/indra/llmessage/llfiltersd2xmlrpc.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -76,7 +76,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/llmessage/llhttpassetstorage.cpp linden/indra/llmessage/llhttpassetstorage.cpp
--- linden.orig/indra/llmessage/llhttpassetstorage.cpp	2007-04-04 00:40:53.000000000 +0900
+++ linden/indra/llmessage/llhttpassetstorage.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -36,7 +36,7 @@
 #include "llvfile.h"
 #include "llvfs.h"
 
-#include "zlib/zlib.h"
+#include "zlib.h"
 
 const U32 MAX_RUNNING_REQUESTS = 4;
 const F32 MAX_PROCESSING_TIME = 0.005f;
diff -Naur linden.orig/indra/llrender/llfont.cpp linden/indra/llrender/llfont.cpp
--- linden.orig/indra/llrender/llfont.cpp	2007-04-04 00:40:54.000000000 +0900
+++ linden/indra/llrender/llfont.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -30,11 +30,11 @@
 #include "llfont.h"
 
 // Freetype stuff
-#if LL_LINUX   // I had to do some work to avoid the system-installed FreeType headers... --ryan.
-#include "llfreetype2/freetype/ft2build.h"
-#else
+// #if LL_LINUX   // I had to do some work to avoid the system-installed FreeType headers... --ryan.
+// #include "llfreetype2/freetype/ft2build.h"
+// #else
 #include <ft2build.h>
-#endif
+// #endif
 
 // For some reason, this won't work if it's not wrapped in the ifdef
 #ifdef FT_FREETYPE_H
diff -Naur linden.orig/indra/llxml/llxmlnode.h linden/indra/llxml/llxmlnode.h
--- linden.orig/indra/llxml/llxmlnode.h	2007-04-04 00:40:56.000000000 +0900
+++ linden/indra/llxml/llxmlnode.h	2007-04-04 17:49:58.000000000 +0900
@@ -29,7 +29,7 @@
 #define LL_LLXMLNODE_H
 
 #define XML_STATIC
-#include "expat/expat.h"
+#include "expat.h"
 #include <map>
 
 #include "indra_constants.h"
diff -Naur linden.orig/indra/llxml/llxmlparser.h linden/indra/llxml/llxmlparser.h
--- linden.orig/indra/llxml/llxmlparser.h	2007-04-04 00:40:56.000000000 +0900
+++ linden/indra/llxml/llxmlparser.h	2007-04-04 17:49:58.000000000 +0900
@@ -29,7 +29,7 @@
 #define LL_LLXMLPARSER_H
 
 #define XML_STATIC
-#include "expat/expat.h"
+#include "expat.h"
 
 class LLXmlParser
 {
diff -Naur linden.orig/indra/newview/llfloaterpostcard.cpp linden/indra/newview/llfloaterpostcard.cpp
--- linden.orig/indra/newview/llfloaterpostcard.cpp	2007-04-04 00:41:09.000000000 +0900
+++ linden/indra/newview/llfloaterpostcard.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -237,7 +237,7 @@
 	{	
 	}
 	// *TODO define custom uploadFailed here so it's not such a generic message
-	void LLSendPostcardResponder::uploadComplete(const LLSD& content)
+	void uploadComplete(const LLSD& content)
 	{
 		// we don't care about what the server returns from this post, just clean up the UI
 		LLUploadDialog::modalUploadFinished();
diff -Naur linden.orig/indra/newview/lluserauth.cpp linden/indra/newview/lluserauth.cpp
--- linden.orig/indra/newview/lluserauth.cpp	2007-04-04 00:41:05.000000000 +0900
+++ linden/indra/newview/lluserauth.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -40,7 +40,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/llviewerobjectlist.cpp linden/indra/newview/llviewerobjectlist.cpp
--- linden.orig/indra/newview/llviewerobjectlist.cpp	2007-04-04 00:41:08.000000000 +0900
+++ linden/indra/newview/llviewerobjectlist.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -60,7 +60,7 @@
 #include "u64.h"
 #include "llviewerimagelist.h"
 #include "lldatapacker.h"
-#include <zlib/zlib.h>
+#include <zlib.h>
 #include "object_flags.h"
 
 extern BOOL gVelocityInterpolate;
diff -Naur linden.orig/indra/newview/llwebbrowserctrl.h linden/indra/newview/llwebbrowserctrl.h
--- linden.orig/indra/newview/llwebbrowserctrl.h	2007-04-04 00:41:01.000000000 +0900
+++ linden/indra/newview/llwebbrowserctrl.h	2007-04-04 17:49:58.000000000 +0900
@@ -91,6 +91,7 @@
 #include "lldynamictexture.h"
 #include "llmozlib.h"
 
+class LLUICtrlFactory;
 class LLViewBorder;
 class LLWebBrowserTexture;
 
@@ -239,7 +240,7 @@
 class LLWebBrowserTexture : public LLDynamicTexture
 {
 	public:
-		LLWebBrowserTexture::LLWebBrowserTexture( S32 width, S32 height, LLWebBrowserCtrl* browserCtrl, int browserWindow );
+		LLWebBrowserTexture( S32 width, S32 height, LLWebBrowserCtrl* browserCtrl, int browserWindow );
 		virtual ~LLWebBrowserTexture();
 
 		virtual void preRender( BOOL clear_depth = TRUE ) {};
diff -Naur linden.orig/indra/newview/llxmlrpctransaction.cpp linden/indra/newview/llxmlrpctransaction.cpp
--- linden.orig/indra/newview/llxmlrpctransaction.cpp	2007-04-04 00:41:06.000000000 +0900
+++ linden/indra/newview/llxmlrpctransaction.cpp	2007-04-04 17:49:58.000000000 +0900
@@ -33,7 +33,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"