forked from mkdasher/mupen64-rr-lua-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·442 lines (372 loc) · 9 KB
/
configure
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#!/bin/sh
if [ -z "$CC" ]; then
CC=gcc
fi
if [ -z "$CXX" ]; then
CXX=g++
fi
# check for a C compiler
check_cc()
{
if [ ! -z "$CC" ]; then
if [ ! -x "`which "$CC"`" ]; then
echo "`which "$CC"` not executable, falling back to cc"
CC="cc"
fi
else
CC="cc"
if [ ! -x "`which "$CC"`" ]; then
echo "*** No C compiler found"
return 1
fi
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "int main(void) { return 0; }" > "$FILE"
$CC -x "c" -o "$OUTFILE" "$FILE" 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile test program."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found a working C compiler ($CC)."
return 0
}
# check for a C++ compiler
check_cxx()
{
if [ ! -z "$CXX" ]; then
if [ ! -x "`which "$CXX"`" ]; then
echo "`which "$CXX"` not executable, falling back to c++"
CXX="c++"
fi
else
CXX="c++"
if [ ! -x "`which "$CXX"`" ]; then
echo "*** No C++ compiler found"
return 1
fi
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "int main(void) { return 0; }" > "$FILE"
$CXX -x "c++" -o "$OUTFILE" "$FILE" 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile test program."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found a working C++ compiler ($CXX)."
return 0
}
# check for libavifile
check_libavifile()
{
echo "Checking avifile..."
if [ ! -x "`which avifile-config`" ]; then
echo "*** Couldn't find avifile-config. (You can get avifile at http://avifile.sourceforge.net/)"
exit 1
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "#include <avifile.h>" > "$FILE"
echo "int main(void) { return 0; }" >> "$FILE"
$CXX -x "c++" -o "$OUTFILE" "$FILE" `avifile-config --libs` `avifile-config --cflags` 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile avifile test."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found libavifile version `avifile-config --version`."
return 0
}
# check for libsdl
check_libsdl()
{
echo "Checking SDL..."
if [ ! -x "`which sdl-config`" ]; then
echo "*** Couldn't find sdl-config. (You can get libSDL at http://www.libsdl.org/)"
exit 1
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "#include \"SDL.h\"" > "$FILE"
echo "#include <stdio.h>" >> "$FILE"
echo "int main(void) { if (SDL_Init( 0 ) < 0) { printf( \"SDL_Init(): %s\\n\", SDL_GetError() ); return 1; } return 0; }" >> "$FILE"
$CC -x "c" -o "$OUTFILE" "$FILE" `sdl-config --libs` `sdl-config --cflags` 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile SDL test."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found SDL version `sdl-config --version`."
return 0
}
# check for gtk 1.2
check_libgtk12()
{
echo "Checking GTK 1.2..."
if [ ! -x "`which gtk-config`" ]; then
echo "*** Couldn't find gtk-config."
return 1
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "#include <gtk/gtk.h>" > "$FILE"
echo "#include <stdio.h>" >> "$FILE"
echo "int main(int argc, char *argv[]) { if (gtk_init_check(&argc,&argv) == FALSE) { printf( \"gtk_init_check() failed\"); return 1; } return 0; }" >> "$FILE"
$CC -x "c" -o "$OUTFILE" "$FILE" `gtk-config --libs` `gtk-config --cflags` 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile GTK 1.2 test."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found GTK version `gtk-config --version`."
return 0
}
# check for gtk 2
check_libgtk2()
{
echo "Checking GTK 2..."
if [ ! -x "`which pkg-config`" ]; then
echo "*** Couldn't find pkg-config (required to compile many programs)."
return 1
fi
FILE="./config.temp"
OUTFILE="./config.temp"
echo "#include <gtk/gtk.h>" > "$FILE"
echo "#include <stdio.h>" >> "$FILE"
echo "int main(int argc, char *argv[]) { if (gtk_init_check(&argc,&argv) == FALSE) { printf( \"gtk_init_check() failed\"); return 1; } return 0; }" >> "$FILE"
$CC -x "c" -o "$OUTFILE" "$FILE" `pkg-config gtk+-2.0 --libs` `pkg-config gtk+-2.0 --cflags` 2>&1 | cat >>config.log
OK="0"
if [ ! -s "$OUTFILE" ]; then
echo "*** Couldn't compile GTK 2 test."
else
chmod +x "$OUTFILE"
"$OUTFILE"
if [ "$?" -eq "0" ]; then
OK="1"
fi
fi
rm -f "$FILE"
rm -f "$OUTFILE"
if [ "$OK" -eq "0" ]; then
return 1
fi
echo "Found GTK version `pkg-config gtk+-2.0 --modversion`."
return 0
}
# main configuration routine
echo "`date`" > config.log
check_cc
if [ "$?" -ne "0" ]; then
echo "*** Couldn't find a working C compiler!"
exit 1
fi
check_libsdl
if [ "$?" -ne "0" ]; then
echo "*** Couldn't find a working SDL library!"
exit 1
fi
check_libgtk12
if [ "$?" -ne "0" ]; then
GTK12="0"
else
GTK12="1"
fi
check_libgtk2
if [ "$?" -ne "0" ]; then
GTK2="0"
else
GTK2="1"
fi
BOTHGTK="0"
if [ "$GTK12" -eq "1" ]; then
if [ "$GTK2" -eq "1" ]; then
BOTHGTK="1"
echo "Your system support both GTK 1.2 and GTK 2, do you want to compile mupen64 with GTK 2 support ?"
read -p "(Y)es or (N)o [Default is Yes]: " answer
if [ -n "$answer" ]
then
if [ $(echo $answer | cut -c 1 | tr a-z A-Z) = 'N' ]
then
UGTK2="0"
else
UGTK2="1"
fi
else
UGTK2="1"
fi
fi
fi
if [ "$BOTHGTK" -eq "0" ]; then
if [ "$GTK12" -eq "1" ]
then
UGTK2="0"
else
if [ "$GTK2" -eq "1" ]
then
UGTK2="1"
else
echo "*** Couldn't find a working GTK library!"
exit 1
fi
fi
fi
if [ "$UGTK2" -eq "0" ]
then
echo "Mupen64 will use GTK 1.2"
else
echo "Mupen64 will use GTK 2"
fi
echo
echo "Do you want to configure mupen64 to run in a user directory? (Answering no"
echo "will configure it for multi-users usage with the configuration stored in the"
echo "HOME directory)"
read -p "(Y)es or (N)o [Default is: Yes]: " answer
if [ -n "$answer" ]
then
if [ $(echo $answer | cut -c 1 | tr a-z A-Z) = 'N' ]
then
echo "In which prefix do u want to install mupen64 ? [Default: /usr/local/] "
read answer
if [ -z $answer ]
then
answer="/usr/local/"
fi
WITH_HOME=$answer
fi
fi
# ---- VCR
echo
echo "Do you want to enable VCR support (requires avifile and a C++ compiler)?"
read -p "(Y)es or (N)o [Default is: No]: " answer
if [ -n "$answer" ]
then
if [ $(echo $answer | cut -c 1 | tr a-z A-Z) = 'Y' ]
then
check_cxx
if [ "$?" -eq "0" ]; then
check_libavifile
if [ "$?" -eq "0" ]; then
VCR_SUPPORT=1
else
echo "*** Couldn't find a working avifile library!"
echo "Disabling VCR support."
fi
else
echo "*** Couldn't find a working C++ compiler!"
echo "Disabling VCR support."
fi
fi
fi
# write config.h
echo
echo "Writing config.h..."
touch config.h.old
if [ -f config.h ]; then
cp config.h config.h.old
fi
echo "#ifndef CONFIG_H" > config.h
echo "#define CONFIG_H" >> config.h
echo "" >> config.h
if [ -z "$WITH_HOME" ]; then
echo "#undef WITH_HOME" >> config.h
else
echo "#define WITH_HOME \"${WITH_HOME}\"" >> config.h
fi
if [ -z "$VCR_SUPPORT" ]; then
echo "#undef VCR_SUPPORT" >> config.h
else
echo "#define VCR_SUPPORT 1" >> config.h
fi
if [ "$UGTK2" -eq "0" ]; then
echo "#undef GTK2_SUPPORT" >> config.h
else
echo "#define GTK2_SUPPORT 1" >> config.h
fi
echo "" >> config.h
echo "#endif /* CONFIG_H */" >> config.h
CONFIG_CHANGED=0
if [ ! -z "`diff config.h config.h.old`" ]; then
CONFIG_CHANGED=1
fi
rm config.h.old
# build mupen?
echo
echo "Do you want to build mupen64 now?"
if [ "$CONFIG_CHANGED" -eq "0" ]; then
echo "Note: The configuration has not been changed since the last time it was written."
fi
read -p "(Y)es or (N)o [Default is: No]: " answer
if [ -n "$answer" ]
then
if [ $(echo $answer | cut -c 1 | tr a-z A-Z) = 'Y' ]
then
echo
echo "Building mupen64..."
export CC
export CXX
make clean 2>&1 | cat >>config.log
make 2>&1 | cat >>config.log
if [ "$?" -ne "0" ] || [ ! -x ./mupen64 ]; then
echo "Looks like something went wrong when building mupen64 :("
exit 1
else
echo -n "Everything seems to be ok, you can run ./mupen64 now if you have configured mupen64 to be run in a user directory or use "
echo "the install.sh shell-script to install it in your system otherwise."
fi
fi
fi
echo "Everything ok" >> config.log
exit 0