aboutsummaryrefslogtreecommitdiff
path: root/configure
blob: 13aeba48c97c1a2c3d7d69c7ae4c6d7c2b26cde1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
#!/bin/sh
#
# Some things this script could/should do when finished
#
# * detect the compiler name (g++/c++/...)
# * detect whether its a GNU compiler or not (for compiler settings)
# * detect the host platform and base settings on this:
#   - #defines like -DUNIX and -DMACOSX
#   - required libs like -lmingw32
# * command line options to...
#   - override the host settings (for cross compiles
#   - select the desired backend (sdl, x11, ...)
#   - whether to do a debug build (with -g) or an optimized build (-O3 etc.)
# * detect whether the chosen backend is available (e.g. call sdl-config)
# * generate a config.mak file for use in makefiles
# * ....

# TODO: We should really use mktemp(1) to determine a random tmp file name.
# However, that tool might not be available everywhere.
TMPO=/tmp/scummvm-conf
TMPC=${TMPO}.cpp
TMPLOG=config.log

# use environment vars if set
CXXFLAGS="$CXXFLAGS $CPPFLAGS"

# default lib behaviour yes/no/auto
_vorbis=auto
_flac=auto
_mad=auto
_alsa=auto
_zlib=auto
_mpeg2=auto
# default option behaviour yes/no
_build_scumm=yes
_build_simon=yes
_build_sky=yes
_build_sword1=yes
_build_sword2=yes
_build_queen=yes
_build_kyra=no
_build_saga=no
_build_awe=no
_need_memalign=no
_build_plugins=no
# more defaults
_backend=sdl
_ranlib=ranlib
_install=install
_sdlconfig=sdl-config
_sdlpath="$PATH"
_prefix=/usr/local

_srcdir=`dirname $0`

# For cross compiling
_host=""
_host_cpu=""
_host_vendor=""
_host_os=""

# config.h defaults
_def_linupy="#undef LINUPY"

