3 # This file is part of OpenTTD.
4 # OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
5 # OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
6 # See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
15 echo "$@" >> $config_log
19 ignore_extra_parameters="0"
20 # We set all kinds of defaults for params. Later on the user can override
21 # most of them; but if they don't, this default is used.
32 pkg_config="pkg-config"
36 config_log="config.log"
37 prefix_dir="/usr/local"
39 data_dir="share/games/openttd"
41 icon_dir="share/pixmaps"
52 enable_desync_debug="0"
65 enable_cocoa_quartz="1"
66 enable_cocoa_quickdraw="1"
68 with_application_bundle="1"
78 enable_builtin_depend="1"
144 enable_cocoa_quickdraw
146 with_application_bundle
155 enable_builtin_depend
175 CC CXX CFLAGS CXXFLAGS LDFLAGS CFLAGS_BUILD CXXFLAGS_BUILD LDFLAGS_BUILD PKG_CONFIG_PATH PKG_CONFIG_LIBDIR"
179 # Walk over all params from the user and override any default settings if
180 # needed. This also handles any invalid option.
182 if [ -n "$prev_p" ]; then
188 optarg=`expr "x$p" : 'x[^=]*=\(.*\)'`
191 --help | -h | -\?) showhelp; exit 0;;
193 --config-log) prev_p="config_log";;
194 --config-log=*) config_log="$optarg";;
196 --build) prev_p="build";;
197 --build=*) build="$optarg";;
199 --host) prev_p="host";;
200 --host=*) host="$optarg";;
203 --os=*) os="$optarg";;
205 --cpu-type) prev_p="cpu_type";;
206 --cpu-type=*) cpu_type="$optarg";;
208 --cc-build) prev_p="cc_build";;
209 --cc-build=*) cc_build="$optarg";;
210 --cc-host) prev_p="cc_host";;
211 --cc-host=*) cc_host="$optarg";;
212 --cxx-build) prev_p="cxx_build";;
213 --cxx-build=*) cxx_build="$optarg";;
214 --cxx-host) prev_p="cxx_host";;
215 --cxx-host=*) cxx_host="$optarg";;
216 --windres) prev_p="windres";;
217 --windres=*) windres="$optarg";;
218 --awk) prev_p="awk";;
219 --awk=*) awk="$optarg";;
220 --pkg-config) prev_p="pkg_config";;
221 --pkg-config=*) pkg_config="$optarg";;
222 --strip) prev_p="strip";;
223 --strip=*) strip="$optarg";;
224 --lipo) prev_p="lipo";;
225 --lipo=*) lipo="$optarg";;
227 --endian) prev_p="endian";;
228 --endian=*) endian="$optarg";;
232 # Alias --prefix with --prefix-dir, for compatibility with GNU autotools
233 --prefix-dir | --prefix) prev_p="prefix_dir";;
234 --prefix-dir=* | --prefix=*) prefix_dir="$optarg";;
236 --binary-dir) prev_p="binary_dir";;
237 --binary-dir=*) binary_dir="$optarg";;
239 --data-dir) prev_p="data_dir";;
240 --data-dir=*) data_dir="$optarg";;
242 --doc-dir) prev_p="doc_dir";;
243 --doc-dir=*) doc_dir="$optarg";;
245 --icon-dir) prev_p="icon_dir";;
246 --icon-dir=*) icon_dir="$optarg";;
248 --icon-theme-dir) prev_p="icon_theme_dir";;
249 --icon-theme-dir=*) icon_theme_dir="$optarg";;
250 --without-icon-theme) icon_theme_dir="";;
252 --menu-dir) prev_p="menu_dir";;
253 --menu-dir=*) menu_dir="$optarg";;
254 --without-menu-entry) menu_dir="";;
256 --menu-name) prev_p="menu_name";;
257 --menu-name=*) menu_name="$optarg";;
259 --binary-name) prev_p="binary_name";;
260 --binary-name=*) binary_name="$optarg";;
262 --man-dir) prev_p="man_dir";;
263 --man-dir=*) man_dir="$optarg";;
265 --personal-dir) prev_p="personal_dir";;
266 --personal-dir=*) personal_dir="$optarg";;
267 --without-personal-dir) personal_dir="";;
269 --shared-dir) prev_p="shared_dir";;
270 --shared-dir=*) shared_dir="$optarg";;
271 --without-shared-dir) shared_dir="";;
273 --install-dir) prev_p="install_dir";;
274 --install-dir=*) install_dir="$optarg";;
278 --menu-group) prev_p="menu_group";;
279 --menu-group=*) menu_group="$optarg";;
283 --enable-debug) enable_debug="1";;
284 --enable-debug=*) enable_debug="$optarg";;
285 --enable-desync-debug) enable_desync_debug="1";;
286 --enable-desync-debug=*) enable_desync_debug="$optarg";;
287 --enable-profiling) enable_profiling="1";;
288 --enable-profiling=*) enable_profiling="$optarg";;
289 --enable-lto) enable_lto="1";;
290 --enable-lto=*) enable_lto="$optarg";;
291 --enable-ipo) enable_lto="1";;
292 --enable-ipo=*) enable_lto="$optarg";;
293 --enable-dedicated) enable_dedicated="1";;
294 --enable-dedicated=*) enable_dedicated="$optarg";;
295 --enable-network) enable_network="2";;
296 --enable-network=*) enable_network="$optarg";;
297 --disable-network) enable_network="0";;
298 --disable-static) enable_static="0";;
299 --enable-static) enable_static="2";;
300 --enable-static=*) enable_static="$optarg";;
301 --disable-translator) enable_translator="0";;
302 --enable-translator) enable_translator="2";;
303 --enable-translator=*) enable_translator="$optarg";;
304 --disable-assert) enable_assert="0";;
305 --enable-assert) enable_assert="2";;
306 --enable-assert=*) enable_assert="$optarg";;
307 --disable-strip) enable_strip="0";;
308 --enable-strip) enable_strip="2";;
309 --enable-strip=*) enable_strip="$optarg";;
310 --disable-universal) enable_universal="0";;
311 --enable-universal) enable_universal="i386 ppc";;
312 --enable-universal=*) enable_universal="$optarg";;
313 --disable-osx-g5) enable_osx_g5="0";;
314 --enable-osx-g5) enable_osx_g5="2";;
315 --enable-osx-g5=*) enable_osx_g5="$optarg";;
316 --disable-unicode) enable_unicode="0";;
317 --enable-unicode) enable_unicode="2";;
318 --enable-unicode=*) enable_unicode="$optarg";;
319 --disable-console) enable_console="0";;
320 --enable-console) enable_console="2";;
321 --enable-console=*) enable_console="$optarg";;
323 --disable-cocoa-quartz) enable_cocoa_quartz="0";;
324 --enable-cocoa-quartz) enable_cocoa_quartz="2";;
325 --enable-cocoa-quartz=*) enable_cocoa_quartz="$optarg";;
326 --disable-cocoa-quickdraw) enable_cocoa_quickdraw="0";;
327 --enable-cocoa-quickdraw) enable_cocoa_quickdraw="2";;
328 --enable-cocoa-quickdraw=*) enable_cocoa_quickdraw="$optarg";;
330 --with-allegro) with_allegro="2";;
331 --without-allegro) with_allegro="0";;
332 --with-allegro=*) with_allegro="$optarg";;
334 --with-sdl) with_sdl="2";;
335 --without-sdl) with_sdl="0";;
336 --with-sdl=*) with_sdl="$optarg";;
338 --with-cocoa) with_cocoa="2";;
339 --without-cocoa) with_cocoa="0";;
340 --with-cocoa=*) with_cocoa="$optarg";;
342 --with-zlib) with_zlib="2";;
343 --without-zlib) with_zlib="0";;
344 --with-zlib=*) with_zlib="$optarg";;
346 --with-lzma) with_lzma="2";;
347 --without-lzma) with_lzma="0";;
348 --with-lzma=*) with_lzma="$optarg";;
349 --with-liblzma) with_lzma="2";;
350 --without-liblzma) with_lzma="0";;
351 --with-liblzma=*) with_lzma="$optarg";;
353 --with-lzo2) with_lzo2="2";;
354 --without-lzo2) with_lzo2="0";;
355 --with-lzo2=*) with_lzo2="$optarg";;
356 --with-liblzo2) with_lzo2="2";;
357 --without-liblzo2) with_lzo2="0";;
358 --with-liblzo2=*) with_lzo2="$optarg";;
360 --with-xdg-basedir) with_xdg_basedir="2";;
361 --without-xdg-basedir) with_xdg_basedir="0";;
362 --with-xdg-basedir=*) with_xdg_basedir="$optarg";;
363 --with-libxdg-basedir) with_xdg_basedir="2";;
364 --without-libxdg-basedir) with_xdg_basedir="0";;
365 --with-libxdg-basedir=*) with_xdg_basedir="$optarg";;
367 --with-png) with_png="2";;
368 --without-png) with_png="0";;
369 --with-png=*) with_png="$optarg";;
370 --with-libpng) with_png="2";;
371 --without-libpng) with_png="0";;
372 --with-libpng=*) with_png="$optarg";;
374 --with-libtimidity) with_libtimidity="2";;
375 --without-libtimidity) with_libtimidity="0";;
376 --with-libtimidity=*) with_libtimidity="$optarg";;
378 --with-freetype) with_freetype="2";;
379 --without-freetype) with_freetype="0";;
380 --with-freetype=*) with_freetype="$optarg";;
381 --with-libfreetype) with_freetype="2";;
382 --without-libfreetype) with_freetype="0";;
383 --with-libfreetype=*) with_freetype="$optarg";;
385 --with-fontconfig) with_fontconfig="2";;
386 --without-fontconfig) with_fontconfig="0";;
387 --with-fontconfig=*) with_fontconfig="$optarg";;
388 --with-libfontconfig) with_fontconfig="2";;
389 --without-libfontconfig) with_fontconfig="0";;
390 --with-libfontconfig=*) with_fontconfig="$optarg";;
392 --with-icu) with_icu_layout="2";with_icu_sort="2";;
393 --without-icu) with_icu_layout="0";with_icu_sort="0";;
394 --with-icu=*) with_icu_layout="$optarg";with_icu_sort="$optarg";;
395 --with-libicu) with_icu_layout="2";with_icu_sort="2";;
396 --without-libicu) with_icu_layout="0";with_icu_sort="0";;
397 --with-libicu=*) with_icu_layout="$optarg";with_icu_sort="$optarg";;
398 --with-icu-layout) with_icu_layout="2";;
399 --without-icu-layout) with_icu_layout="0";;
400 --with-icu-layout=*) with_icu_layout="$optarg";;
401 --with-icu-sort) with_icu_sort="2";;
402 --without-icu-sort) with_icu_sort="0";;
403 --with-icu-sort=*) with_icu_sort="$optarg";;
404 --static-icu) static_icu="1";;
405 --static-icu=*) static_icu="$optarg";;
406 --static-libicu) static_icu="1";;
407 --static-libicu=*) static_icu="$optarg";;
409 --with-psp-config) with_psp_config="2";;
410 --without-psp-config) with_psp_config="0";;
411 --with-psp-config=*) with_psp_config="$optarg";;
413 --disable-builtin-depend) enable_builtin_depend="0";;
414 --enable-builtin-depend) enable_builtin_depend="2";;
415 --enable-builtin-depend=*) enable_builtin_depend="$optarg";;
417 --with-makedepend) with_makedepend="2";;
418 --without-makedepend) with_makedepend="0";;
419 --with-makedepend=*) with_makedepend="$optarg";;
421 --with-direct-music) with_direct_music="2";;
422 --without-direct-music) with_direct_music="0";;
423 --with-direct-music=*) with_direct_music="$optarg";;
425 --with-sort) with_sort="2";;
426 --without-sort) with_sort="0";;
427 --with-sort=*) with_sort="$optarg";;
429 --with-iconv) with_iconv="2";;
430 --without-iconv) with_iconv="0";;
431 --with-iconv=*) with_iconv="$optarg";;
433 --with-midi=*) with_midi="$optarg";;
434 --with-midi-arg=*) with_midi_arg="$optarg";;
436 --without-distcc) with_distcc="0";;
437 --with-distcc) with_distcc="2";;
438 --with-distcc=*) with_distcc="$optarg";;
440 --without-ccache) with_ccache="0";;
441 --with-ccache) with_ccache="2";;
442 --with-ccache=*) with_ccache="$optarg";;
444 --without-nforenum) with_nforenum="0";;
445 --with-nforenum) with_nforenum="2";;
446 --with-nforenum=*) with_nforenum="$optarg";;
448 --without-grfcodec) with_grfcodec="0";;
449 --with-grfcodec) with_grfcodec="2";;
450 --with-grfcodec=*) with_grfcodec="$optarg";;
452 --without-osx-sysroot) with_osx_sysroot="0";;
453 --with-osx-sysroot) with_osx_sysroot="2";;
454 --with-osx-sysroot=*) with_osx_sysroot="$optarg";;
456 --without-application-bundle) with_application_bundle="0";;
457 --with-application-bundle) with_application_bundle="1";;
458 --with-application-bundle=*) with_application_bundle="$optarg";;
460 --without-threads) with_threads="0";;
461 --with-threads) with_threads="1";;
462 --with-threads=*) with_threads="$optarg";;
464 --without-sse) with_sse="0";;
465 --with-sse) with_sse="1";;
466 --with-sse=*) with_sse="$optarg";;
468 CC=* | --CC=*) CC="$optarg";;
469 CXX=* | --CXX=*) CXX="$optarg";;
470 CFLAGS=* | --CFLAGS=*) CFLAGS="$optarg";;
471 CXXFLAGS=* | --CXXFLAGS=*) CXXFLAGS="$optarg";;
472 LDFLAGS=* | --LDFLAGS=*) LDFLAGS="$optarg";;
473 CFLAGS_BUILD=* | --CFLAGS_BUILD=* | --CFLAGS-BUILD=*) CFLAGS_BUILD="$optarg";;
474 CXXFLAGS_BUILD=* | --CXXFLAGS_BUILD=* | --CXXFLAGS-BUILD=*) CXXFLAGS_BUILD="$optarg";;
475 LDFLAGS_BUILD=* | --LDFLAGS_BUILD=* | --LDFLAGS-BUILD=*) LDFLAGS_BUILD="$optarg";;
476 PKG_CONFIG_PATH=* | --PKG_CONFIG_PATH=* | --PKG-CONFIG-PATH=*) PKG_CONFIG_PATH="$optarg";;
477 PKG_CONFIG_LIBDIR=* | --PKG_CONFIG_LIBDIR=* | --PKG-CONFIG-LIBDIR=*) PKG_CONFIG_LIBDIR="$optarg";;
479 --ignore-extra-parameters) ignore_extra_parameters="1";;
482 if [ "$ignore_extra_parameters" = "0" ]; then
483 log 1 "Unknown option $p"
486 log 1 "Unknown option $p ignored"
492 if [ -n "$prev_p" ]; then
493 log 1 "configure: error: missing argument to --$prev_p"
498 echo "" > $config_log
499 log 2 "Invocation: $0 $*"
503 # Here we save all params, so we can later on do an exact redo of this
504 # configuration, without having the user to re-input stuff
506 echo "Running configure with following options:" >> $config_log
507 echo "" >> $config_log
509 configure="$CONFIGURE_EXECUTABLE --ignore-extra-parameters"
510 for p in $save_params_array; do
512 p=`echo "$p" | sed 's@_@-@g;s@\n@@g;s@ @\\ @g'`
513 # Only save those params that aren't empty
514 configure="$configure --$p=\"$v\""
517 echo "$configure" >> $config_log
518 echo "$configure" > config.cache
519 echo "" >> $config_log
522 # Export a variable so tools like pkg-config can see it when invoked.
523 # If the variable contains an empty string then unset it.
524 # $1 - name of the variable to export or unset
526 eval local value=\$$1
527 if [ -n "$value" ]; then
529 log 2 "using $1=$value";
532 log 2 "not using $1";
537 # Some params want to be in full uppercase, else they might not work as
538 # expected.. fix that here
540 endian=`echo $endian | tr '[a-z]' '[A-Z]'`
541 os=`echo $os | tr '[a-z]' '[A-Z]'`
542 cpu_type=`echo $cpu_type | tr '[a-z]' '[A-Z]'`
544 # Export some variables to be used by pkg-config
546 # PKG_CONFIG_LIBDIR variable musn't be set if we are not willing to
547 # override the default pkg-config search path, it musn't be an empty
548 # string. If the variable is empty (e.g. when an empty string comes
549 # from config.cache) then unset it. This way the "don't override" state
550 # will be properly preserved when (re)configuring.
551 export_or_unset PKG_CONFIG_PATH
552 export_or_unset PKG_CONFIG_LIBDIR
554 # Check if all params have valid values
556 # Endian only allows AUTO, LE and, BE
557 if [ -z "`echo $endian | egrep '^(AUTO|LE|BE|PREPROCESSOR)$'`" ]; then
558 log 1 "configure: error: invalid option --endian=$endian"
559 log 1 " Available options are: --endian=[AUTO|LE|BE]"
562 if [ "$endian" = "PREPROCESSOR" ] && [ "$os" != "OSX" ]; then
563 log 1 "configure: error: invalid option --endian=$endian"
564 log 1 " PREPROCESSOR is only available for OSX"
567 # OS only allows DETECT, UNIX, OSX, FREEBSD, DRAGONFLY, OPENBSD, NETBSD, MORPHOS, BEOS, HAIKU, SUNOS, CYGWIN, MINGW, OS2, DOS, WINCE, and PSP
568 if [ -z "`echo $os | egrep '^(DETECT|UNIX|OSX|FREEBSD|DRAGONFLY|OPENBSD|NETBSD|HPUX|MORPHOS|BEOS|HAIKU|SUNOS|CYGWIN|MINGW|OS2|DOS|WINCE|PSP)$'`" ]; then
569 log 1 "configure: error: invalid option --os=$os"
570 log 1 " Available options are: --os=[DETECT|UNIX|OSX|FREEBSD|DRAGONFLY|OPENBSD|NETBSD|HPUX|MORPHOS|BEOS|HAIKU|SUNOS|CYGWIN|MINGW|OS2|DOS|WINCE|PSP]"
573 # cpu_type can be either 32 or 64
574 if [ -z "`echo $cpu_type | egrep '^(32|64|DETECT)$'`" ]; then
575 log 1 "configure: error: invalid option --cpu-type=$cpu_type"
576 log 1 " Available options are: --cpu-type[=DETECT|32|64]"
579 # enable_debug should be between 0 and 4
580 if [ -z "`echo $enable_debug | egrep '^[0123]$'`" ]; then
581 log 1 "configure: error: invalid option --enable-debug=$enable_debug"
582 log 1 " Available options are: --enable-debug[=0123]"
586 # enable_desync_debug should be between 0 and 3
587 if [ -z "`echo $enable_desync_debug | egrep '^[012]$'`" ]; then
588 log 1 "configure: error: invalid option --enable-desync-debug=$enable_desync_debug"
589 log 1 " Available options are: --enable-desync-debug[=012]"
600 # Check for universal builds; they only make sense for OSX, so fail if enabled for another OS
601 if [ "$enable_universal" = "0" ]; then
602 log 1 "checking universal build... no"
604 if [ "$os" != "OSX" ]; then
605 log 1 "configure: error: --enable-universal only works on OSX"
608 log 1 "checking universal build... yes, for: $enable_universal"
611 # Already detected by check_build
612 log 1 "checking build cc... $cc_build"
613 log 1 "checking host cc... $cc_host"
618 if [ "$enable_strip" != "0" ]; then
621 log 1 "checking strip... disabled"
625 if [ "$enable_builtin_depend" != "0" ]; then
626 log 1 "checking builtin depend... yes"
627 makedepend="\$(SRC_OBJS_DIR)/\$(DEPEND)"
629 log 1 "checking builtin depend... no"
634 detect_sse_capable_architecture
636 if [ "$enable_static" = "1" ]; then
637 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "MORPHOS" ] || [ "$os" = "DOS" ]; then
644 if [ "$enable_static" != "0" ]; then
645 log 1 "checking static... yes"
647 if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ] && [ "$os" != "OSX" ] && [ "$os" != "MORPHOS" ] && [ "$os" != "DOS" ]; then
648 log 1 "WARNING: static is only known to work on Windows, DOS, MacOSX and MorphOS"
649 log 1 "WARNING: use static at your own risk on this platform"
654 log 1 "checking static... no"
657 if [ "$enable_unicode" = "1" ]; then
658 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "DOS" ]; then
665 if [ "$enable_unicode" != "0" ]; then
666 log 1 "checking unicode... yes"
668 log 1 "checking unicode... no"
671 # Show what we configured
672 if [ "$enable_debug" = "0" ]; then
673 log 1 "using debug level... no"
674 elif [ "$enable_profiling" != "0" ]; then
675 log 1 "using debug level... profiling (debug level $enable_debug)"
677 log 1 "using debug level... level $enable_debug"
680 if [ "$enable_desync_debug" = "0" ]; then
681 log 1 "using desync debug level... no"
683 log 1 "using desync debug level... level $enable_desync_debug"
684 log 1 "WARNING: desync debug functions slow down the game considerably."
685 log 1 "WARNING: use only when you are instructed to do so"
686 log 1 " or when you know what you are doing."
691 if [ $cc_version -ge 49 ]; then
692 # Enable use of C++11 custom allocators
693 CFLAGS="$CFLAGS -DCUSTOM_ALLOCATOR"
696 if [ "$enable_lto" != "0" ]; then
697 # GCC 4.5 outputs '%{flto}', GCC 4.6 outputs '%{flto*}'
698 has_lto=`($cxx_build -dumpspecs 2>&1 | grep '\%{flto') || ($cxx_build -help ipo 2>&1 | grep '\-ipo')`
699 if [ -n "$has_lto" ]; then
700 log 1 "using link time optimization... yes"
703 log 1 "using link time optimization... no"
704 log 1 "WARNING: you selected link time optimization but it is not found."
708 log 1 "using link time optimization... no"
712 if [ "$os" != "OSX" ] && [ "$with_osx_sysroot" != "0" ]; then
713 if [ "$with_osx_sysroot" = "1" ]; then
716 log 1 "checking OSX sysroot... not OSX, skipping"
718 log 1 "configure: error: --with-osx-sysroot only works if OSX is the target"
723 if [ "$with_osx_sysroot" != "0" ]; then
724 if [ "$enable_universal" = "0" ] && [ "$with_osx_sysroot" != "1" ] && [ "$with_osx_sysroot" != "2" ]; then
725 # Sysroot manually specified? Check for usability
726 log 1 "checking OSX sysroot... $with_osx_sysroot"
727 if ! check_osx_sdk "$with_osx_sysroot"; then
728 log 1 "Passed sysroot not found/not functional"
732 # If autodetect and no universal, use system default
733 if [ "$with_osx_sysroot" = "1" ] && [ "$enable_universal" = "0" ]; then
734 log 1 "checking OSX sysroot... no (use system default)"
736 log 1 "checking OSX sysroot... automatically"
741 if [ -n "$osx_sdk_path" ]; then
742 if [ "$enable_universal" != "0" ]; then
743 if [ -z "$osx_sdk_104_path" ]; then
744 log 1 "WARNING: Could not find a usable 10.4u SDK, the resulting"
745 log 1 "WARNING: binary will only run on OSX 10.5 or later"
746 osx_sdk_104_path="$osx_sdk_path"
748 OSX_SYSROOT="-isysroot $osx_sdk_104_path"
749 OSX_LD_SYSROOT="-Wl,-syslibroot,$osx_sdk_104_path"
751 OSX_SYSROOT="-isysroot $osx_sdk_path"
752 OSX_LD_SYSROOT="-Wl,-syslibroot,$osx_sdk_path"
756 if [ "$os" = "OSX" ]; then
757 log 1 "checking OSX sysroot... no (use system default)"
765 if [ "$enable_dedicated" != "0" ]; then
766 log 1 "checking GDI video driver... dedicated server, skipping"
767 log 1 "checking dedicated... found"
769 if [ "$enable_network" = "0" ]; then
770 log 1 "configure: error: building a dedicated server without network support is pointless"
774 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ]; then
775 log 1 "checking GDI video driver... found"
777 log 1 "checking GDI video driver... not Windows, skipping"
780 if [ -z "$allegro_config" ] && [ -z "$sdl_config" ] && [ "$with_cocoa" = 0 ] && [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ] && [ "$os" != "WINCE" ]; then
781 log 1 "configure: error: no video driver development files found"
782 log 1 " If you want a dedicated server use --enable-dedicated as parameter"
785 log 1 "checking dedicated... not selected"
789 if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ]; then
790 log 1 "checking console application... not Windows, skipping"
791 elif [ "$enable_console" = "1" ] && [ "$enable_dedicated" != "0" ]; then
792 log 1 "checking console application... dedicated server, enabled"
794 elif [ "$enable_console" = "1" ]; then
795 log 1 "checking console application... disabled (only used when forced)"
797 elif [ "$enable_console" = "0" ]; then
798 log 1 "checking console application... disabled"
800 log 1 "checking console application... enabled"
803 if [ "$enable_network" = "1" ] && [ "$os" = "DOS" ]; then
804 log 1 "checking network... DOS, skipping"
806 elif [ "$enable_network" != "0" ]; then
807 log 1 "checking network... found"
809 log 1 "checking network... disabled"
812 log 1 "checking squirrel... found"
813 SCRIPT_SRC_DIR="$ROOT_DIR/src/3rdparty/squirrel/include"
815 if [ "$enable_translator" != "0" ]; then
816 log 1 "checking translator... debug"
817 # -t shows TODO items, normally they are muted
820 log 1 "checking translator... no"
824 if [ "$enable_assert" != "0" ]; then
825 log 1 "checking assert... enabled"
827 log 1 "checking assert... disabled"
830 pre_detect_with_zlib=$with_zlib
833 if [ "$with_zlib" = "0" ] || [ -z "$zlib-config" ]; then
834 log 1 "WARNING: zlib was not detected or disabled"
835 log 1 "WARNING: OpenTTD doesn't require zlib, but it does mean that many features"
836 log 1 "WARNING: (like loading most old savegames/scenarios, loading heightmaps,"
837 log 1 "WARNING: using PNG, or using fonts, ...) will be disabled."
838 if [ "$pre_detect_with_zlib" = "0" ]; then
839 log 1 "WARNING: We strongly suggest you to install zlib."
841 log 1 "configure: error: no zlib detected"
842 log 1 " If you want to compile without zlib use --without-zlib as parameter"
847 pre_detect_with_lzma=$with_lzma
850 if [ "$with_lzma" = "0" ] || [ -z "$lzma_config" ]; then
851 log 1 "WARNING: lzma was not detected or disabled"
852 log 1 "WARNING: OpenTTD doesn't require lzma, but it does mean that many features"
853 log 1 "WARNING: (like loading most savegames/scenarios and joining most servers)"
854 log 1 "WARNING: will be disabled."
855 if [ "$pre_detect_with_lzma" = "0" ]; then
856 log 1 "WARNING: We strongly suggest you to install liblzma."
857 log 1 "configure: error: no liblzma detected"
859 log 1 " If you want to compile without lzma use --without-lzma as parameter"
864 pre_detect_with_lzo2=$with_lzo2
867 if [ "$with_lzo2" = "0" ] || [ -z "$lzo2" ]; then
868 log 1 "WARNING: liblzo2 was not detected or disabled"
869 log 1 "WARNING: OpenTTD doesn't require liblzo2, but it does mean that"
870 log 1 "WARNING: loading old savegames/scenarios will be disabled."
871 if [ "$pre_detect_with_lzo2" = "0" ]; then
872 log 1 "WARNING: We strongly suggest you to install liblzo2."
874 log 1 "configure: error: no liblzo2 detected"
875 log 1 " If you want to compile without liblzo2 use --without-liblzo2 as parameter"
889 if [ "$with_direct_music" != "0" ]; then
890 if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ]; then
891 if [ "$with_direct_music" != "1" ]; then
892 log 1 "configure: error: direct-music is only supported on Win32 targets"
895 with_direct_music="0"
897 log 1 "checking direct-music... not Windows, skipping"
905 if [ "$os" = "OSX" ] && [ "$endian" = "AUTO" ]; then
906 endian="PREPROCESSOR"
909 log 1 "checking endianness... $endian"
911 # Suppress language errors when there is a version defined, indicating a release
912 # It just isn't pretty if any release produces warnings in the languages.
913 if [ -f "$ROOT_DIR/version" ]; then
915 log 1 "suppress language errors... yes"
918 log 1 "suppress language errors... no"
921 if [ "$enable_debug" = "0" ] && [ "$enable_profiling" = "0" ] && [ "$enable_strip" != "0" ]; then
922 if [ "$os" = "MORPHOS" ]; then
923 strip_arg="--strip-all --strip-unneeded --remove-section .comment"
924 elif [ "$os" = "OSX" ]; then
926 elif [ "$os" = "OS2" ]; then
928 # OS2 uses strip via gcc, because it needs to be feed to emxbind
929 LDFLAGS="$LDFLAGS -s"
930 elif [ "$os" = "SUNOS" ]; then
931 # The GNU strip does know -s, the non-GNU doesn't
932 # So try to detect it (in a bit of an ugly way)
933 strip_arg="`$strip -s strip.test 2>/dev/null && echo \"-s\"`"
938 log 1 "checking stripping... $strip $strip_arg"
941 log 1 "checking stripping... skipped"
944 if [ "$with_distcc" = "0" ]; then
945 log 1 "checking distcc... no"
946 elif [ "$with_distcc" = "1" ]; then
949 log 1 "checking distcc... no (only used when forced)"
950 elif [ "$with_distcc" = "2" ]; then
953 distcc="$with_distcc"
955 if [ "$with_distcc" != "0" ]; then
956 res="`$distcc --version 2>/dev/null | head -n 1 | cut -b 1-6`"
957 if [ "$res" != "distcc" ]; then
959 log 1 "checking distcc... no"
960 if [ "$with_distcc" = "2" ]; then
961 log 1 "configure: error: no distcc detected, but was forced to be used"
964 if [ "$with_distcc" != "1" ]; then
965 log 1 "configure: error: '$with_distcc' doesn't seem a distcc to me"
970 log 1 "checking distcc... $distcc"
973 if [ "$with_ccache" = "0" ]; then
974 log 1 "checking ccache... no"
975 elif [ "$with_ccache" = "1" ]; then
978 log 1 "checking ccache... no (only used when forced)"
979 elif [ "$with_ccache" = "2" ]; then
982 ccache="$with_ccache"
984 if [ "$with_ccache" != "0" ]; then
985 res="`$ccache --version 2>/dev/null | head -n 1 | cut -b 1-6`"
986 if [ "$res" != "ccache" ]; then
988 log 1 "checking ccache... no"
989 if [ "$with_ccache" = "2" ]; then
990 log 1 "configure: error: no ccache detected, but was forced to be used"
993 if [ "$with_ccache" != "1" ]; then
994 log 1 "configure: error: '$with_ccache' doesn't seem a ccache to me"
999 log 1 "checking ccache... $ccache"
1005 if [ -z "$grfcodec" ] && [ -n "$nforenum" ]; then
1006 log 1 "checking nforenum/grfcodec... nforenum needs grfcodec enabled, disabling nforenum"
1010 if [ -z "$nforenum" ] && [ -n "$grfcodec" ]; then
1011 log 1 "checking nforenum/grfcodec... grfcodec needs nforenum enabled, disabling grfcodec"
1015 if [ "$os" = "DOS" ]; then
1019 if [ "$os" != "OSX" ] && [ "$with_application_bundle" != "0" ]; then
1020 if [ "$with_application_bundle" = "1" ]; then
1021 with_application_bundle="0"
1023 log 1 "checking OSX application bundle... not OSX, skipping"
1025 log 1 "configure: error: --with-application-bundle only works if OSX is the target"
1030 if [ "$os" = "OSX" ] && [ "$with_application_bundle" = "1" ]; then
1031 OSXAPP="OpenTTD.app"
1036 if [ "$os" = "OSX" ]; then
1037 # Test on ppc970 (G5) - we can optimize there
1039 if [ "$enable_osx_g5" != "0" ]; then
1040 log 1 "detecting ppc970 (G5)... yes (forced)"
1042 # First, are we a real OSX system, else we can't detect it
1043 native=`LC_ALL=C uname | tr '[A-Z]' '[a-z]' | grep darwin`
1044 # If $host doesn't match $build , we are cross-compiling
1045 if [ -n "$native" ] && [ "$build" = "$host" ]; then
1046 $cxx_build $SRC_DIR/os/macosx/G5_detector.cpp -o G5_detector
1049 if [ -n "$res" ]; then
1050 # This is G5, add flags for it
1053 log 1 "detecting ppc970 (G5)... yes"
1057 log 1 "detecting ppc970 (G5)... no"
1062 log 1 "detecting ppc970 (G5)... no (cross-compiling)"
1066 if [ "$enable_osx_g5" != "0" ]; then
1067 log 1 "configure: error: ppc970 (OSX G5) selected, but not compiling for OSX"
1068 log 1 "configure: error: either select OSX as OS, or deselect ppc970"
1074 if [ -d "$ROOT_DIR/.svn" ] && [ -n "`svn help 2>/dev/null`" ]; then
1075 log 1 "checking revision... svn detection"
1076 elif [ -d "$ROOT_DIR/../.svn" ] && [ -n "`svn help 2>/dev/null`" ] && [ -n "`LC_ALL=C svn info $ROOT_DIR/.. | grep '^URL:.*tags$'`" ]; then
1077 # subversion changed its behaviour; now not all folders have a .svn folder,
1078 # but only the root folder. Since making tags requires a (sparse) checkout
1079 # of the tags folder, the folder of the tag does not have a .svn folder
1080 # anymore and this fails to detect the subversion repository checkout.
1081 log 1 "checking revision... svn detection (tag)"
1082 elif [ -d "$ROOT_DIR/.git" ] && [ -n "`git help 2>/dev/null`" ]; then
1083 log 1 "checking revision... git detection"
1084 elif [ -d "$ROOT_DIR/.hg" ] && [ -n "`HGPLAIN= hg help 2>/dev/null`" ]; then
1085 log 1 "checking revision... hg detection"
1086 elif [ -f "$ROOT_DIR/.ottdrev" ]; then
1087 log 1 "checking revision... source tarball"
1089 log 1 "checking revision... no detection"
1090 log 1 "WARNING: there is no means to determine the version."
1091 log 1 "WARNING: please use a subversion, mercurial, or git checkout of OpenTTD."
1092 log 1 "WARNING: you can only join game servers that have been compiled without"
1093 log 1 "WARNING: version detection."
1094 log 1 "WARNING: there is a great chance you desync."
1095 log 1 "WARNING: USE WITH CAUTION!"
1100 if [ "$doc_dir" = "1" ]; then
1101 if [ "$os" = "UNIX" ] || [ "$os" = "FREEBSD" ] || [ "$os" = "DRAGONFLY" ] || [ "$os" = "OPENBSD" ] || [ "$os" = "NETBSD" ] || [ "$os" = "HPUX" ] || [ "$os" = "SUNOS" ]; then
1102 doc_dir="share/doc/openttd"
1104 doc_dir="$data_dir/docs"
1107 doc_dir="`echo $doc_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1110 if [ "$icon_theme_dir" = "1" ]; then
1111 if [ "$os" = "UNIX" ] || [ "$os" = "FREEBSD" ] || [ "$os" = "DRAGONFLY" ] || [ "$os" = "OPENBSD" ] || [ "$os" = "NETBSD" ] || [ "$os" = "HPUX" ] || [ "$os" = "SUNOS" ]; then
1112 icon_theme_dir="share/icons/hicolor"
1117 icon_theme_dir="`echo $icon_theme_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1120 if [ "$personal_dir" = "1" ]; then
1121 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ] || [ "$os" = "DOS" ] || [ "$os" = "HAIKU" ]; then
1122 personal_dir="OpenTTD"
1123 elif [ "$os" = "OSX" ]; then
1124 personal_dir="Documents/OpenTTD"
1126 personal_dir=".openttd"
1129 personal_dir="`echo $personal_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1132 if [ "$shared_dir" = "1" ]; then
1133 # we are using default values
1134 if [ "$os" = "OSX" ]; then
1135 shared_dir="/Library/Application\\\\ Support/OpenTTD"
1140 shared_dir="`echo $shared_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1143 if [ "$man_dir" = "1" ]; then
1144 # add manpage on UNIX systems
1145 if [ "$os" = "UNIX" ] || [ "$os" = "FREEBSD" ] || [ "$os" = "DRAGONFLY" ] || [ "$os" = "OPENBSD" ] || [ "$os" = "NETBSD" ] || [ "$os" = "HPUX" ] || [ "$os" = "SUNOS" ] || [ "$os" = "OSX" ]; then
1146 man_dir="share/man/man6"
1151 man_dir="`echo $man_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1154 if [ "$menu_dir" = "1" ]; then
1155 # add a freedesktop menu item only for some UNIX systems
1156 if [ "$os" = "UNIX" ] || [ "$os" = "FREEBSD" ] || [ "$os" = "DRAGONFLY" ] || [ "$os" = "OPENBSD" ] || [ "$os" = "NETBSD" ] || [ "$os" = "HPUX" ] || [ "$os" = "SUNOS" ]; then
1157 menu_dir="share/applications"
1162 menu_dir="`echo $menu_dir | sed 's@\([^\]\)\\\\ @\1\\\\\\\\ @g;s@\([^\]\) @\1\\\\\\\\ @g'`"
1167 if [ -n "$personal_dir" ]
1169 log 1 "personal home directory... $personal_dir"
1171 log 1 "personal home directory... none"
1174 if [ -n "$shared_dir" ]
1176 log 1 "shared data directory... $shared_dir"
1178 log 1 "shared data directory... none"
1181 if [ -n "$install_dir" ]
1183 log 1 "installation directory... $install_dir"
1185 log 1 "installation directory... none"
1188 if [ -n "$icon_theme_dir" ]
1190 log 1 "icon theme directory... $icon_theme_dir"
1192 log 1 "icon theme directory... none"
1195 if [ -n "$man_dir" ]
1197 log 1 "manual page directory... $man_dir"
1199 log 1 "manual page directory... none"
1202 if [ -n "$menu_dir" ]
1204 log 1 "menu item directory... $menu_dir"
1206 log 1 "menu item directory... none"
1210 make_compiler_cflags() {
1213 # $2 - name of the cflags variable
1214 # $3 - name of the cxxflags variable
1215 # $4 - name of the ldflags variable
1216 # $5 - name of the features variable
1218 eval eval "flags=\\\$$2"
1219 eval eval "cxxflags=\\\$$3"
1220 eval eval "ldflags=\\\$$4"
1221 eval eval "features=\\\$$5"
1223 if [ `basename $1 | cut -c 1-3` = "icc" ]; then
1224 # Enable some things only for certain ICC versions
1225 cc_version=`$1 -dumpversion | cut -c 1-4 | sed s@\\\.@@g`
1227 flags="$flags -rdynamic"
1228 ldflags="$ldflags -rdynamic"
1230 if [ -z "$first_time_icc_check" ]; then
1231 first_time_icc_check=no
1232 if [ $cc_version -lt 90 ]; then
1233 log 1 "WARNING: you seem to be using a very old version of ICC"
1234 log 1 "WARNING: OpenTTD hasn't been tested with this version"
1236 elif [ $cc_version -lt 120 ]; then
1237 log 1 "WARNING: you seem to be using an unsupported ICC version"
1238 log 1 "WARNING: ICC older than 12.0 is known to fail to compile OpenTTD"
1243 flags="$flags -Wall"
1244 # remark #111: statement is unreachable
1245 flags="$flags -wd111"
1246 # remark #181: argument is incompatible with corresponding format string conversion
1247 # ICC is very picky about signedness of operands, warnings provided by GCC are enough
1248 flags="$flags -wd181"
1249 # remark #271: trailing comma is nonstandard
1250 flags="$flags -wd271"
1251 # remark #280: selector expression is constant
1252 flags="$flags -wd280"
1253 # remark #304: access control not specified ("public" by default)
1254 flags="$flags -wd304"
1255 # remark #383: value copied to temporary, reference to temporary used
1256 flags="$flags -wd383"
1257 # remark #444: destructor for base class ... is not virtual
1258 flags="$flags -wd444"
1259 # remark #593: variable ... was set but never used
1260 flags="$flags -wd593"
1261 # warning #654: overloaded virtual function ... is only partially overridden in class ...
1262 flags="$flags -wd654"
1263 # remark #810: conversion from ... to ... may lose significant bits
1264 flags="$flags -wd810"
1265 # remark #869: parameter ... was never referenced
1266 flags="$flags -wd869"
1267 # warning #873: function ... ::operator new ... has no corresponding operator delete ...
1268 flags="$flags -wd873"
1269 # remark #981: operands are evaluated in unspecified order
1270 flags="$flags -wd981"
1271 # remark #1418: external function definition with no prior declaration
1272 flags="$flags -wd1418"
1273 # remark #1419: external declaration in primary source file
1274 flags="$flags -wd1419"
1275 # remark #1572: floating-point equality and inequality
1276 flags="$flags -wd1572"
1277 # remark #1599: declaration hides variable/parameter ...
1278 flags="$flags -wd1599"
1279 # remark #1720: function ... ::operator new ... has no corresponding member operator delete ...
1280 flags="$flags -wd1720"
1282 if [ $cc_version -lt 110 ]; then
1283 # warns about system headers with recent glibc:
1284 # warning #1292: attribute "__nonnull__" ignored
1285 flags="$flags -wd1292"
1288 if [ $cc_version -ge 100 ]; then
1289 # warning #1899: multicharacter character literal (potential portability problem)
1290 flags="$flags -wd1899"
1291 # vec report defaults to telling where it did loop vectorisation, which is not very important
1292 flags="$flags -vec-report=0 "
1295 if [ $cc_version -ge 110 ]; then
1296 # remark #2259: non-pointer conversion from ... to ... may lose significant bits
1297 flags="$flags -wd2259"
1298 # Use c++0x mode so static_assert() is available
1299 cxxflags="$cxxflags -std=c++0x"
1302 if [ "$enable_lto" != "0" ]; then
1303 has_ipo=`$1 -help ipo | grep '\-ipo'`
1304 if [ -n "$has_ipo" ]; then
1305 # Use IPO (only if we see IPO exists and is requested)
1307 features="$features lto"
1310 elif [ `basename $1 | grep 'clang'` ]; then
1311 # Enable some things only for certain clang versions
1312 cc_version="`$1 -v 2>&1 | head -n 1 | sed s@[^0-9]@@g | cut -c 1-2`"
1314 # aliasing rules are not held in openttd code
1315 flags="$flags -fno-strict-aliasing"
1317 # -W alone doesn't enable all warnings enabled by -Wall; on the other hand,
1318 # -Weverything enables too many useless warnings that can't be disabled (as of 3.0)
1319 flags="$flags -Wall -W -Wextra"
1321 # warning: unused parameter '...'
1322 flags="$flags -Wno-unused-parameter"
1324 # warning: expression result unused
1325 flags="$flags -Wno-unused-value"
1327 # warning: multi-character character constant
1328 flags="$flags -Wno-multichar"
1330 # warning: explicitly assigning a variable of type '...' to itself
1331 # it happens when using the FOR_ALL_WINDOWS_FROM_BACK_FROM macro
1332 flags="$flags -Wno-self-assign"
1334 if [ "$cc_version" -lt "30" ]; then
1335 # warning: equality comparison with extraneous parentheses
1336 flags="$flags -Wno-parentheses"
1337 # warning: operands of ? are integers of different signs: 'unsigned int' and 'int'
1338 flags="$flags -Wno-sign-compare"
1341 if [ "$cc_version" -ge "30" ]; then
1342 # warning: equality comparison with extraneous parentheses
1343 # this warning could be useful, but it warns about code in squirrel
1344 flags="$flags -Wno-parentheses-equality"
1347 if [ "$with_ccache" != "0" -o "$with_distcc" != "0" ]; then
1348 # ccache and distcc run separate preprocess and compile passes,
1349 # both are fed with the same CFLAGS. Unfortunately, clang
1350 # complains about -I when compiling preprocessed files:
1351 # "clang: warning: argument unused during compilation: '-I /usr/include'"
1352 flags="$flags -Qunused-arguments"
1355 if [ "$enable_assert" -eq "0" ]; then
1356 # do not warn about unused variables when building without asserts
1357 flags="$flags -Wno-unused-variable"
1360 if [ "$cc_version" -ge "33" ]; then
1361 # clang completed C++11 support in version 3.3
1362 flags="$flags -std=c++11"
1365 # rdynamic is used to get useful stack traces from crash reports.
1366 ldflags="$ldflags -rdynamic"
1368 # Enable some things only for certain GCC versions
1369 # cc_version = major_version * 100 + minor_version
1370 # For example: "3.3" -> 303, "4.9.2" -> 409, "6" -> 600, "23.5" -> 2305
1371 cc_version=`$1 -dumpversion | $awk -F . '{printf "%d%02d", $1, $2}'`
1373 if [ $cc_version -lt 303 ]; then
1374 log 1 "configure: error: gcc older than 3.3 can't compile OpenTTD because of its poor template support"
1378 flags="$flags -Wall -Wno-multichar -Wsign-compare -Wundef"
1379 flags="$flags -Wwrite-strings -Wpointer-arith"
1380 flags="$flags -W -Wno-unused-parameter -Wredundant-decls"
1381 flags="$flags -Wformat=2 -Wformat-security"
1383 if [ $enable_assert -eq 0 ]; then
1384 # Do not warn about unused variables when building without asserts
1385 flags="$flags -Wno-unused-variable"
1386 if [ $cc_version -ge 406 ]; then
1387 # GCC 4.6 gives more warnings, disable them too
1388 flags="$flags -Wno-unused-but-set-variable"
1389 flags="$flags -Wno-unused-but-set-parameter"
1393 if [ $cc_version -ge 304 ]; then
1394 # Warn when a variable is used to initialise itself:
1396 flags="$flags -Winit-self"
1399 if [ $cc_version -ge 400 ]; then
1400 # GCC 4.0+ complains about that we break strict-aliasing.
1401 # On most places we don't see how to fix it, and it doesn't
1402 # break anything. So disable strict-aliasing to make the
1403 # compiler all happy.
1404 flags="$flags -fno-strict-aliasing"
1405 # Warn about casting-out 'const' with regular C-style cast.
1406 # The preferred way is const_cast<>() which doesn't warn.
1407 flags="$flags -Wcast-qual"
1410 if [ $cc_version -ge 402 ]; then
1411 # GCC 4.2+ automatically assumes that signed overflows do
1412 # not occur in signed arithmetics, whereas we are not
1413 # sure that they will not happen. It furthermore complains
1414 # about its own optimized code in some places.
1415 flags="$flags -fno-strict-overflow"
1416 # GCC 4.2 no longer includes -Wnon-virtual-dtor in -Wall.
1417 # Enable it in order to be consistent with older GCC versions.
1418 flags="$flags -Wnon-virtual-dtor"
1421 if [ $cc_version -ge 403 ] && [ $cc_version -lt 600 ]; then
1422 # Use gnu++0x mode so static_assert() is available.
1423 # Don't use c++0x, it breaks mingw (with gcc 4.4.0).
1424 cxxflags="$cxxflags -std=gnu++0x"
1427 if [ $cc_version -eq 405 ]; then
1428 # Prevent optimisation supposing enums are in a range specified by the standard
1429 # For details, see http://gcc.gnu.org/PR43680
1430 flags="$flags -fno-tree-vrp"
1433 if [ $cc_version -eq 407 ]; then
1434 # Disable -Wnarrowing which gives many warnings, such as:
1435 # warning: narrowing conversion of '...' from 'unsigned int' to 'int' inside { } [-Wnarrowing]
1436 # They are valid according to the C++ standard, but useless.
1437 cxxflags="$cxxflags -Wno-narrowing"
1440 if [ $cc_version -ge 407 ]; then
1441 # Disable bogus 'attempt to free a non-heap object' warning
1442 flags="$flags -Wno-free-nonheap-object"
1445 if [ $cc_version -ge 600 ]; then
1446 # -flifetime-dse=2 (default since GCC 6) doesn't play
1447 # well with our custom pool item allocator
1448 cxxflags="$cxxflags -flifetime-dse=1 -std=gnu++14"
1451 if [ "$enable_lto" != "0" ]; then
1452 # GCC 4.5 outputs '%{flto}', GCC 4.6 outputs '%{flto*}'
1453 has_lto=`$1 -dumpspecs | grep '\%{flto'`
1454 if [ -n "$has_lto" ]; then
1455 # Use LTO only if we see LTO exists and is requested
1456 if [ $cc_version -lt 406 ]; then
1457 flags="$flags -flto"
1459 flags="$flags -flto=jobserver"
1461 ldflags="$ldflags -fwhole-program"
1462 features="$features lto"
1466 has_rdynamic=`$1 -dumpspecs | grep rdynamic`
1467 if [ -n "$has_rdynamic" ]; then
1468 # rdynamic is used to get useful stack traces from crash reports.
1469 flags="$flags -rdynamic"
1470 ldflags="$ldflags -rdynamic"
1474 eval "$2=\"$flags\""
1475 eval "$3=\"$cxxflags\""
1476 eval "$4=\"$ldflags\""
1477 eval "$5=\"$features\""
1480 make_cflags_and_ldflags() {
1481 # General CFlags for BUILD
1482 CFLAGS_BUILD="$CFLAGS_BUILD"
1483 # Special CXXFlags for BUILD
1484 CXXFLAGS_BUILD="$CXXFLAGS_BUILD"
1486 LDFLAGS_BUILD="$LDFLAGS_BUILD"
1487 # FEATURES for BUILD (lto)
1489 # General CFlags for HOST
1491 # Special CXXFlags for HOST
1492 CXXFLAGS="$CXXFLAGS"
1493 # Libs to compile. In fact this is just LDFLAGS
1495 # LDFLAGS used for HOST
1497 # FEATURES for HOST (lto)
1500 make_compiler_cflags "$cc_build" "CFLAGS_BUILD" "CXXFLAGS_BUILD" "LDFLAGS_BUILD" "FEATURES_BUILD"
1501 make_compiler_cflags "$cc_host" "CFLAGS" "CXXFLAGS" "LDFLAGS" "FEATURES"
1503 CFLAGS="$CFLAGS -D$os"
1504 CFLAGS_BUILD="$CFLAGS_BUILD -D$os"
1506 if [ "$enable_debug" = "0" ]; then
1507 # No debug, add default stuff
1508 OBJS_SUBDIR="release"
1509 if [ "$os" = "MORPHOS" ]; then
1510 CFLAGS="-I/gg/os-include -noixemul -fstrict-aliasing -fexpensive-optimizations -mcpu=604 -fno-inline -mstring -mmultiple $CFLAGS"
1511 LDFLAGS="$LDFLAGS -noixemul"
1514 if [ "$enable_profiling" = "0" ]; then
1515 # -fomit-frame-pointer and -pg do not go well together (gcc errors they are incompatible)
1516 CFLAGS="-fomit-frame-pointer $CFLAGS"
1518 CFLAGS="-O2 $CFLAGS"
1522 # Each debug level reduces the optimization by a bit
1523 if [ $enable_debug -ge 1 ]; then
1524 CFLAGS="$CFLAGS -g -D_DEBUG"
1525 if [ "$os" = "PSP" ]; then
1526 CFLAGS="$CFLAGS -G0"
1529 if [ $enable_debug -ge 2 ]; then
1530 CFLAGS="$CFLAGS -fno-inline"
1532 if [ $enable_debug -ge 3 ]; then
1533 CFLAGS="$CFLAGS -O0"
1535 CFLAGS="$CFLAGS -O2"
1539 if [ $enable_debug -le 2 ]; then
1540 cc_host_is_gcc=`basename "$cc_host" | grep "gcc" 2>/dev/null`
1541 if [ -n "$cc_host_is_gcc" ]; then
1542 # Define only when compiling with GCC. Some GLIBC versions use GNU
1543 # extensions in a way that breaks build with at least ICC.
1544 # This requires -O1 or more, so debug level 3 (-O0) is excluded.
1545 CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
1548 cc_build_is_gcc=`basename "$cc_build" | grep "gcc" 2>/dev/null`
1549 if [ -n "$cc_build_is_gcc" ]; then
1550 # Just add -O1 to the tools needed for building.
1551 CFLAGS_BUILD="$CFLAGS_BUILD -D_FORTIFY_SOURCE=2 -O1"
1555 if [ "$os" = "OSX" ] && [ $cc_version -eq 400 ]; then
1556 # Apple's GCC 4.0 has a compiler bug for x86_64 with (higher) optimization,
1557 # wrongly optimizing ^= in loops. This disables the failing optimisation.
1558 CFLAGS="$CFLAGS -fno-expensive-optimizations"
1561 if [ "$enable_profiling" != "0" ]; then
1562 CFLAGS="$CFLAGS -pg"
1563 LDFLAGS="$LDFLAGS -pg"
1566 if [ "$with_threads" = "0" ]; then
1567 CFLAGS="$CFLAGS -DNO_THREADS"
1569 if [ "$with_sse" = "1" ]; then
1570 CFLAGS="$CFLAGS -DWITH_SSE"
1573 if [ "`echo $1 | cut -c 1-3`" != "icc" ]; then
1574 if [ "$os" = "CYGWIN" ]; then
1575 flags="$flags -mwin32"
1576 LDFLAGS="$LDFLAGS -mwin32"
1578 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ]; then
1579 if [ $cc_version -lt 406 ]; then
1580 flags="$flags -mno-cygwin"
1581 LDFLAGS="$LDFLAGS -mno-cygwin"
1584 if [ "$enable_console" != "0" ]; then
1585 LDFLAGS="$LDFLAGS -Wl,--subsystem,console"
1587 LDFLAGS="$LDFLAGS -Wl,--subsystem,windows"
1590 LIBS="$LIBS -lws2_32 -lwinmm -lgdi32 -ldxguid -lole32 -limm32"
1592 if [ $cc_version -ge 404 ]; then
1593 LDFLAGS_BUILD="$LDFLAGS_BUILD -static-libgcc -static-libstdc++"
1595 if [ $cc_version -ge 407 ]; then
1596 CFLAGS="$CFLAGS -mno-ms-bitfields"
1601 if [ "$os" != "CYGWIN" ] && [ "$os" != "HAIKU" ] && [ "$os" != "OPENBSD" ] && [ "$os" != "MINGW" ] && [ "$os" != "MORPHOS" ] && [ "$os" != "OSX" ] && [ "$os" != "DOS" ] && [ "$os" != "WINCE" ] && [ "$os" != "PSP" ] && [ "$os" != "OS2" ]; then
1602 LIBS="$LIBS -lpthread"
1605 if [ "$os" != "CYGWIN" ] && [ "$os" != "HAIKU" ] && [ "$os" != "MINGW" ] && [ "$os" != "DOS" ] && [ "$os" != "WINCE" ]; then
1608 if [ "$os" = "WINCE" ]; then
1609 LIBS="$LIBS -lcoredll -lcorelibc -laygshell -lws2 -e WinMainCRTStartup"
1611 if [ "$os" = "PSP" ]; then
1612 CFLAGS="$CFLAGS -I`$psp_config -p`/include"
1613 LDFLAGS="$LDFLAGS -L`$psp_config -p`/lib"
1615 CFLAGS="$CFLAGS -fno-exceptions -fno-rtti -D_PSP_FW_VERSION=150"
1616 LIBS="$LIBS -D_PSP_FW_VERSION=150 -lpspdebug -lpspdisplay -lpspge -lpspctrl -lpspsdk -lpspnet -lpspnet_inet -lpspnet_apctl -lpspnet_resolver -lpsputility -lpspuser -lpspkernel -lm"
1619 if [ "$os" = "MORPHOS" ]; then
1620 # -Wstrict-prototypes generates much noise because of system headers
1621 CFLAGS="$CFLAGS -Wno-strict-prototypes"
1624 if [ "$os" = "OPENBSD" ]; then
1625 LIBS="$LIBS -pthread"
1628 if [ "$os" = "OSX" ]; then
1629 LDFLAGS="$LDFLAGS -framework Cocoa"
1631 # Add macports include dir which is not always set a default system dir. This avoids zillions of bogus warnings.
1632 CFLAGS="$CFLAGS -isystem/opt/local/include"
1634 if [ "$enable_dedicated" = "0" ] && ([ "$cpu_type" = "32" ] || [ "$enable_universal" != "0" ]); then
1635 LIBS="$LIBS -framework QuickTime"
1637 CFLAGS="$CFLAGS -DNO_QUICKTIME"
1640 if [ "$enable_universal" = "0" ]; then
1641 # Universal builds set this elsewhere
1642 CFLAGS="$OSX_SYSROOT $CFLAGS"
1643 LDFLAGS="$OSX_LD_SYSROOT $LDFLAGS"
1647 if [ "$os" = "BEOS" ] || [ "$os" = "HAIKU" ]; then
1648 LIBS="$LIBS -lmidi -lbe"
1651 # Most targets act like UNIX, just with some additions
1652 if [ "$os" = "BEOS" ] || [ "$os" = "HAIKU" ] || [ "$os" = "OSX" ] || [ "$os" = "MORPHOS" ] || [ "$os" = "FREEBSD" ] || [ "$os" = "DRAGONFLY" ] || [ "$os" = "OPENBSD" ] || [ "$os" = "NETBSD" ] || [ "$os" = "HPUX" ] || [ "$os" = "SUNOS" ] || [ "$os" = "OS2" ]; then
1653 CFLAGS="$CFLAGS -DUNIX"
1655 # And others like Windows
1656 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ]; then
1657 CFLAGS="$CFLAGS -DWIN"
1660 if [ -n "$allegro_config" ]; then
1661 CFLAGS="$CFLAGS -DWITH_ALLEGRO"
1662 CFLAGS="$CFLAGS `$allegro_config --cflags`"
1663 if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ] && [ "$os" != "WINCE" ]; then
1664 if [ "$enable_static" != "0" ]; then
1665 LIBS="$LIBS `$allegro_config --static --libs`"
1667 LIBS="$LIBS `$allegro_config --libs`"
1672 if [ -n "$sdl_config" ]; then
1673 CFLAGS="$CFLAGS -DWITH_SDL"
1674 # SDL must not add _GNU_SOURCE as it breaks many platforms
1675 CFLAGS="$CFLAGS `$sdl_config --cflags | sed 's@-D_GNU_SOURCE[^ ]*@@'`"
1676 if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ] && [ "$os" != "WINCE" ]; then
1677 if [ "$enable_static" != "0" ]; then
1678 LIBS="$LIBS `$sdl_config --static-libs`"
1680 LIBS="$LIBS `$sdl_config --libs`"
1685 if [ "$with_cocoa" != "0" ]; then
1686 CFLAGS="$CFLAGS -DWITH_COCOA"
1687 LIBS="$LIBS -F/System/Library/Frameworks -framework Cocoa -framework Carbon -framework AudioUnit -framework AudioToolbox"
1689 if [ "$enable_cocoa_quartz" != "0" ]; then
1690 CFLAGS="$CFLAGS -DENABLE_COCOA_QUARTZ"
1693 if [ "$enable_cocoa_quickdraw" != "0" ]; then
1694 CFLAGS="$CFLAGS -DENABLE_COCOA_QUICKDRAW"
1698 if [ "$with_zlib" != "0" ]; then
1699 CFLAGS="$CFLAGS -DWITH_ZLIB"
1700 CFLAGS="$CFLAGS `$zlib_config --cflags | tr '\n\r' ' '`"
1701 if [ "$enable_static" != "0" ]; then
1702 LIBS="$LIBS `$zlib_config --libs --static | tr '\n\r' ' '`"
1704 LIBS="$LIBS `$zlib_config --libs | tr '\n\r' ' '`"
1708 if [ -n "$lzma_config" ]; then
1709 CFLAGS="$CFLAGS -DWITH_LZMA"
1710 CFLAGS="$CFLAGS `$lzma_config --cflags | tr '\n\r' ' '`"
1712 if [ "$enable_static" != "0" ]; then
1713 CFLAGS="$CFLAGS -DLZMA_API_STATIC"
1714 LIBS="$LIBS `$lzma_config --libs --static | tr '\n\r' ' '`"
1716 LIBS="$LIBS `$lzma_config --libs | tr '\n\r' ' '`"
1720 if [ "$with_lzo2" != "0" ]; then
1721 if [ "$enable_static" != "0" ] && [ "$os" != "OSX" ]; then
1726 CFLAGS="$CFLAGS -DWITH_LZO"
1729 if [ -n "$xdg_basedir_config" ]; then
1730 CFLAGS="$CFLAGS -DWITH_XDG_BASEDIR"
1731 CFLAGS="$CFLAGS `$xdg_basedir_config --cflags | tr '\n\r' ' '`"
1733 if [ "$enable_static" != "0" ]; then
1734 LIBS="$LIBS `$xdg_basedir_config --libs --static | tr '\n\r' ' '`"
1736 LIBS="$LIBS `$xdg_basedir_config --libs | tr '\n\r' ' '`"
1740 # 64bit machines need -D_SQ64
1741 if [ "$cpu_type" = "64" ] && [ "$enable_universal" = "0" ]; then
1742 CFLAGS="$CFLAGS -D_SQ64"
1744 CFLAGS="$CFLAGS -I$SCRIPT_SRC_DIR"
1746 if [ -n "$png_config" ]; then
1747 CFLAGS="$CFLAGS -DWITH_PNG"
1748 CFLAGS="$CFLAGS `$png_config --cflags | tr '\n\r' ' '`"
1750 if [ "$enable_static" != "0" ]; then
1751 LIBS="$LIBS `$png_config --libs --static | tr '\n\r' ' '`"
1753 LIBS="$LIBS `$png_config --libs | tr '\n\r' ' '`"
1757 if [ -n "$fontconfig_config" ]; then
1758 CFLAGS="$CFLAGS -DWITH_FONTCONFIG"
1759 CFLAGS="$CFLAGS `$fontconfig_config --cflags | tr '\n\r' ' '`"
1761 if [ "$enable_static" != "0" ]; then
1762 LIBS="$LIBS `$fontconfig_config --libs --static | tr '\n\r' ' '`"
1764 LIBS="$LIBS `$fontconfig_config --libs | tr '\n\r' ' '`"
1768 if [ -n "$freetype_config" ]; then
1769 CFLAGS="$CFLAGS -DWITH_FREETYPE"
1770 CFLAGS="$CFLAGS `$freetype_config --cflags | tr '\n\r' ' '`"
1772 if [ "$enable_static" != "0" ]; then
1773 LIBS="$LIBS `$freetype_config --libs --static | tr '\n\r' ' '`"
1775 LIBS="$LIBS `$freetype_config --libs | tr '\n\r' ' '`"
1779 if [ -n "$icu_layout_config" ]; then
1780 CFLAGS="$CFLAGS -DWITH_ICU_LAYOUT"
1781 CFLAGS="$CFLAGS `$icu_layout_config --cflags | tr '\n\r' ' '`"
1783 if [ "$static_icu" != "0" ]; then
1784 LIBS="$LIBS `$icu_layout_config --libs --static | tr '\n\r' ' ' | sed s/-licu/-lsicu/g`"
1786 LIBS="$LIBS `$icu_layout_config --libs | tr '\n\r' ' '`"
1790 if [ -n "$icu_sort_config" ]; then
1791 CFLAGS="$CFLAGS -DWITH_ICU_SORT"
1792 CFLAGS="$CFLAGS `$icu_sort_config --cflags | tr '\n\r' ' '`"
1794 if [ "$static_icu" != "0" ]; then
1795 LIBS="$LIBS `$icu_sort_config --libs --static | tr '\n\r' ' ' | sed s/-licu/-lsicu/g`"
1797 LIBS="$LIBS `$icu_sort_config --libs | tr '\n\r' ' '`"
1802 if [ "$with_direct_music" != "0" ]; then
1803 CFLAGS="$CFLAGS -DWIN32_ENABLE_DIRECTMUSIC_SUPPORT"
1804 # GCC 4.0+ doesn't like the DirectX includes (gives tons of
1805 # warnings on it we won't be able to fix). For now just
1806 # suppress those warnings.
1807 if [ $cc_version -ge 400 ]; then
1808 CFLAGS="$CFLAGS -Wno-non-virtual-dtor"
1812 if [ -n "$libtimidity_config" ]; then
1813 CFLAGS="$CFLAGS -DLIBTIMIDITY"
1814 CFLAGS="$CFLAGS `$libtimidity_config --cflags | tr '\n\r' ' '`"
1816 if [ "$enable_static" != "0" ]; then
1817 LIBS="$LIBS `$libtimidity_config --libs --static | tr '\n\r' ' '`"
1819 LIBS="$LIBS `$libtimidity_config --libs | tr '\n\r' ' '`"
1823 if [ "$with_iconv" != "0" ]; then
1824 CFLAGS="$CFLAGS -DWITH_ICONV"
1825 if [ "$link_to_iconv" = "yes" ]; then
1826 LIBS="$LIBS -liconv"
1827 if [ "$with_iconv" != "2" ]; then
1828 CFLAGS="$CFLAGS -I$with_iconv/include"
1829 LIBS="$LIBS -L$with_iconv/lib"
1833 if [ "$os" != "OSX" ] && [ "$have_non_const_iconv" != "no" ]; then
1834 CFLAGS="$CFLAGS -DHAVE_NON_CONST_ICONV"
1838 if [ -n "$with_midi" ]; then
1839 CFLAGS="$CFLAGS -DEXTERNAL_PLAYER=\\\\\"$with_midi\\\\\""
1841 if [ -n "$with_midi_arg" ]; then
1842 CFLAGS="$CFLAGS -DMIDI_ARG=\\\\\"$with_midi_arg\\\\\""
1845 if [ "$enable_dedicated" != "0" ]; then
1846 CFLAGS="$CFLAGS -DDEDICATED"
1849 if [ "$enable_unicode" != "0" ]; then
1850 CFLAGS="$CFLAGS -DUNICODE -D_UNICODE"
1853 if [ "$enable_network" != "0" ]; then
1854 CFLAGS="$CFLAGS -DENABLE_NETWORK"
1856 if [ "$os" = "BEOS" ]; then
1857 LDFLAGS="$LDFLAGS -lbind -lsocket"
1860 if [ "$os" = "HAIKU" ]; then
1861 LDFLAGS="$LDFLAGS -lnetwork"
1864 if [ "$os" = "SUNOS" ]; then
1865 LDFLAGS="$LDFLAGS -lnsl -lsocket"
1869 if [ "$enable_static" != "0" ]; then
1870 # OSX can't handle -static in LDFLAGS
1871 if [ "$os" != "OSX" ]; then
1872 LDFLAGS="$LDFLAGS -static"
1876 if [ "$enable_assert" = "0" ]; then
1877 CFLAGS="$CFLAGS -DNDEBUG"
1878 CFLAGS_BUILD="$CFLAGS_BUILD -DNDEBUG"
1881 if [ "$enable_desync_debug" != "0" ]; then
1882 CFLAGS="$CFLAGS -DRANDOM_DEBUG"
1885 if [ "$enable_osx_g5" != "0" ]; then
1886 CFLAGS="$CFLAGS -mcpu=G5 -mpowerpc64 -mtune=970 -mcpu=970 -mpowerpc-gpopt"
1889 if [ -n "$personal_dir" ]; then
1890 CFLAGS="$CFLAGS -DWITH_PERSONAL_DIR -DPERSONAL_DIR=\\\\\"$personal_dir\\\\\""
1893 if [ -n "$shared_dir" ]; then
1894 CFLAGS="$CFLAGS -DWITH_SHARED_DIR -DSHARED_DIR=\\\\\"$shared_dir\\\\\""
1897 CFLAGS="$CFLAGS -DGLOBAL_DATA_DIR=\\\\\"$prefix_dir/$data_dir\\\\\""
1899 if [ "$enable_lto" != "0" ]; then
1900 lto_build=`echo "$FEATURES_BUILD" | grep "lto"`
1901 lto_host=`echo "$FEATURES" | grep "lto"`
1902 if [ -z "$lto_build$lto_host" ]; then
1903 log 1 "WARNING: you enabled LTO/IPO, but neither build nor host compiler supports it"
1904 log 1 "WARNING: LTO/IPO has been disabled"
1906 if [ -n "$lto_build" ]; then
1907 LDFLAGS_BUILD="$LDFLAGS_BUILD $CFLAGS_BUILD $CXXFLAGS_BUILD"
1909 if [ -n "$lto_host" ]; then
1910 LDFLAGS="$LDFLAGS $CFLAGS $CXXFLAGS"
1914 log 1 "using CFLAGS_BUILD... $CFLAGS_BUILD"
1915 log 1 "using CXXFLAGS_BUILD... $CXXFLAGS_BUILD"
1916 log 1 "using LDFLAGS_BUILD... $LDFLAGS_BUILD"
1917 log 1 "using CFLAGS... $CFLAGS"
1918 log 1 "using CXXFLAGS... $CXXFLAGS"
1919 log 1 "using LDFLAGS... $LIBS $LDFLAGS"
1921 # Makedepend doesn't like something like: -isysroot /OSX/blabla
1922 # so convert it to: -isysroot -OSX/blabla. makedepend just ignores
1923 # any - command it doesn't know, so we are pretty save.
1924 # Lovely hackish, not?
1925 # Btw, this almost always comes from outside the configure, so it is
1926 # not something we can control.
1927 # Also make makedepend aware of compiler's built-in defines.
1928 if [ "$with_makedepend" != "0" ] || [ "$enable_builtin_depend" != "0" ]; then
1929 # Append CXXFLAGS possibly containing -std=c++0x
1930 cflags_makedep="`echo | $cxx_host $CXXFLAGS -E -x c++ -dM - | sed 's@.define @-D@g;s@ .*@ @g;s@(.*)@@g' | tr -d '\r\n'`"
1932 # Please escape ALL " within ` because e.g. "" terminates the string in some sh implementations
1933 cflags_makedep="$cflags_makedep `echo \"$CFLAGS\" \"$CXXFLAGS\" | sed 's@ /@ -@g;s@-I[ ]*[^ ]*@@g'`"
1938 if [ "$with_distcc" != "0" ]; then
1939 cc_host="$distcc $cc_host"
1940 cxx_host="$distcc $cxx_host"
1942 log 1 " NOTICE: remind yourself to use 'make -jN' to make use of distcc"
1946 if [ "$with_ccache" != "0" ]; then
1947 cc_host="$ccache $cc_host"
1948 cxx_host="$ccache $cxx_host"
1954 # $1 - Type for message (build / host)
1955 # $2 - What to fill with the found compiler
1956 # $3 - System to try
1957 # $4 - Compiler to try
1958 # $5 - Env-setting to try
1959 # $6 - GCC alike to try
1960 # $7 - CC alike to try
1961 # $8 - "0" gcc, "1" g++, "2" windres, "3" strip, "4" lipo
1962 # $9 - What the command is to check for
1964 if [ -n "$3" ]; then
1966 if [ -z "$6" ]; then
1971 machine=`eval $compiler $9 2>/dev/null`
1973 eval "$2=\"$compiler\""
1975 log 2 "executing $compiler $9"
1976 log 2 " returned $machine"
1977 log 2 " exit code $ret"
1979 if ( [ -z "$machine" ] && [ "$8" != "3" ] ) || [ "$ret" != "0" ]; then
1980 if [ -z "$5" ]; then
1981 log 1 "checking $1... $compiler not found"
1982 log 1 "I couldn't detect any $6 binary for $3"
1987 machine=`eval $compiler $9 2>/dev/null`
1989 eval "$2=\"$compiler\""
1991 log 2 "executing $compiler $9"
1992 log 2 " returned $machine"
1993 log 2 " exit code $ret"
1995 if ( [ -z "$machine" ] && [ "$8" != "3" ] ) || [ "$ret" != "0" ]; then
1996 log 1 "checking $1... $compiler not found"
1997 log 1 "I couldn't detect any $5 binary for $3"
2002 if [ "$machine" != "$3" ] && ( [ "$8" = "0" ] || [ "$8" = "1" ] ); then
2003 log 1 "checking $1... expected $3, found $machine"
2004 log 1 "the compiler suggests it doesn't build code for the machine you specified"
2007 elif [ -n "$4" ]; then
2008 # Check for manual compiler
2009 machine=`$4 $9 2>/dev/null`
2013 log 2 "executing $4 $9"
2014 log 2 " returned $machine"
2015 log 2 " exit code $ret"
2017 if ( [ -z "$machine" ] && [ "$8" != "3" ] ) || [ "$ret" != "0" ]; then
2018 log 1 "checking $1... $4 not found"
2019 log 1 "the selected binary doesn't seem to be a $6 binary"
2023 # Nothing given, autodetect
2025 if [ -n "$5" ]; then
2026 machine=`$5 $9 2>/dev/null`
2030 log 2 "executing $5 $9"
2031 log 2 " returned $machine"
2032 log 2 " exit code $ret"
2034 # The user defined a GCC that doesn't reply to $9.. abort
2035 if ( [ -z "$machine" ] && [ "$8" != "3" ] ) || [ "$ret" != "0" ]; then
2036 log 1 "checking $1... $5 unusable"
2037 log 1 "the CC environment variable is set, but it doesn't seem to be a $6 binary"
2038 log 1 "please redefine the CC/CXX environment to a $6 binary"
2042 log 2 "checking $1... CC/CXX not set (skipping)"
2044 # No $5, so try '$6'
2045 machine=`$6 $9 2>/dev/null`
2049 log 2 "executing $6 $9"
2050 log 2 " returned $machine"
2051 log 2 " exit code $ret"
2053 if ( [ -z "$machine" ] && [ "$8" != "3" ] ) || [ "$ret" != "0" ]; then
2055 machine=`$7 $9 2>/dev/null`
2059 log 2 "executing $7 $9"
2060 log 2 " returned $machine"
2061 log 2 " exit code $ret"
2064 if [ -z "$machine" ]; then
2065 log 1 "checking $1... $6 not found"
2066 log 1 "I couldn't detect any $6 binary on your system"
2067 log 1 "please define the CC/CXX environment to where it is located"
2075 if [ "$8" != "0" ]; then
2077 log 1 "checking $1... $res"
2079 log 1 "checking $1... $machine"
2084 if [ "$os" = "FREEBSD" ]; then
2085 # FreeBSD's C compiler does not support dump machine.
2086 # However, removing C support is not possible because PSP must be linked with the C compiler.
2087 check_compiler "build system type" "cc_build" "$build" "$cc_build" "$CXX" "g++" "c++" "0" "-dumpmachine"
2089 check_compiler "build system type" "cc_build" "$build" "$cc_build" "$CC" "gcc" "cc" "0" "-dumpmachine"
2094 # By default the host is the build
2095 if [ -z "$host" ]; then host="$build"; fi
2097 if [ "$os" = "FREEBSD" ]; then
2098 # FreeBSD's C compiler does not support dump machine.
2099 # However, removing C support is not possible because PSP must be linked with the C compiler.
2100 check_compiler "host system type" "cc_host" "$host" "$cc_host" "$CXX" "g++" "c++" "0" "-dumpmachine"
2102 check_compiler "host system type" "cc_host" "$host" "$cc_host" "$CC" "gcc" "cc" "0" "-dumpmachine"
2107 check_compiler "build c++" "cxx_build" "$build" "$cxx_build" "$CXX" "g++" "c++" 1 "-dumpmachine"
2111 # By default the host is the build
2112 if [ -z "$host" ]; then host="$build"; fi
2113 check_compiler "host c++" "cxx_host" "$host" "$cxx_host" "$CXX" "g++" "c++" 1 "-dumpmachine"
2117 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ]; then
2118 check_compiler "host windres" "windres" "$host" "$windres" "$WINDRES" "windres" "windres" "2" "-V"
2123 if [ "$os" = "OS2" ]; then
2124 # OS2 via gcc is a bit weird.. stripping HAS to be done via emxbind, which is via gcc directly
2125 log 1 "checking host strip... using gcc -s option"
2126 elif [ "$os" = "OSX" ]; then
2127 # Most targets have -V in strip, to see if they exists... OSX doesn't.. so execute something
2128 echo "int main(int argc, char *argv[]) { }" > strip.test.c
2129 $cxx_host strip.test.c -o strip.test
2130 check_compiler "host strip" "strip" "$host" "$strip" "$STRIP" "strip" "strip" "3" "strip.test"
2131 rm -f strip.test.c strip.test
2133 check_compiler "host strip" "strip" "$host" "$strip" "$STRIP" "strip" "strip" "3" "-V"
2138 if [ "$os" = "OSX" ] && [ "$enable_universal" != "0" ]; then
2139 echo "int main(int argc, char *argv[]) { }" > lipo.test.c
2140 $cxx_host lipo.test.c -o lipo.test
2141 check_compiler "host lipo" "lipo" "$host" "$lipo" "$LIPO" "lipo" "lipo" "4" "-info lipo.test"
2142 rm -f lipo.test.c lipo.test
2148 if [ -n "$1" ]; then
2149 if echo "$1" | grep -q / ; then
2150 # Seems to be a file system path
2153 osx_sdk_path="/Developer/SDKs/MacOSX$1.sdk"
2155 if [ ! -d "$osx_sdk_path" ]; then
2156 # No directory, not present or garbage
2160 # Set minimum version to 10.4 as that's when kCGBitmapByteOrder32Host was introduced
2161 sysroot="-isysroot $osx_sdk_path -Wl,-syslibroot,$osx_sdk_path -mmacosx-version-min=10.4"
2164 cat > tmp.osx.mm << EOF
2165 #include <Cocoa/Cocoa.h>
2167 kCGBitmapByteOrder32Host;
2171 execute="$cxx_host $sysroot $CFLAGS tmp.osx.mm -framework Cocoa -o tmp.osx 2>&1"
2172 eval $execute > /dev/null
2174 log 2 "executing $execute"
2175 log 2 " exit code $ret"
2176 rm -f tmp.osx.mm tmp.osx
2180 check_direct_music() {
2182 #include <windows.h>
2183 #include <dmksctrl.h>
2184 #include <dmusici.h>
2185 #include <dmusicc.h>
2186 #include <dmusicf.h>
2187 int main(int argc, char *argv[]) { }" > direct_music.test.c
2188 $cxx_host $CFLAGS direct_music.test.c -o direct_music.test 2> /dev/null
2190 rm -f direct_music.test.c direct_music.test
2192 if [ "$res" != "0" ]; then
2193 if [ "$with_direct_music" != "1" ]; then
2194 log 1 "configure: error: direct-music is not available on this system"
2197 with_direct_music="0"
2199 log 1 "checking direct-music... not found"
2201 log 1 "checking direct-music... found"
2205 check_makedepend() {
2206 if [ "$enable_builtin_depend" != "0" ]; then
2210 if [ "$with_makedepend" = "0" ]; then
2211 log 1 "checking makedepend... disabled"
2215 if [ "$with_makedepend" = "1" ] || [ "$with_makedepend" = "2" ]; then
2216 makedepend="makedepend"
2218 makedepend="$with_makedepend"
2221 rm -f makedepend.tmp
2222 touch makedepend.tmp
2223 res=`$makedepend -fmakedepend.tmp 2>/dev/null`
2225 log 2 "executing $makedepend -f makedepend.tmp"
2226 log 2 " returned `cat makedepend.tmp`"
2227 log 2 " exit code $ret"
2229 if [ ! -s makedepend.tmp ]; then
2230 rm -f makedepend.tmp makedepend.tmp.bak
2232 if [ "$with_makedepend" = "2" ]; then
2233 log 1 "checking makedepend... not found"
2235 log 1 "I couldn't detect any makedepend on your system"
2236 log 1 "please locate it via --makedepend=[binary]"
2239 elif [ "$with_makedepend" != "1" ]; then
2240 log 1 "checking makedepend... $makedepend not found"
2242 log 1 "the selected file doesn't seem to be a valid makedepend binary"
2246 log 1 "checking makedepend... not found"
2253 rm -f makedepend.tmp makedepend.tmp.bak
2255 log 1 "checking makedepend... $makedepend"
2259 # $1 - requested version (major.minor)
2260 # $2 - version we got (major.minor)
2262 if [ -z "$2" ]; then
2266 req_major=`echo $1 | cut -d. -f1`
2267 got_major=`echo $2 | cut -d. -f1`
2268 if [ $got_major -lt $req_major ]; then
2270 elif [ $got_major -gt $req_major ]; then
2274 req_minor=`echo $1 | cut -d. -f2`
2275 got_minor=`echo $2 | cut -d. -f2`
2276 if [ $got_minor -lt $req_minor ]; then
2283 # Not all awks allow gsub(), so we test for that here! It is in fact all we need...
2285 # These awks are known to work. Test for them explicit
2286 awks="gawk mawk nawk"
2288 awk_prefix="echo \"a.c b.c c.c\" | tr ' ' \\\\n | "
2289 awk_param="' { ORS = \" \" } /\.c$/ { gsub(\".c$\", \".o\", \$0); print \$0; }' 2>/dev/null"
2290 awk_result="a.o b.o c.o "
2291 log 2 "Detecing awk..."
2293 log 2 "Trying: $awk_prefix $awk $awk_param"
2294 res=`eval $awk_prefix $awk $awk_param`
2295 log 2 "Result: '$res'"
2296 if [ "$res" != "$awk_result" ] && [ "$awk" = "awk" ]; then
2297 # User didn't supply his own awk, so try to detect some other known working names for an awk
2298 for awk in $awks; do
2299 log 2 "Trying: $awk_prefix $awk $awk_param"
2300 res=`eval $awk_prefix $awk $awk_param`
2301 log 2 "Result: '$res'"
2302 if [ "$res" = "$awk_result" ]; then break; fi
2305 if [ "$res" != "$awk_result" ]; then
2306 log 1 "checking awk... not found"
2307 log 1 "configure: error: no awk found"
2308 log 1 "configure: error: please install one of the following: $awks"
2312 if [ "$res" != "$awk_result" ]; then
2313 log 1 "checking awk... not found"
2314 log 1 "configure: error: you supplied '$awk' but it doesn't seem a valid gawk or mawk"
2318 log 1 "checking awk... $awk"
2322 if [ "$os" = "DETECT" ]; then
2323 # Detect UNIX, OSX, FREEBSD, DRAGONFLY, OPENBSD, NETBSD, HPUX, MORPHOS, BEOS, SUNOS, CYGWIN, MINGW, OS2, DOS, WINCE, and PSP
2325 # Try first via dumpmachine, then via uname
2326 os=`echo "$host" | tr '[A-Z]' '[a-z]' | $awk '
2327 /linux/ { print "UNIX"; exit}
2328 /darwin/ { print "OSX"; exit}
2329 /freebsd/ { print "FREEBSD"; exit}
2330 /dragonfly/ { print "DRAGONFLY"; exit}
2331 /openbsd/ { print "OPENBSD"; exit}
2332 /netbsd/ { print "NETBSD"; exit}
2333 /hp-ux/ { print "HPUX"; exit}
2334 /morphos/ { print "MORPHOS"; exit}
2335 /beos/ { print "BEOS"; exit}
2336 /haiku/ { print "HAIKU"; exit}
2337 /sunos/ { print "SUNOS"; exit}
2338 /solaris/ { print "SUNOS"; exit}
2339 /cygwin/ { print "CYGWIN"; exit}
2340 /mingw/ { print "MINGW"; exit}
2341 /os2/ { print "OS2"; exit}
2342 /dos/ { print "DOS"; exit}
2343 /wince/ { print "WINCE"; exit}
2344 /psp/ { print "PSP"; exit}
2347 if [ -z "$os" ]; then
2348 os=`LC_ALL=C uname | tr '[A-Z]' '[a-z]' | $awk '
2349 /linux/ { print "UNIX"; exit}
2350 /darwin/ { print "OSX"; exit}
2351 /freebsd/ { print "FREEBSD"; exit}
2352 /dragonfly/ { print "DRAGONFLY"; exit}
2353 /openbsd/ { print "OPENBSD"; exit}
2354 /netbsd/ { print "NETBSD"; exit}
2355 /hp-ux/ { print "HPUX"; exit}
2356 /morphos/ { print "MORPHOS"; exit}
2357 /beos/ { print "BEOS"; exit}
2358 /haiku/ { print "HAIKU"; exit}
2359 /sunos/ { print "SUNOS"; exit}
2360 /cygwin/ { print "CYGWIN"; exit}
2361 /mingw/ { print "MINGW"; exit}
2362 /os\/2/ { print "OS2"; exit}
2363 /gnu/ { print "UNIX"; exit}
2367 if [ -z "$os" ]; then
2368 log 1 "detecting OS... none detected"
2369 log 1 "I couldn't detect your OS. Please use --os=OS to force one"
2370 log 1 "Allowed values are: UNIX, OSX, FREEBSD, DRAGONFLY, OPENBSD, NETBSD, MORPHOS, HPUX, BEOS, HAIKU, SUNOS, CYGWIN, MINGW, OS2, DOS, WINCE, and PSP"
2374 log 1 "detecting OS... $os"
2376 log 1 "forcing OS... $os"
2381 # 0 means no, 1 is auto-detect, 2 is force
2382 if [ "$with_allegro" = "0" ]; then
2383 log 1 "checking Allegro... disabled"
2389 if [ "$with_allegro" = "2" ] && [ "$with_cocoa" = "2" ]; then
2390 log 1 "configure: error: it is impossible to compile both Allegro and COCOA"
2391 log 1 "configure: error: please deselect one of them and try again"
2395 if [ "$with_allegro" = "2" ] && [ "$enable_dedicated" != "0" ]; then
2396 log 1 "configure: error: it is impossible to compile a dedicated with Allegro"
2397 log 1 "configure: error: please deselect one of them and try again"
2401 if [ "$enable_dedicated" != "0" ]; then
2402 log 1 "checking Allegro... dedicated server, skipping"
2408 # By default on OSX we don't use Allegro. The rest is auto-detect
2409 if [ "$with_allegro" = "1" ] && [ "$os" = "OSX" ] && [ "$with_cocoa" != "0" ]; then
2410 log 1 "checking Allegro... OSX, skipping"
2416 detect_pkg_config "$with_allegro" "allegro" "allegro_config" "4.4"
2421 # 0 means no, 1 is auto-detect, 2 is force
2422 if [ "$with_sdl" = "0" ]; then
2423 log 1 "checking SDL... disabled"
2429 if [ "$with_sdl" = "2" ] && [ "$with_cocoa" = "2" ]; then
2430 log 1 "configure: error: it is impossible to compile both SDL and COCOA"
2431 log 1 "configure: error: please deselect one of them and try again"
2435 if [ "$with_sdl" = "2" ] && [ "$enable_dedicated" != "0" ]; then
2436 log 1 "configure: error: it is impossible to compile a dedicated with SDL"
2437 log 1 "configure: error: please deselect one of them and try again"
2441 if [ "$enable_dedicated" != "0" ]; then
2442 log 1 "checking SDL... dedicated server, skipping"
2448 # By default on OSX we don't use SDL. The rest is auto-detect
2449 if [ "$with_sdl" = "1" ] && [ "$os" = "OSX" ] && [ "$with_cocoa" != "0" ]; then
2450 log 1 "checking SDL... OSX, skipping"
2456 if [ "$os" = "OSX" ]; then
2457 log 1 "WARNING: sdl is known to fail on some versions of Mac OS X"
2458 log 1 "WARNING: with some hardware configurations. Use at own risk!"
2462 detect_pkg_config "$with_sdl" "sdl" "sdl_config" "1.2"
2466 # Try to find the best SDK available. For a normal build this
2467 # is currently the 10.5 SDK as this is needed to compile all
2468 # optional code. Because such an executable won't run on 10.4
2469 # or lower, also check for the 10.4u SDK when doing an universal
2472 # Check for the 10.5 SDK, but try 10.6 if that fails
2473 check_osx_sdk "10.5" || check_osx_sdk "10.6" || osx_sdk_path=""
2475 if [ -z "$osx_sdk_path" ] || [ "$enable_universal" != "0" ]; then
2476 # No better SDK or universal build enabled? Check 10.4u SDK as well
2477 local old_sdk="$osx_sdk_path"
2478 if check_osx_sdk "10.4u"; then
2479 osx_sdk_104_path="$osx_sdk_path"
2483 if [ -z "$old_sdk" ]; then
2484 osx_sdk_path="$osx_sdk_104_path"
2486 osx_sdk_path="$old_sdk"
2490 if [ -z "$osx_sdk_path" ]; then
2491 log 1 "Your system SDK is probably too old"
2492 log 1 "Please install/upgrade your Xcode to >= 2.5"
2499 # 0 means no, 1 is auto-detect, 2 is force
2500 if [ "$with_cocoa" = "0" ]; then
2501 log 1 "checking COCOA... disabled"
2506 if [ "$with_cocoa" = "2" ] && [ "$enable_dedicated" != "0" ]; then
2507 log 1 "configure: error: it is impossible to compile a dedicated with COCOA"
2508 log 1 "configure: error: please deselect one of them and try again"
2512 if [ "$enable_dedicated" != "0" ]; then
2513 log 1 "checking COCOA... dedicated server, skipping"
2519 # By default on OSX we use COCOA. The rest doesn't support it
2520 if [ "$with_cocoa" = "1" ] && [ "$os" != "OSX" ]; then
2521 log 1 "checking COCOA... not OSX, skipping"
2527 if [ "$os" != "OSX" ]; then
2528 log 1 "checking COCOA... not OSX"
2530 log 1 "configure: error: COCOA video driver is only supported for OSX"
2534 log 1 "checking COCOA... found"
2537 if [ "$enable_cocoa_quartz" != "0" ]; then
2538 log 1 "checking whether to enable the Quartz window subdriver... yes"
2540 log 1 "checking whether to enable the Quartz window subdriver... no"
2546 detect_quickdraw() {
2547 # 0 means no, 1 is auto-detect, 2 is force
2548 if [ "$enable_cocoa_quickdraw" = "0" ]; then
2549 log 1 "checking Quickdraw window subdriver... disabled"
2553 # Assume QuickDraw is available when doing an universal build
2554 if [ "$enable_universal" != "0" ]; then
2555 log 1 "checking Quickdraw window subdriver... found"
2559 # 64 bits doesn't have quickdraw
2560 if [ "$cpu_type" = "64" ]; then
2561 enable_cocoa_quickdraw="0"
2562 log 1 "checking Quickdraw window subdriver... disabled (64 bits)"
2566 cat > tmp.osx.mm << EOF
2567 #include <AvailabilityMacros.h>
2568 #import <Cocoa/Cocoa.h>
2569 int main(int argc, char *argv[]) { SetEmptyRgn(NULL); return 0; }
2571 execute="$cxx_host $OSX_SYSROOT $OSX_LD_SYSROOT $CFLAGS -mmacosx-version-min=10.3 tmp.osx.mm -framework Cocoa -o tmp.osx 2>&1"
2572 eval $execute > /dev/null
2574 log 2 "executing $execute"
2575 log 2 " exit code $ret"
2576 rm -f tmp.osx.mm tmp.osx
2577 if [ "$ret" != "0" ]; then
2578 log 1 "checking Quickdraw window subdriver... not found"
2580 # It was forced, so it should be found.
2581 if [ "$enable_cocoa_quickdraw" != "1" ]; then
2582 log 1 "configure: error: Quickdraw window driver could not be found"
2586 enable_cocoa_quickdraw=0
2590 enable_cocoa_quickdraw=1
2591 log 1 "checking Quickdraw window subdriver... found"
2595 # $1 - config-param ($with_zlib value)
2596 # $2 - library name ('zlib', sets $zlib)
2597 # $3 - static library name (libz.a)
2598 # $4 - header directory ()
2599 # $5 - header name (zlib.h)
2600 # $6 - force static (if non-empty)
2602 if [ -n "$6" ]; then force_static="1"; fi
2604 # 0 means no, 1 is auto-detect, 2 is force
2605 if [ "$1" = "0" ]; then
2606 log 1 "checking $2... disabled"
2612 log 2 "detecting $2"
2614 if [ "$1" = "1" ] || [ "$1" = "" ] || [ "$1" = "2" ]; then
2615 eval "$2=`ls -1 /usr/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2617 if [ -z "$res" ]; then
2618 log 2 " trying /usr/include/$4$5... no"
2619 eval "$2=`ls -1 /usr/local/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2622 if [ -z "$res" ]; then
2623 log 2 " trying /usr/local/include/$4$5... no"
2624 eval "$2=`ls -1 /mingw/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2627 if [ -z "$res" ]; then
2628 log 2 " trying /mingw/include/$4$5... no"
2629 eval "$2=`ls -1 /opt/local/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2632 if [ -z "$res" ]; then
2633 log 2 " trying /opt/local/include/$4$5... no"
2635 if [ -z "$res" ] && [ "$os" = "NETBSD" ]; then
2636 eval "$2=`ls -1 /usr/pkg/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2638 if [ -z "$res" ]; then
2639 log 2 " trying /usr/pkg/include/$4$5... no"
2642 if [ -z "$res" ] && [ "$os" = "HAIKU" ]; then
2643 if [ -z "$includeDir" ]; then
2644 includeDir=`finddir B_SYSTEM_HEADERS_DIRECTORY`
2646 eval "$2=`ls -1 $includeDir/$4*.h 2>/dev/null | egrep \"\/$5\$\"`"
2648 if [ -z "$res" ]; then
2649 log 2 " trying $includeDir/$4$5... no"
2654 if [ -n "$res" ] && ( [ -n "$force_static" ] || ( [ "$enable_static" != "0" ] && [ "$os" != "OSX" ] ) ); then
2656 log 2 " trying $res... found"
2657 # Now find the static lib, if needed
2658 eval "$2=`ls /lib/*.a 2>/dev/null | egrep \"\/$3\$\"`"
2660 if [ -z "$res" ]; then
2661 log 2 " trying /lib/$3... no"
2662 eval "$2=`ls /usr/lib/*.a 2>/dev/null | egrep \"\/$3\$\"`"
2665 if [ -z "$res" ]; then
2666 log 2 " trying /usr/lib/$3... no"
2667 eval "$2=`ls /usr/local/lib/*.a 2>/dev/null | egrep \"\/$3\$\"`"
2670 if [ -z "$res" ]; then
2671 log 2 " trying /usr/local/lib/$3... no"
2672 eval "$2=`ls /mingw/lib/*.a 2>/dev/null | egrep \"\/$3\$\"`"
2675 if [ -z "$res" ]; then
2676 log 2 " trying /mingw/lib/$3... no"
2677 log 1 "configure: error: $2 couldn't be found"
2678 log 1 "configure: error: you requested a static link, but I can't find $3"
2684 # Make sure it exists
2685 if [ -f "$1" ]; then
2686 eval "$2=`ls $1 2>/dev/null`"
2688 eval "$2=`ls $1/$3 2>/dev/null`"
2693 if [ -z "$res" ]; then
2694 log 1 "checking $2... not found"
2695 if [ "$1" = "2" ]; then
2696 log 1 "configure: error: $2 couldn't be found"
2699 elif [ "$1" != "1" ]; then
2700 log 1 "configure: error: $2 couldn't be found"
2701 log 1 "configure: error: you supplied '$1', but it seems invalid"
2712 log 2 " trying $res... found"
2714 log 1 "checking $2... found"
2718 detect_pkg_config "$with_zlib" "zlib" "zlib_config" "1.2"
2722 detect_library "$with_lzo2" "lzo2" "liblzo2.a" "lzo/" "lzo1x.h"
2725 detect_libtimidity() {
2726 detect_pkg_config "$with_libtimidity" "libtimidity" "libtimidity_config" "0.1" "1"
2729 detect_pkg_config() {
2730 # $1 - config-param ($with_lzma value)
2731 # $2 - package name ('liblzma')
2732 # $3 - config name ('lzma_config', sets $lzma_config)
2733 # $4 - minimum module version ('2.3')
2734 # $5 - check for dedicated, 1 is "skif if dedicated"
2736 # 0 means no, 1 is auto-detect, 2 is force
2737 if [ "$1" = "0" ]; then
2738 log 1 "checking $2... disabled"
2744 if [ "$5" = "1" ] && [ "$1" = "1" ] && [ "$enable_dedicated" != "0" ]; then
2745 log 1 "checking $2... dedicated server, skipping"
2751 log 2 "detecting $2"
2753 if [ "$1" = "1" ] || [ "$1" = "" ] || [ "$1" = "2" ]; then
2754 pkg_config_call="$pkg_config $2"
2756 pkg_config_call="$1"
2759 version=`$pkg_config_call --modversion 2>/dev/null`
2761 check_version "$4" "$version"
2763 log 2 "executing $pkg_config_call --modversion"
2764 log 2 " returned $version"
2765 log 2 " exit code $ret"
2767 if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version_ok" != "1" ]; then
2768 if [ -n "$version" ] && [ "$version_ok" != "1" ]; then
2769 log 1 "checking $2... needs at least version $4, $2 NOT enabled"
2771 log 1 "checking $2... not found"
2774 # It was forced, so it should be found.
2775 if [ "$1" != "1" ]; then
2776 log 1 "configure: error: $pkg_config $2 couldn't be found"
2777 log 1 "configure: error: you supplied '$1', but it seems invalid"
2785 eval "$3=\"$pkg_config_call\""
2786 log 1 "checking $2... found"
2790 detect_pkg_config "$with_lzma" "liblzma" "lzma_config" "5.0"
2793 detect_xdg_basedir() {
2794 detect_pkg_config "$with_xdg_basedir" "libxdg-basedir" "xdg_basedir_config" "1.2"
2798 detect_pkg_config "$with_png" "libpng" "png_config" "1.2"
2802 detect_pkg_config "$with_freetype" "freetype2" "freetype_config" "2.2" "1"
2805 detect_fontconfig() {
2806 # 0 means no, 1 is auto-detect, 2 is force
2807 if [ "$with_fontconfig" = "0" ]; then
2808 log 1 "checking libfontconfig... disabled"
2810 fontconfig_config=""
2813 if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ]; then
2814 log 1 "checking libfontconfig... WIN32, skipping"
2815 fontconfig_config=""
2819 if [ "$os" = "OSX" ]; then
2820 log 1 "checking libfontconfig... OSX, skipping"
2821 fontconfig_config=""
2825 detect_pkg_config "$with_fontconfig" "fontconfig" "fontconfig_config" "2.3" "1"
2828 detect_icu_layout() {
2829 detect_pkg_config "$with_icu_layout" "icu-lx" "icu_layout_config" "4.8" "1"
2833 detect_pkg_config "$with_icu_sort" "icu-i18n" "icu_sort_config" "4.8" "1"
2836 detect_pspconfig() {
2837 # 0 means no, 1 is auto-detect, 2 is force
2838 if [ "$with_psp_config" = "0" ]; then
2839 log 1 "checking psp-config... disabled"
2845 if [ "$with_psp_config" = "1" ] && [ "$os" != "PSP" ]; then
2846 log 1 "checking psp-config... not PSP, skipping"
2852 if [ "$os" != "PSP" ]; then
2853 log 1 "checking psp-config... not PSP"
2855 log 1 "configure: error: psp-config is only supported for PSP"
2859 if [ "$with_psp_config" = "1" ] || [ "$with_psp_config" = "" ] || [ "$with_psp_config" = "2" ]; then
2860 psp_config="psp-config"
2862 psp_config="$with_psp_config"
2865 version=`$psp_config -p 2>/dev/null`
2867 log 2 "executing $psp_config -p"
2868 log 2 " returned $version"
2869 log 2 " exit code $ret"
2871 if [ -z "$version" ] || [ "$ret" != "0" ]; then
2872 log 1 "checking psp-config... not found"
2873 log 1 "configure: error: psp-config couldn't be found"
2875 # It was forced, so it should be found.
2876 if [ "$with_psp_config" != "1" ]; then
2877 log 1 "configure: error: you supplied '$with_psp_config', but it seems invalid"
2882 log 1 "checking psp-config... found"
2886 # 0 means no, 1 is auto-detect, 2 is force
2887 if [ "$with_iconv" = "0" ]; then
2888 log 1 "checking iconv... disabled"
2893 if [ "$with_iconv" = "1" ] && [ "$os" != "OSX" ]; then
2894 log 1 "checking iconv... not OSX, skipping"
2900 # Try to find iconv.h, seems to only thing to detect iconv with
2902 if [ "$with_iconv" = "1" ] || [ "$with_iconv" = "" ] || [ "$with_iconv" = "2" ]; then
2903 iconv=`ls -1 /usr/include 2>/dev/null | grep "iconv.h"`
2904 if [ -z "$iconv" ]; then
2905 iconv=`ls -1 /usr/local/include 2>/dev/null | grep "iconv.h"`
2908 # Make sure it exists
2909 iconv=`ls $with_iconv/include/iconv.h 2>/dev/null`
2912 if [ -z "$iconv" ]; then
2913 log 1 "checking iconv... not found"
2914 if [ "$with_iconv" = "2" ]; then
2915 log 1 "configure: error: iconv couldn't be found"
2918 elif [ "$with_iconv" != "1" ]; then
2919 log 1 "configure: error: iconv couldn't be found"
2920 log 1 "configure: error: you supplied '$with_iconv', but I couldn't detect iconv in it"
2928 if [ "$with_iconv" = "1" ]; then
2932 log 2 "found iconv in $iconv"
2934 log 1 "checking iconv... found"
2936 # There are different implementations of iconv. The older ones,
2937 # e.g. SUSv2, pass a const pointer, whereas the newer ones, e.g.
2938 # IEEE 1003.1 (2004), pass a non-const pointer.
2940 cat > tmp.iconv.cpp << EOF
2941 #include "src/stdafx.h"
2944 static char buf[1024];
2946 const char *inbuf = "";
2948 size_t outlen = 1023;
2950 return iconv(convd, &inbuf, &inlen, &outbuf, &outlen);
2953 execute="$cxx_host $OSX_SYSROOT $CFLAGS -c tmp.iconv.cpp -o tmp.iconv -DTESTING 2>&1"
2954 eval $execute > /dev/null
2956 log 2 "executing $execute"
2957 log 2 " exit code $ret"
2958 if [ "$ret" = "0" ]; then have_non_const_iconv="no"; else have_non_const_iconv="yes"; fi
2959 log 1 "checking if iconv has non-const inbuf... $have_non_const_iconv"
2961 cat > tmp.iconv.cpp << EOF
2962 #include "src/stdafx.h"
2965 static char buf[1024];
2969 size_t outlen = 1023;
2971 return iconv(convd, &inbuf, &inlen, &outbuf, &outlen);
2974 execute="$cxx_host $OSX_SYSROOT $OSX_LD_SYSROOT $CFLAGS tmp.iconv.cpp -o tmp.iconv -DTESTING 2>&1"
2975 eval $execute > /dev/null
2977 log 2 "executing $execute"
2978 log 2 " exit code $ret"
2979 if [ "$ret" = "0" ]; then link_to_iconv="no"; else link_to_iconv="yes"; fi
2980 log 1 "checking whether to link to iconv... $link_to_iconv"
2981 rm -f tmp.iconv tmp.iconv.cpp
2995 log 2 "running echo <array> | $1"
2997 if [ "`echo \"$sort_test_in\" | $1 2>/dev/null`" = "$sort_test_out" ]; then
2999 log 2 " result was valid"
3001 log 2 " result was invalid"
3006 if [ "$with_sort" = "0" ]; then
3007 log 1 "checking sort... disabled"
3012 if [ "$with_sort" = "1" ] || [ "$with_sort" = "2" ]; then
3014 if [ -z "$sort" ]; then _detect_sort "/sbin/sort"; fi
3015 if [ -z "$sort" ]; then _detect_sort "/usr/sbin/sort"; fi
3016 if [ -z "$sort" ]; then _detect_sort "/usr/local/sbin/sort"; fi
3017 if [ -z "$sort" ]; then _detect_sort "/bin/sort"; fi
3018 if [ -z "$sort" ]; then _detect_sort "/usr/bin/sort"; fi
3019 if [ -z "$sort" ]; then _detect_sort "/usr/local/bin/sort"; fi
3021 _detect_sort "$with_sort"
3024 if [ -z "$sort" ]; then
3025 if [ "$with_sort" = "2" ]; then
3026 log 1 "checking sort... not found"
3028 log 1 "configure: error: couldn't detect sort on your system"
3030 elif [ "$with_sort" != "1" ]; then
3031 log 1 "checking sort... $with_sort not found"
3033 log 1 "configure: error: '$with_sort' doesn't look like a sort to me"
3034 log 1 "configure: error: please verify its location and function and try again"
3038 log 1 "checking sort... not found"
3041 log 1 "checking sort... $sort"
3046 # 0 means no, 1 is auto-detect, 2 is force
3047 if [ "$with_grfcodec" = "0" ]; then
3048 log 1 "checking grfcodec... disabled"
3054 if [ "$with_grfcodec" = "1" ] || [ "$with_grfcodec" = "" ] || [ "$with_grfcodec" = "2" ]; then
3057 grfcodec="$with_grfcodec"
3060 version=`$grfcodec -v 2>/dev/null | $awk '{print $3}' | sed 's/[rM]//g;s/-/0/'`
3062 log 2 "executing grfcodec -v"
3063 log 2 " returned $version"
3064 log 2 " exit code $ret"
3066 if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "985" ]; then
3067 if [ -n "$version" ] && [ "$version" -lt "985" ]; then
3068 log 1 "checking grfcodec... needs at least version 6.0.5 (r985), disabled"
3070 log 1 "checking grfcodec... not found"
3073 # It was forced, so it should be found.
3074 if [ "$with_grfcodec" != "1" ]; then
3075 log 1 "configure: error: grfcodec couldn't be found"
3076 log 1 "configure: error: you supplied '$with_grfcodec', but it seems invalid"
3084 log 1 "checking grfcodec... found"
3088 # 0 means no, 1 is auto-detect, 2 is force
3089 if [ "$with_nforenum" = "0" ]; then
3090 log 1 "checking nforenum... disabled"
3096 if [ "$with_nforenum" = "1" ] || [ "$with_nforenum" = "" ] || [ "$with_nforenum" = "2" ]; then
3099 nforenum="$with_nforenum"
3102 version=`$nforenum -v 2>/dev/null | $awk '{print $3}' | sed 's/[rM]//g;s/-/0/'`
3104 log 2 "executing nforenum -v"
3105 log 2 " returned $version"
3106 log 2 " exit code $ret"
3108 if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "985" ]; then
3109 if [ -n "$version" ] && [ "$version" -lt "985" ]; then
3110 log 1 "checking nforenum... needs at least version 6.0.5 (r985), disabled"
3112 log 1 "checking nforenum... not found"
3115 # It was forced, so it should be found.
3116 if [ "$with_nforenum" != "1" ]; then
3117 log 1 "configure: error: nforenum couldn't be found"
3118 log 1 "configure: error: you supplied '$with_nforenum', but it seems invalid"
3126 log 1 "checking nforenum... found"
3130 if [ -n "$cpu_type" ] && [ "$cpu_type" != "DETECT" ]; then
3131 log 1 "forcing cpu-type... $cpu_type bits"
3134 echo "#define _SQ64 1" > tmp.64bit.cpp
3135 echo "#include \"src/stdafx.h\"" >> tmp.64bit.cpp
3136 echo "assert_compile(sizeof(size_t) == 8);" >> tmp.64bit.cpp
3137 echo "int main() { return 0; }" >> tmp.64bit.cpp
3138 execute="$cxx_host $CFLAGS tmp.64bit.cpp -o tmp.64bit -DTESTING 2>&1"
3139 cpu_type="`eval $execute 2>/dev/null`"
3141 log 2 "executing $execute"
3142 log 2 " returned $cpu_type"
3143 log 2 " exit code $ret"
3144 if [ "$ret" = "0" ]; then cpu_type="64"; else cpu_type="32"; fi
3145 log 1 "detecting cpu-type... $cpu_type bits"
3146 rm -f tmp.64bit tmp.64bit.cpp
3149 detect_sse_capable_architecture() {
3150 # 0 means no, 1 is auto-detect, 2 is force
3151 if [ "$with_sse" = "0" ]; then
3152 log 1 "checking SSE... disabled"
3156 echo "#define _SQ64 1" > tmp.sse.cpp
3157 echo "#include <xmmintrin.h>" >> tmp.sse.cpp
3158 echo "#include <smmintrin.h>" >> tmp.sse.cpp
3159 echo "#include <tmmintrin.h>" >> tmp.sse.cpp
3160 echo "int main() { return 0; }" >> tmp.sse.cpp
3161 execute="$cxx_host -msse4.1 $CFLAGS tmp.sse.cpp -o tmp.sse 2>&1"
3162 sse="`eval $execute 2>/dev/null`"
3164 log 2 "executing $execute"
3165 log 2 " returned $sse"
3166 log 2 " exit code $ret"
3167 if [ "$ret" = "0" ]; then
3168 log 1 "detecting SSE... found"
3170 # It was forced, so it should be found.
3171 if [ "$with_sse" != "1" ]; then
3172 log 1 "configure: error: SSE couln't be found"
3173 log 1 "configure: error: you force enabled SSE, but it seems unavailable"
3177 log 1 "detecting SSE... not found"
3180 rm -f tmp.sse tmp.exe tmp.sse.cpp
3185 T_CXXFLAGS="$CXXFLAGS"
3186 T_LDFLAGS="$LDFLAGS"
3188 SRC_OBJS_DIR="$BASE_SRC_OBJS_DIR/$OBJS_SUBDIR"
3190 # All the data needed to compile a single target
3191 # Make sure if you compile multiple targets to
3192 # use multiple OBJS_DIR, because all in-between
3193 # binaries are stored in there, and nowhere else.
3195 s@!!CC_HOST!!@$cc_host@g;
3196 s@!!CXX_HOST!!@$cxx_host@g;
3197 s@!!CC_BUILD!!@$cc_build@g;
3198 s@!!CXX_BUILD!!@$cxx_build@g;
3199 s@!!WINDRES!!@$windres@g;
3200 s@!!STRIP!!@$strip $strip_arg@g;
3202 s@!!CFLAGS!!@$T_CFLAGS@g;
3203 s@!!CFLAGS_BUILD!!@$CFLAGS_BUILD@g;
3204 s@!!CXXFLAGS!!@$T_CXXFLAGS@g;
3205 s@!!CXXFLAGS_BUILD!!@$CXXFLAGS_BUILD@g;
3206 s@!!STRGEN_FLAGS!!@$strgen_flags@g;
3208 s@!!LDFLAGS!!@$T_LDFLAGS@g;
3209 s@!!LDFLAGS_BUILD!!@$LDFLAGS_BUILD@g;
3210 s@!!BIN_DIR!!@$BIN_DIR@g;
3211 s@!!ROOT_DIR!!@$ROOT_DIR@g;
3212 s@!!MEDIA_DIR!!@$MEDIA_DIR@g;
3213 s@!!SOURCE_LIST!!@$SOURCE_LIST@g;
3214 s@!!SRC_OBJS_DIR!!@$SRC_OBJS_DIR@g;
3215 s@!!LANG_OBJS_DIR!!@$LANG_OBJS_DIR@g;
3216 s@!!GRF_OBJS_DIR!!@$GRF_OBJS_DIR@g;
3217 s@!!SETTING_OBJS_DIR!!@$SETTING_OBJS_DIR@g;
3218 s@!!SRC_DIR!!@$SRC_DIR@g;
3219 s@!!SCRIPT_SRC_DIR!!@$SCRIPT_SRC_DIR@g;
3220 s@!!OSXAPP!!@$OSXAPP@g;
3221 s@!!LANG_DIR!!@$LANG_DIR@g;
3223 s@!!BINARY_DIR!!@$prefix_dir/$binary_dir@g;
3224 s@!!DATA_DIR!!@$prefix_dir/$data_dir@g;
3225 s@!!DOC_DIR!!@$prefix_dir/$doc_dir@g;
3226 s@!!MAN_DIR!!@$prefix_dir/$man_dir@g;
3227 s@!!ICON_DIR!!@$prefix_dir/$icon_dir@g;
3228 s@!!ICON_THEME_DIR!!@$prefix_dir/$icon_theme_dir@g;
3229 s@!!PERSONAL_DIR!!@$personal_dir@g;
3230 s@!!SHARED_DIR!!@$shared_dir@g;
3231 s@!!INSTALL_DIR!!@$install_dir@g;
3232 s@!!BINARY_NAME!!@$binary_name@g;
3233 s@!!STRGEN!!@$STRGEN@g;
3234 s@!!ENDIAN_CHECK!!@$ENDIAN_CHECK@g;
3235 s@!!DEPEND!!@$DEPEND@g;
3236 s@!!SETTINGSGEN!!@$SETTINGSGEN@g;
3237 s@!!ENDIAN_FORCE!!@$endian@g;
3238 s@!!STAGE!!@$STAGE@g;
3239 s@!!MAKEDEPEND!!@$makedepend@g;
3240 s@!!CFLAGS_MAKEDEP!!@$cflags_makedep@g;
3242 s@!!CONFIG_CACHE_COMPILER!!@config.cache.compiler@g;
3243 s@!!CONFIG_CACHE_LINKER!!@config.cache.linker@g;
3244 s@!!CONFIG_CACHE_ENDIAN!!@config.cache.endian@g;
3245 s@!!CONFIG_CACHE_SOURCE!!@config.cache.source@g;
3246 s@!!CONFIG_CACHE_VERSION!!@config.cache.version@g;
3247 s@!!CONFIG_CACHE_SOURCE_LIST!!@config.cache.source.list@g;
3248 s@!!CONFIG_CACHE_PWD!!@config.cache.pwd@g;
3249 s@!!LANG_SUPPRESS!!@$lang_suppress@g;
3250 s@!!OBJS_C!!@$OBJS_C@g;
3251 s@!!OBJS_CPP!!@$OBJS_CPP@g;
3252 s@!!OBJS_MM!!@$OBJS_MM@g;
3253 s@!!OBJS_RC!!@$OBJS_RC@g;
3256 s@!!CONFIGURE_FILES!!@$CONFIGURE_FILES@g;
3258 s@!!DISTCC!!@$distcc@g;
3259 s@!!NFORENUM!!@$nforenum@g;
3260 s@!!GRFCODEC!!@$grfcodec@g;
3263 if [ "$icon_theme_dir" != "" ]; then
3264 SRC_REPLACE="$SRC_REPLACE
3265 s@!!ICON_THEME_DIR!!@$prefix_dir/$icon_theme_dir@g;
3268 SRC_REPLACE="$SRC_REPLACE
3269 s@!!ICON_THEME_DIR!!@@g;
3273 if [ "$man_dir" != "" ]; then
3274 SRC_REPLACE="$SRC_REPLACE
3275 s@!!MAN_DIR!!@$prefix_dir/$man_dir@g;
3278 SRC_REPLACE="$SRC_REPLACE
3283 if [ "$menu_dir" != "" ]; then
3284 SRC_REPLACE="$SRC_REPLACE
3285 s@!!MENU_DIR!!@$prefix_dir/$menu_dir@g;
3288 SRC_REPLACE="$SRC_REPLACE
3294 generate_menu_item() {
3297 s@!!MENU_GROUP!!@$menu_group@g;
3298 s@!!MENU_NAME!!@$menu_name@g
3300 log 1 "Generating menu item..."
3302 < $ROOT_DIR/media/openttd.desktop.in sed "$MENU_REPLACE" > media/openttd.desktop
3310 # Create the main Makefile
3311 log 1 "Generating Makefile..."
3312 echo "# Auto-generated file from 'Makefile.in' -- DO NOT EDIT" > Makefile
3313 < $ROOT_DIR/Makefile.in sed "$SRC_REPLACE" >> Makefile
3314 cp $ROOT_DIR/Makefile.bundle.in Makefile.bundle
3315 echo "# Auto-generated file -- DO NOT EDIT" > Makefile.am
3317 # Make the copy of the source-list, so we don't trigger an unwanted recompile
3318 cp $SOURCE_LIST config.cache.source.list
3319 # Add the current directory, so we don't trigger an unwanted recompile
3320 echo "`pwd`" > config.cache.pwd
3321 # Make sure config.cache is OLDER then config.cache.source.list
3325 if [ "$menu_dir" != "" ]; then
3335 # Create the language file
3336 mkdir -p $LANG_OBJS_DIR
3338 log 1 "Generating lang/Makefile..."
3339 echo "# Auto-generated file from 'Makefile.lang.in' -- DO NOT EDIT" > $LANG_OBJS_DIR/Makefile
3340 < $ROOT_DIR/Makefile.lang.in sed "$SRC_REPLACE" >> $LANG_OBJS_DIR/Makefile
3341 echo "DIRS += $LANG_OBJS_DIR" >> Makefile.am
3342 echo "LANG_DIRS += $LANG_OBJS_DIR" >> Makefile.am
3345 generate_settings() {
3350 # Create the language file
3351 mkdir -p $SETTING_OBJS_DIR
3353 log 1 "Generating setting/Makefile..."
3354 echo "# Auto-generated file from 'Makefile.settings.in' -- DO NOT EDIT" > $SETTING_OBJS_DIR/Makefile
3355 < $ROOT_DIR/Makefile.setting.in sed "$SRC_REPLACE" >> $SETTING_OBJS_DIR/Makefile
3356 echo "DIRS += $SETTING_OBJS_DIR" >> Makefile.am
3364 # Create the language file
3365 mkdir -p $GRF_OBJS_DIR
3367 log 1 "Generating grf/Makefile..."
3368 echo "# Auto-generated file from 'Makefile.grf.in' -- DO NOT EDIT" > $GRF_OBJS_DIR/Makefile
3369 < $ROOT_DIR/Makefile.grf.in sed "$SRC_REPLACE" >> $GRF_OBJS_DIR/Makefile
3370 echo "DIRS += $GRF_OBJS_DIR" >> Makefile.am
3373 generate_src_normal() {
3378 # Create the source file
3379 mkdir -p $SRC_OBJS_DIR
3381 log 1 "Generating $2/Makefile..."
3382 echo "# Auto-generated file from 'Makefile.src.in' -- DO NOT EDIT" > $SRC_OBJS_DIR/Makefile
3383 < $ROOT_DIR/Makefile.src.in sed "$SRC_REPLACE" >> $SRC_OBJS_DIR/Makefile
3384 echo "DIRS += $SRC_OBJS_DIR" >> Makefile.am
3385 echo "SRC_DIRS += $SRC_OBJS_DIR" >> Makefile.am
3388 generate_src_osx() {
3389 cc_host_orig="$cc_host"
3390 cxx_host_orig="$cxx_host"
3391 CFLAGS_orig="$CFLAGS"
3392 LDFLAGS_orig="$LDFLAGS"
3394 for type in $enable_universal; do
3396 if [ -n "$osx_sdk_104_path" ]; then
3397 # Use 10.4 SDK for 32-bit targets
3398 CFLAGS="-isysroot $osx_sdk_104_path $CFLAGS_orig"
3399 LDFLAGS="-Wl,-syslibroot,$osx_sdk_104_path $LDFLAGS_orig"
3402 # We don't want to duplicate the x86_64 stuff for each target, so do it once here
3403 if [ "$type" = "ppc64" ] || [ "$type" = "x86_64" ]; then
3404 # 64 bits is always 10.5 or higher. Furthermore it has a non const ICONV
3405 # and they also removed support for QuickTime/QuickDraw
3406 if [ -n "$osx_sdk_path" ]; then
3407 CFLAGS="-isysroot $osx_sdk_path $CFLAGS_orig"
3408 LDFLAGS="-Wl,-syslibroot,$osx_sdk_path $LDFLAGS_orig"
3410 CFLAGS="$CFLAGS -D_SQ64 -DNO_QUICKTIME -UENABLE_COCOA_QUICKDRAW"
3411 LIBS="`echo $LIBS | sed 's/-framework QuickTime//'`"
3416 BASE_SRC_OBJS_DIR="$OBJS_DIR/ppc"
3417 cc_host="$cc_host_orig -arch ppc -mmacosx-version-min=10.3"
3418 cxx_host="$cxx_host_orig -arch ppc -mmacosx-version-min=10.3"
3419 generate_src_normal "[ppc]" "objs/ppc";;
3421 BASE_SRC_OBJS_DIR="$OBJS_DIR/ppc970"
3422 cc_host="$cc_host_orig -arch ppc970 -mmacosx-version-min=10.3 -mcpu=G5 -mpowerpc64 -mtune=970 -mcpu=970 -mpowerpc-gpopt"
3423 cxx_host="$cxx_host_orig -arch ppc970 -mmacosx-version-min=10.3 -mcpu=G5 -mpowerpc64 -mtune=970 -mcpu=970 -mpowerpc-gpopt"
3424 generate_src_normal "[ppc970]" "objs/ppc970";;
3426 BASE_SRC_OBJS_DIR="$OBJS_DIR/i386"
3427 cc_host="$cc_host_orig -arch i386 -mmacosx-version-min=10.4"
3428 cxx_host="$cxx_host_orig -arch i386 -mmacosx-version-min=10.4"
3429 generate_src_normal "[i386]" "objs/i386";;
3431 BASE_SRC_OBJS_DIR="$OBJS_DIR/ppc64"
3432 cc_host="$cc_host_orig -arch ppc64 -mmacosx-version-min=10.5"
3433 cxx_host="$cxx_host_orig -arch ppc64 -mmacosx-version-min=10.5"
3434 generate_src_normal "[ppc64]" "objs/ppc64";;
3436 BASE_SRC_OBJS_DIR="$OBJS_DIR/x86_64"
3437 cc_host="$cc_host_orig -arch x86_64 -mmacosx-version-min=10.5"
3438 cxx_host="$cxx_host_orig -arch x86_64 -mmacosx-version-min=10.5"
3439 generate_src_normal "[x86_64]" "objs/x86_64";;
3440 *) log 1 "Unknown architecture requested for universal build: $type";;
3446 if [ "$os" = "OSX" ] && [ "$enable_universal" != "0" ]; then
3449 generate_src_normal "[SRC]" "objs"
3454 echo "'configure' configures OpenTTD."
3456 echo "Usage: $0 [OPTION]... [VAR=VALUE]..."
3458 echo "To assign environment variables (e.g., CC, CFLAGS...), specify them as"
3459 echo "VAR=VALUE. See below for descriptions of some of the useful variables."
3461 echo "Defaults for the options are specified in brackets."
3463 echo "Configuration:"
3464 echo " -h, --help display this help and exit"
3466 echo "System types:"
3467 echo " --build=BUILD configure for building on BUILD [guessed]"
3468 echo " --host=HOST cross-compile to build programs to run"
3469 echo " on HOST [BUILD]"
3470 echo " --windres=WINDRES the windres to use [HOST-windres]"
3471 echo " --strip=STRIP the strip to use [HOST-strip]"
3472 echo " --awk=AWK the awk to use in configure [awk]"
3473 echo " --pkg-config=PKG-CONFIG the pkg-config to use in configure [pkg-config]"
3474 echo " --lipo=LIPO the lipo to use (OSX ONLY) [HOST-lipo]"
3475 echo " --os=OS the OS we are compiling for [DETECT]"
3476 echo " DETECT/UNIX/OSX/FREEBSD/DRAGONFLY/OPENBSD/"
3477 echo " NETBSD/MORPHOS/HPUX/BEOS/SUNOS/CYGWIN/"
3478 echo " MINGW/OS2/DOS/WINCE/PSP/HAIKU"
3479 echo " --endian=ENDIAN set the endian of the HOST (AUTO/LE/BE)"
3482 echo " --prefix-dir=dir specifies the prefix for all installed"
3483 echo " files [/usr/local]"
3484 echo " --binary-dir=dir location of the binary. Will be prefixed"
3485 echo " with the prefix-dir [games]"
3486 echo " --data-dir=dir location of data files (lang, data, gm)."
3487 echo " Will be prefixed with the prefix-dir"
3488 echo " [share/games/openttd]"
3489 echo " --doc-dir=dir location of the doc files"
3490 echo " Will be prefixed with the prefix-dir"
3492 echo " --icon-dir=dir location of icons. Will be prefixed"
3493 echo " with the prefix-dir [share/pixmaps]"
3494 echo " --icon-theme-dir=dir location of icon theme."
3495 echo " Will be prefixed with the prefix-dir"
3496 echo " and postfixed with size-dirs [$icon_theme_dir]"
3497 echo " --man-dir=dir location of the manual page (UNIX only)"
3498 echo " Will be prefixed with the prefix-dir"
3500 echo " --menu-dir=dir location of the menu item. (UNIX only, except OSX)"
3501 echo " Will be prefixed with the prefix-dir"
3502 echo " [share/applications]"
3503 echo " --personal-dir=dir location of the personal directory"
3504 echo " [os-dependent default]"
3505 echo " --shared-dir=dir location of shared data files"
3506 echo " [os-dependent default]"
3507 echo " --install-dir=dir specifies the root to install to."
3508 echo " Useful to install into jails [/]"
3509 echo " --binary-name the name used for the binary, icons,"
3510 echo " desktop file, etc. when installing [openttd]"
3512 echo "Features and packages:"
3513 echo " --enable-debug[=LVL] enable debug-mode (LVL=[0123], 0 is release)"
3514 echo " --enable-desync-debug=[LVL] enable desync debug options (LVL=[012], 0 is none"
3515 echo " --enable-profiling enables profiling"
3516 echo " --enable-lto enables GCC's Link Time Optimization (LTO)/ICC's"
3517 echo " Interprocedural Optimization if available"
3518 echo " --enable-dedicated compile a dedicated server (without video)"
3519 echo " --enable-static enable static compile (doesn't work for"
3521 echo " --enable-translator enable extra output for translators"
3522 echo " --enable-universal[=ARCH] enable universal builds (OSX ONLY). Allowed is any combination"
3523 echo " of architectures: i386 ppc ppc970 ppc64 x86_64"
3524 echo " Default architectures are: i386 ppc"
3525 echo " --enable-osx-g5 enables optimizations for ppc970 (G5) (OSX ONLY)"
3526 echo " --disable-cocoa-quartz disable the quartz window mode driver for Cocoa (OSX ONLY)"
3527 echo " --disable-cocoa-quickdraw disable the quickdraw window mode driver for Cocoa (OSX ONLY)"
3528 echo " --disable-unicode disable unicode support to build win9x"
3529 echo " version (Win32 ONLY)"
3530 echo " --enable-console compile as a console application instead of as a GUI application."
3531 echo " If this setting is active, debug output will appear in the same"
3532 echo " console instead of opening a new window. (Win32 ONLY)"
3533 echo " --disable-network disable network support"
3534 echo " --disable-assert disable asserts (continue on errors)"
3535 echo " --enable-strip enable any possible stripping"
3536 echo " --without-osx-sysroot disable the automatic adding of sysroot "
3538 echo " --without-application-bundle disable generation of application bundle"
3540 echo " --without-menu-entry Don't generate a menu item (Freedesktop based only)"
3541 echo " --menu-group=group Category in which the menu item will be placed (Freedesktop based only)"
3542 echo " --menu-name=name Name of the menu item when placed [OpenTTD]"
3543 echo " --with-direct-music enable direct music support (Win32 ONLY)"
3544 echo " --with-sort=sort define a non-default location for sort"
3545 echo " --with-midi=midi define which midi-player to use"
3546 echo " --with-midi-arg=arg define which args to use for the"
3548 echo " --with-libtimidity[=\"pkg-config libtimidity\"]"
3549 echo " enables libtimidity support"
3550 echo " --with-allegro[=\"pkg-config allegro\"]"
3551 echo " enables Allegro video driver support"
3552 echo " --with-cocoa enables COCOA video driver (OSX ONLY)"
3553 echo " --with-sdl[=\"pkg-config sdl\"] enables SDL video driver support"
3554 echo " --with-zlib[=\"pkg-config zlib\"]"
3555 echo " enables zlib support"
3556 echo " --with-liblzma[=\"pkg-config liblzma\"]"
3557 echo " enables liblzma support"
3558 echo " --with-liblzo2[=liblzo2.a] enables liblzo2 support"
3559 echo " --with-png[=\"pkg-config libpng\"]"
3560 echo " enables libpng support"
3561 echo " --with-freetype[=\"pkg-config freetype2\"]"
3562 echo " enables libfreetype support"
3563 echo " --with-fontconfig[=\"pkg-config fontconfig\"]"
3564 echo " enables fontconfig support"
3565 echo " --with-xdg-basedir[=\"pkg-config libxdg-basedir\"]"
3566 echo " enables XDG base directory support"
3567 echo " --with-icu enables icu components for layout and sorting"
3568 echo " --with-icu-layout[=\"pkg-config icu-lx\"]"
3569 echo " enables icu components for layouting (right-to-left support)"
3570 echo " --with-icu-sort[=\"pkg-config icu-i18n\"]"
3571 echo " enables icu components for locale specific string sorting"
3572 echo " --static-icu try to link statically (libsicu instead of"
3573 echo " libicu; can fail as the new name is guessed)"
3574 echo " --with-iconv[=iconv-path] enables iconv support"
3575 echo " --with-psp-config[=psp-config] enables psp-config support (PSP ONLY)"
3576 echo " --disable-builtin-depend disable use of builtin deps finder"
3577 echo " --with-makedepend[=makedepend] enables makedepend support"
3578 echo " --with-ccache enables ccache support"
3579 echo " --with-distcc enables distcc support"
3580 echo " --without-grfcodec disable usage of grfcodec and re-generation of base sets"
3581 echo " --without-threads disable threading support"
3582 echo " --without-sse disable SSE support (x86/x86_64 only)"
3584 echo "Some influential environment variables:"
3585 echo " CC C compiler command"
3586 echo " CXX C++ compiler command"
3587 echo " CFLAGS C compiler flags"
3588 echo " CXXFLAGS C++ compiler flags"
3589 echo " WINDRES windres command"
3590 echo " LDFLAGS linker flags, e.g. -L<lib dir> if you"
3591 echo " have libraries in a nonstandard"
3592 echo " directory <lib dir>"
3593 echo " CFLAGS_BUILD C compiler flags for build time tool generation"
3594 echo " CXXFLAGS_BUILD C++ compiler flags for build time tool generation"
3595 echo " LDFLAGS_BUILD linker flags for build time tool generation"
3596 echo " PKG_CONFIG_PATH additional library search paths (see \"man pkg-config\")"
3597 echo " PKG_CONFIG_LIBDIR replace the default library search path (see \"man pkg-config\")"
3599 echo "Use these variables to override the choices made by 'configure' or to help"
3600 echo "it to find libraries and programs with nonstandard names/locations."