cc_check() {
	echo >> "$TMPLOG"
	cat "$TMPC" >> "$TMPLOG"
	echo >> "$TMPLOG"
	echo "$CXX $TMPC -o $TMPO $@" >> "$TMPLOG"
	rm -f "$TMPO"
	( $CXX "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 2>&1
	TMP="$?"
	echo >> "$TMPLOG"
	return "$TMP"
}

echocheck () {
	echo_n "Checking for $@... "
}

#
# Check whether the given command is a working C++ compiler
#
test_compiler ()
{
cat <<EOF >tmp_cxx_compiler.cpp
class Foo {
  int a;
};
int main(int argc, char **argv)
{
	Foo *a = new Foo();
	delete a;
	return 0;
}
EOF

if test -n "$_host"; then
    # In cross-compiling mode, we cannot run the result
    eval "$1 -o tmp_cxx_compiler tmp_cxx_compiler.cpp 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
else
    eval "$1 -o tmp_cxx_compiler tmp_cxx_compiler.cpp 2> /dev/null" && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
fi
}

#
# Determine sdl-config
#
# TODO: small bit of code to test sdl useability
find_sdlconfig()
{
	echo_n "Looking for sdl-config... "
	sdlconfigs="$_sdlconfig:sdl-config:sdl11-config:sdl12-config"
	_sdlconfig=
	
	IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
	
	for path_dir in $_sdlpath; do
	  for sdlconfig in $sdlconfigs; do
	    if test -x "$path_dir/$sdlconfig" ; then
	      _sdlconfig="$path_dir/$sdlconfig"
	      echo $_sdlconfig
	      break
	    fi
	  done
	done
	
	IFS="$ac_save_ifs"
	
	if test -z "$_sdlconfig"; then
	  echo "none found!"
	  exit 1
	fi
}

#
# Function to provide echo -n for bourne shells that don't have it
#
echo_n() 
{ 
	printf "$@"
}

#
# Determine a data type with the given length
#
find_type_with_size ()
{
cat <<EOF >tmp_find_type_with_size.cpp
#include <stdio.h>
int main(int argc, char **argv)
{
	int size = argv[1][0] - '0';
	if (size == sizeof(int))
		printf("int\n");
	else if (size == sizeof(short))
		printf("short\n");
	else if (size == sizeof(char))
		printf("char\n");
	else if (size == sizeof(long))
		printf("long\n");
	else {
		printf("unknown\n");
		return 1;
	}

	return 0;
}
EOF
if eval "$CXX -o tmp_find_type_with_size tmp_find_type_with_size.cpp"; then
  datatype=`./tmp_find_type_with_size $1`
  if test "$datatype" = "unknown"; then
	echo "couldn't find data type with $1 bytes"
	exit 1
  fi
fi
rm -f tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp
echo $datatype
}

#
# Greet user
#

echo "Running ScummVM configure..."
echo "Configure run on" `date` > $TMPLOG

#
# Check any parameters we received
#
# TODO:
# * Change --disable-mad / --enable-mad to the way it's done in autoconf:
#  That is, --without-mad / --with-mad=/prefix/to/mad. Useful for people
#  who have Mad/Vorbis/ALSA installed in a non-standard locations.
#

for parm in "$@" ; do
  if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
    cat << EOF

Usage: $0 [OPTIONS]...

Configuration:
  -h, --help             display this help and exit
  --backend=BACKEND      backend to build (sdl, x11, morphos, dc, gp32) [sdl]

Installation directories:
  --prefix=DIR           use this prefix for installing ScummVM [/usr/local]
  --bindir=DIR           directory to install the scummvm binary in [PREFIX/bin]
  --mandir=DIR           directory to install the manpage in [PREFIX/man]

Special configuration feature:
  --host=HOST            cross-compile to target HOST (arm-linux, ...)
                         special targets: linupy for Yopy PDA

Optional Features:
  --disable-debug          disable building with debugging symbols
  --disable-scumm          don't build the SCUMM engine
  --disable-simon          don't build the simon engine
  --disable-sky            don't build the Beneath a Steel Sky engine
  --disable-sword1         don't build the Broken Sword I engine
  --disable-sword2         don't build the Broken Sword II engine
  --disable-queen          don't build the Flight of the Amazon Queen engine
  --enable-kyra            build the Legend of Kyrandia engine
  --enable-saga            build the SAGA engine
  --enable-awe            build the Another World engine
  --enable-plugins         build engines as loadable modules instead of
                           static linking them

Optional Libraries:
  --with-alsa-prefix=DIR   Prefix where alsa is installed (optional)
  --disable-alsa           disable ALSA midi sound support [autodetect]

  --with-ogg-prefix=DIR    Prefix where libogg is installed (optional)
  --with-vorbis-prefix=DIR Prefix where libvorbis is installed (optional)
  --disable-vorbis         disable Ogg Vorbis support [autodetect]

  --with-mad-prefix=DIR    Prefix where libmad is installed (optional)
  --disable-mad            disable libmad (MP3) support [autodetect]
  
  --with-flac-prefix=DIR   Prefix where libFLAC is installed (optional)
  --disable-flac           disable FLAC support [autodetect]

  --with-zlib-prefix=DIR   Prefix where zlib is installed (optional)
  --disable-zlib           disable zlib (compression) support [autodetect]

  --with-mpeg2-prefix=DIR  Prefix where libmpeg2 is installed (optional)
  --disable-mpeg2          disable mpeg2 codec for cutscenes [autodetect]

  --with-sdl-prefix=DIR    Prefix where the sdl-config script is installed

Some influential environment variables:
  LDFLAGS	linker flags, e.g. -L<lib dir> if you have libraries in a
  		nonstandard directory <lib dir>
  CXX		C++ compiler command
  CXXFLAGS	C++ compiler flags
  CPPFLAGS	C++ preprocessor flags, e.g. -I<include dir> if you have
  		headers in a nonstandard directory <include dir>

EOF
    exit 0
  fi
done # for parm in ...

DEBFLAGS="-g"

for ac_option in $@; do
    case "$ac_option" in
      --disable-scumm)		_build_scumm=no ;;
      --disable-simon)		_build_simon=no ;;
      --disable-sky)		_build_sky=no ;;
      --disable-sword1)		_build_sword1=no ;;
      --disable-sword2)		_build_sword2=no ;;
      --disable-queen)		_build_queen=no ;;
      --enable-kyra)		_build_kyra=yes ;;
      --enable-saga)		_build_saga=yes ;;
      --enable-awe)		_build_awe=yes ;;
      --enable-alsa)		_alsa=yes	;;
      --disable-alsa)		_alsa=no	;;
      --enable-vorbis)		_vorbis=yes	;;
      --disable-vorbis)		_vorbis=no	;;
      --enable-flac)		_flac=yes	;;
      --disable-flac)		_flac=no	;;
      --enable-mad)		_mad=yes	;;
      --disable-mad)		_mad=no		;;
      --enable-zlib)		_zlib=yes	;;
      --disable-zlib)		_zlib=no	;;
      --disable-mpeg2)          _mpeg2=no       ;;
      --enable-plugins)         _build_plugins=yes ;;
      --with-mpeg2-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	MPEG2_CFLAGS="-I$_prefix/include"
	MPEG2_LIBS="-L$_prefix/lib"
        ;;
      --with-alsa-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	ALSA_CFLAGS="-I$_prefix/include"
	ALSA_LIBS="-L$_prefix/lib"
	;;
      --with-ogg-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	OGG_CFLAGS="-I$_prefix/include"
	OGG_LIBS="-L$_prefix/lib"
	;;
      --with-vorbis-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	VORBIS_CFLAGS="-I$_prefix/include"
	VORBIS_LIBS="-L$_prefix/lib"
	;;
      --with-flac-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	FLAC_CFLAGS="-I$_prefix/include"
	FLAC_LIBS="-L$_prefix/lib"
	;;
      --with-mad-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	MAD_CFLAGS="-I$_prefix/include"
	MAD_LIBS="-L$_prefix/lib"
	;;
      --with-zlib-prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
	ZLIB_CFLAGS="-I$_prefix/include"
	ZLIB_LIBS="-L$_prefix/lib"
	;;
      --backend=*)
        _backend=`echo $ac_option | cut -d '=' -f 2`
	;;
      --disable-debug)
	DEBFLAGS=""
        ;;
      --enable-release)
	DEBFLAGS="-O2"
        ;;
      --with-sdl-prefix=*)
	arg=`echo $ac_option | cut -d '=' -f 2`
	_sdlpath="$arg:$arg/bin"
	;;
      --host=*)
	_host=`echo $ac_option | cut -d '=' -f 2`
	;;
      --prefix=*)
        _prefix=`echo $ac_option | cut -d '=' -f 2`
	;;
      --bindir=*)
        _bindir=`echo $ac_option | cut -d '=' -f 2`
	;;
      --mandir=*)
        _mandir=`echo $ac_option | cut -d '=' -f 2`
	;;
      *)
        echo "error: unrecognised option: $ac_option
Try \`$0 --help' for more information." >&2
	exit 1
        ;;
    esac;
done;

CXXFLAGS="$CXXFLAGS $DEBFLAGS"

if test "$_host" = "linupy"; then
    _host_os=linux
    _host_cpu=arm
else
	guessed_host=`$_srcdir/config.guess`
    _host_cpu=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
    _host_os=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
    _host_vendor=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
fi

#
# Determine extension used for executables
#
case $_host_os in
mingw* | cygwin*)
	EXEEXT=".exe"
	;;
*)
	EXEEXT=""
	;;
esac

#
# Determine the C++ compiler
#
echo_n "Looking for C++ compiler... "
if test -n "$_host"; then
    compilers="$CXX $_host_cpu-$_host_os-g++ $_host_cpu-$_host_os-c++"
else
    compilers="$CXX g++ c++"
fi

CXX=
for compiler in $compilers; do
    if test_compiler $compiler; then
	CXX=$compiler
	echo $CXX
	break
    fi
done
if test -z $CXX; then
    echo "none found!"
    exit 1
fi

#
# Determine the compiler version

echocheck "compiler version"

cxx_name=`( $cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1`
cxx_version=`( $CXX -dumpversion ) 2>&1`
if test "$?" -gt 0; then
	cxx_version="not found"
fi

case $cxx_version in
	2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9])
		_cxx_major=`echo $cxx_version | cut -d '.' -f 1`
		_cxx_minor=`echo $cxx_version | cut -d '.' -f 2`
		cxx_version="$cxx_version, ok"
		cxx_verc_fail=no
		;;
	# whacky beos version strings
	2.9-beos-991026*|2.9-beos-000224*)	
		_cxx_major=2
		_cxx_minor=95
		cxx_version="$cxx_version, ok"
		cxx_verc_fail=no
		;;
	'not found')
		cxx_verc_fail=yes
		;;
	*)
		cxx_version="$cxx_version, bad"
		cxx_verc_fail=yes
		;;
esac

echo "$cxx_version"

if test "$cxx_verc_fail" = yes ; then
	echo
	echo "The version of your compiler is not supported at this time"
	echo "Please ensure you are using GCC 2.95.x or GCC 3.x"
	exit 1	
fi

#
# Do CXXFLAGS now we know the compiler version
#

if test "$_cxx_major" -ge "3" ; then
    case $_host_os in
	mingw* | cygwin*)
	CXXFLAGS="$CXXFLAGS -W -Wno-unused-parameter"
	    ;;
	*)
	CXXFLAGS="$CXXFLAGS -ansi -W -Wno-unused-parameter"
	    ;;
    esac
    _make_def_HAVE_GCC3='HAVE_GCC3 = 1'
fi;

#
# Engine selection
#
if test "$_build_scumm" = no ; then
	_mak_scumm='DISABLE_SCUMM = 1'
else
	_mak_scumm='# DISABLE_SCUMM = 1'
fi

if test "$_build_simon" = no ; then
	_mak_simon='DISABLE_SIMON = 1'
else
	_mak_simon='# DISABLE_SIMON = 1'
fi

if test "$_build_sky" = no ; then
	_mak_sky='DISABLE_SKY = 1'
else
	_mak_sky='# DISABLE_SKY = 1'
fi

if test "$_build_sword1" = no ; then
	_mak_sword1='DISABLE_SWORD1 = 1'
else
	_mak_sword1='# DISABLE_SWORD1 = 1'
fi

if test "$_build_sword2" = no ; then
	_mak_sword2='DISABLE_SWORD2 = 1'
else
	_mak_sword2='# DISABLE_SWORD2 = 1'
fi

if test "$_build_queen" = no ; then
	_mak_queen='DISABLE_QUEEN = 1'
else
	_mak_queen='# DISABLE_QUEEN = 1'
fi

if test "$_build_kyra" = no ; then
	_mak_kyra='DISABLE_KYRA = 1'
else
	_mak_kyra='# DISABLE_KYRA = 1'
fi

if test "$_build_saga" = no ; then
	_mak_saga='DISABLE_SAGA = 1'
else
	_mak_saga='# DISABLE_SAGA = 1'
fi

if test "$_build_awe" = no ; then
	_mak_awe='DISABLE_AWE = 1'
else
	_mak_awe='# DISABLE_AWE = 1'
fi

if test -n "$_host"; then
    # Cross-compiling mode - add your target here if needed
    case "$_host" in
	linupy)
	    echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
	    DEFINES="$DEFINES -DUNIX"
	    _def_endianness='#define SCUMM_LITTLE_ENDIAN'
	    _def_align='#define SCUMM_NEED_ALIGNMENT'
	    _def_linupy="#define DLINUPY"
	    type_1_byte='char'
	    type_2_byte='short'
	    type_4_byte='int'
	    ;;
	*)
	    echo "Cross-compiling to unknown target, please add your target to configure."
	    exit 1
	    ;;
    esac
	    
else
    #
    # Determine build settings
    #
    # TODO - also add an command line option to override this?!?
    echo_n "Checking hosttype... "
    echo $_host_os
    case $_host_os in
	linux* | openbsd* | freebsd* | netbsd* | bsd* | sunos* | hpux* | beos*)
	    DEFINES="$DEFINES -DUNIX"
	    ;;
	irix*)
	    DEFINES="$DEFINES -DUNIX"
	    ranlib=ar -r
	    ;;
	darwin*)
	    DEFINES="$DEFINES -DUNIX -DMACOSX"
	    LIBS="$LIBS -framework QuickTime -framework AudioUnit -framework Carbon"
	    # TODO: Add proper check for Altivec support in the compiler...
	    DEFINES="$DEFINES -DHAS_ALTIVEC"
	    CXXFLAGS="$CXXFLAGS -faltivec"
	    ;;
	mingw*)
	    DEFINES="$DEFINES -DWIN32"
	    LIBS="$LIBS -lmingw32 -lwinmm"
	    OBJS="$OBJS scummvmico.o"
	    ;;
	cygwin*)
	    DEFINES="$DEFINES -mno-cygwin -DWIN32"
	    LIBS="$LIBS -mno-cygwin -lmingw32 -lwinmm"
	    OBJS="$OBJS scummvmico.o"
	    ;;
	# given this is a shell script assume some type of unix
	*)
	    echo "WARNING: could not establish system type, assuming unix like"
	    DEFINES="$DEFINES -DUNIX"
	    ;;
    esac

    #
    # Check for endianness
    #
    echo_n "Checking endianness... "
    cat <<EOF >tmp_endianness_check.cpp
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
    unsigned int data = 0x01234567;
    char *ptr = (char *)&data;
    if (ptr[0] == 0x01 && ptr[1] == 0x23 && ptr[2] == 0x45 && ptr[3] == 0x67)
	printf("big\n");
    else if (ptr[3] == 0x01 && ptr[2] == 0x23 && ptr[1] == 0x45 && ptr[0] == 0x67)
	printf("little\n");
    else
	printf("unknown\n");
    return 0;
}
EOF
    $CXX -o tmp_endianness_check tmp_endianness_check.cpp
    endianness=`./tmp_endianness_check`
    echo $endianness;
    case $endianness in
	big)
	    _def_endianness='#define SCUMM_BIG_ENDIAN'
	    ;;
	little)
	    _def_endianness='#define SCUMM_LITTLE_ENDIAN'
	    ;;
	*)
	    exit 1
	    ;;
    esac
    rm -f tmp_endianness_check$EXEEXT tmp_endianness_check.cpp

    #
    # Check whether memory alignment is required
    #
    echo_n "Alignment required... "
    case $_host_cpu in
        alpha*)
            # Hardcode alignment requirements for Alpha processsors
            _need_memalign=yes
            ;;
        *)
            # Try to auto-detect....
            cat > $TMPC << EOF
#include <stdlib.h>
#include <signal.h>
int main(int argc, char **argv)
{
    unsigned char test[8] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 };
    signal(SIGBUS, exit);
    signal(SIGABRT, exit);
    signal(SIGSEGV, exit);
    if (*((unsigned int *)(test + 1)) != 0x55443322 && *((unsigned int *)(test + 1)) != 0x22334455) {
	return 1;
    }
    return 0;
}
EOF
            _need_memalign=yes
            cc_check && $TMPO && _need_memalign=no
            ;;
    esac

    if test "$_need_memalign" = yes ; then
	_def_align='#define SCUMM_NEED_ALIGNMENT'
    else
	_def_align='#undef SCUMM_NEED_ALIGNMENT'
    fi
    echo "$_need_memalign"

    #
    # Determine data type sizes
    # TODO: proper error checking
    # TODO: Actually, we should check individually for both signed & unsigned
    # data types - there are systems on which the size of an unsigned int
    # differs from that of a signed int!
    # However, so far we haven't encountered one of those, so we can live with
    # the limited check for now.
    #
    echo_n "Type with 1 byte... "
    type_1_byte=`find_type_with_size 1`
    echo "$type_1_byte"
    
    echo_n "Type with 2 bytes... "
    type_2_byte=`find_type_with_size 2`
    echo "$type_2_byte"
    
    echo_n "Type with 4 bytes... "
    type_4_byte=`find_type_with_size 4`
    echo "$type_4_byte"
    
fi

#
# Check whether plugin support is requested and possible
#
echocheck "Plugin support"
_mak_plugins=
if test "$_build_plugins" = yes ; then
    case $_host_os in
	linux*)
_mak_plugins='
BUILD_PLUGINS := 1
CXXFLAGS      += -DDYNAMIC_MODULES
CXXFLAGS        += -fpic
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
LIBS            += -ldl
'
	    ;;
	freebsd*)
_mak_plugins='
BUILD_PLUGINS := 1
CXXFLAGS      += -DDYNAMIC_MODULES
CXXFLAGS        += -fpic
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
	    ;;
	darwin*)
_mak_plugins='
BUILD_PLUGINS := 1
CXXFLAGS      += -DDYNAMIC_MODULES
PLUGIN_LDFLAGS  += -bundle -bundle_loader $(EXECUTABLE) -exported_symbols_list "$(srcdir)/plugin.exp"
PRE_OBJS_FLAGS  := -all_load
POST_OBJS_FLAGS :=
LIBS            += -ldl
'
	    ;;
	*)
	    _build_plugins=no
	    ;;
    esac
fi
echo "$_build_plugins"

#
# Check for Ogg Vorbis
#
echocheck "Ogg Vorbis"
if test "$_vorbis" = auto ; then
  _vorbis=no
  cat > $TMPC << EOF
#include <vorbis/codec.h>
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
EOF
  cc_check $LDFLAGS $CXXFLAGS $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \
  -lvorbis -logg -lm && _vorbis=yes
fi
if test "$_vorbis" = yes ; then
  _def_vorbis='#define USE_VORBIS'
  LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisfile -lvorbis -logg"
  INCLUDES="$INCLUDES $OGG_CFLAGS $VORBIS_CFLAGS"
else
  _def_vorbis='#undef USE_VORBIS'
fi
echo "$_vorbis"

echocheck "FLAC >= 1.0.1"
if test "$_flac" = auto ; then
  _flac=no
  cat > $TMPC << EOF
#include <FLAC/seekable_stream_decoder.h>
int main(void) { FLAC__seekable_stream_decoder_init( 0 ); return 0; }
EOF
  cc_check $LDFLAGS $CXXFLAGS $FLAC_CFLAGS $FLAC_LIBS \
  -lFLAC -lm && _flac=yes
fi
if test "$_flac" = yes ; then
  _def_flac='#define USE_FLAC'
  LIBS="$LIBS $FLAC_LIBS -lFLAC"
  INCLUDES="$INCLUDES $FLAC_CFLAGS"
else
  _def_flac='#undef USE_FLAC'
fi
echo "$_flac"

#
# Check for MAD (MP3 library)
#
echocheck "MAD"
if test "$_mad" = auto ; then
  _mad=no
  cat > $TMPC << EOF
#include <mad.h>
int main(void) {return 0; }
EOF
  cc_check $LDFLAGS $CXXFLAGS $MAD_CFLAGS $MAD_LIBS -lmad && _mad=yes
fi
if test "$_mad" = yes ; then
  _def_mad='#define USE_MAD'
  LIBS="$LIBS $MAD_LIBS -lmad"
  INCLUDES="$INCLUDES $MAD_CFLAGS"
else
  _def_mad='#undef USE_MAD'
fi
echo "$_mad"

#
# Check for ALSA
#
echocheck "ALSA >= 0.9"
if test "$_alsa" = auto ; then
  _alsa=no
  cat > $TMPC << EOF
#include <alsa/asoundlib.h>
int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); }
EOF
  cc_check $LDFLAGS $CXXFLAGS $ALSA_CFLAGS $ALSA_LIBS -lasound && _alsa=yes
fi
if test "$_alsa" = yes ; then
  _def_alsa='#define USE_ALSA'
  LIBS="$LIBS $ALSA_LIBS -lasound"
  INCLUDES="$INCLUDES $ALSA_CFLAGS"
else
  _def_alsa='#undef USE_ALSA'
fi
echo "$_alsa"

#
# Check for ZLib
#
echocheck "zlib"
if test "$_zlib" = auto ; then
  _zlib=no
  cat > $TMPC << EOF
#include <string.h>
#include <zlib.h>
int main(void) { return strcmp(ZLIB_VERSION, zlibVersion()); }
EOF
  cc_check $LDFLAGS $CXXFLAGS $ZLIB_CFLAGS $ZLIB_LIBS -lz && _zlib=yes
fi
if test "$_zlib" = yes ; then
  _def_zlib='#define USE_ZLIB'
  LIBS="$LIBS $ZLIB_LIBS -lz"
  INCLUDES="$INCLUDES $ZLIB_CFLAGS"
else
  _def_zlib='#undef USE_ZLIB'
fi
echo "$_zlib"

#
# Check for LibMPEG2
#
echocheck "libmpeg2 >= 0.3.2"
if test "$_mpeg2" = auto ; then
  _mpeg2=no
  cat > $TMPC << EOF
#include <inttypes.h>
#include <mpeg2dec/mpeg2.h>
int main(void) {
	/* mpeg2_state_t first appears in 0.4.0 */
	mpeg2_state_t state;

        #ifdef MPEG2_RELEASE
		if (MPEG2_RELEASE >= MPEG2_VERSION(0, 3, 2))
			return 0;
	#endif
	return 1;
}
EOF
  cc_check $LDFLAGS $CXXFLAGS $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && $TMPO && _mpeg2=yes
fi
if test "$_mpeg2" = yes ; then
  _def_mpeg2='#define USE_MPEG2'
  INCLUDES="$INCLUDES $MPEG2_CFLAGS"
  LIBS="$LIBS $MPEG2_LIBS -lmpeg2"
else
  _def_mpeg2='#undef USE_MPEG2'
fi
echo "$_mpeg2"
rm -f $TMPC $TMPO

#
# figure out installation directories
#
test -z "$_bindir" && _bindir="$_prefix/bin"
test -z "$_mandir" && _mandir="$_prefix/man"

#
# Check which engines ("frontends") are to be built
#
echo
echo "Engines:"
if test "$_build_scumm" = yes ; then
  echo "    SCUMM"
fi
if test "$_build_simon" = yes ; then
  echo "    Simon the Sorcerer"
fi
if test "$_build_sky" = yes ; then
  echo "    Beneath a Steel Sky"
fi
if test "$_build_sword1" = yes ; then
  echo_n "    Broken Sword I"
  if test "$_mpeg2" = yes ; then
	echo " (w/ mpeg2 cutscenes)"
  else
	echo "  (without mpeg2 cutscenes)"
  fi
fi
if test "$_build_sword2" = yes ; then
  echo_n "    Broken Sword II"
  if test "$_mpeg2" = yes ; then
	echo " (w/ mpeg2 cutscenes)"
  else
	echo " (without mpeg2 cutscenes)"
  fi
fi
if test "$_build_queen" = yes ; then
  echo "    Flight of the Amazon Queen"
fi
if test "$_build_saga" = yes ; then
  echo "    SAGA Engine"
fi
if test "$_build_kyra" = yes ; then
  echo "    Legend of Kyrandia"
fi
if test "$_build_awe" = yes ; then
  echo "    Another World"
fi

echo

echo_n "Backend... "
echo "$_backend"

#
# Backend related stuff
#
case $_backend in
  sdl)
    find_sdlconfig
    INCLUDES="$INCLUDES `$_sdlconfig --cflags`"
    LIBS="$LIBS `$_sdlconfig --libs`"
    MODULES="$MODULES backends/sdl"
    ;;
  x11)
    INCLUDES="$INCLUDES -I/usr/X11R6/include"
    LIBS="$LIBS -lpthread -lXext -lX11"
    LDFLAGS="$LDFLAGS -L/usr/X11R6/lib -L/usr/local/lib"
    OBJS="$OBJS backends/x11/x11.o"
    DEFINES="$DEFINES -DX11_BACKEND"
    MODULES="$MODULES backends/x11"
    MODULE_DIRS="$MODULE_DIRS backends/x11"
    ;;
  *)
    echo "support for $_backend backend not implemented in configure script yet"
    exit 1
  ;;
esac

echo
echo "Creating config.h"
cat > config.h << EOF
/* This file is automatically generated by configure */
/* DO NOT EDIT MANUALLY */

#ifndef CONFIG_H
#define CONFIG_H

$_def_endianness
$_def_align

$_def_linupy

/* Data types */
typedef unsigned $type_1_byte byte;
typedef unsigned int uint;
typedef unsigned $type_1_byte uint8;
typedef unsigned $type_2_byte uint16;
typedef unsigned $type_4_byte uint32;
typedef signed $type_1_byte int8;
typedef signed $type_2_byte int16;
typedef signed $type_4_byte int32;

/* Libs */
$_def_vorbis
$_def_flac
$_def_mad
$_def_alsa
$_def_zlib
$_def_mpeg2

#endif /* CONFIG_H */
EOF

echo "Creating config.mak"
cat > config.mak << EOF
# -------- Generated by configure -----------

CXX := $CXX
CXXFLAGS += $CXXFLAGS
LIBS += $LIBS
RANLIB := $_ranlib
INSTALL := $_install
BACKEND := $_backend
MODULES += $MODULES
MODULE_DIRS += $MODULE_DIRS
EXEEXT := $EXEEXT

PREFIX := $_prefix
BINDIR := $_bindir
MANDIR := $_mandir

$_mak_plugins
$_make_def_HAVE_GCC3
$_mak_scumm
$_mak_simon
$_mak_sky
$_mak_sword1
$_mak_sword2
$_mak_queen
$_mak_kyra
$_mak_saga

INCLUDES += $INCLUDES
OBJS += $OBJS
DEFINES += $DEFINES
LDFLAGS += $LDFLAGS
EOF

#
# Create a custom Makefile when building outside the source tree
# TODO: Add a better check than just looking for 'Makefile'
#
if test ! -f Makefile ; then
echo "Creating Makefile"

cat > Makefile << EOF
# -------- Generated by configure -----------
srcdir = $_srcdir
vpath %.cpp \$(srcdir)
vpath %.h \$(srcdir)
include \$(srcdir)/Makefile
EOF

fi