Mercurial > SDL_sound_CoreAudio
annotate configure.in @ 105:de42ca5599ac
Added DEBUG_CHATTER to the --enable-debug defines. (This will become a
separate option: --enable-debug-chatter if it proves to be a pain in
the ass.)
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 03 Oct 2001 18:17:47 +0000 |
parents | 6d9fdec2f708 |
children | 5e5adbe0f215 |
rev | line source |
---|---|
65 | 1 # Process this file with autoconf to produce a configure script. |
66
54e10585e0cf
Changed AC_INIT() to look for SDL_sound.c, not COPYING, since I'm keeping
Ryan C. Gordon <icculus@icculus.org>
parents:
65
diff
changeset
|
2 AC_INIT(SDL_sound.c) |
65 | 3 |
4 dnl --------------------------------------------------------------------- | |
5 dnl System/version info | |
6 dnl --------------------------------------------------------------------- | |
7 | |
8 # Making releases: | |
9 # MICRO_VERSION += 1; | |
10 # INTERFACE_AGE += 1; | |
11 # BINARY_AGE += 1; | |
12 # if any functions have been added, set INTERFACE_AGE to 0. | |
13 # if backwards compatibility has been broken, | |
14 # set BINARY_AGE and INTERFACE_AGE to 0. | |
15 | |
16 MAJOR_VERSION=0 | |
17 MINOR_VERSION=1 | |
18 MICRO_VERSION=2 | |
19 INTERFACE_AGE=0 | |
20 BINARY_AGE=0 | |
21 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION | |
22 | |
23 AC_SUBST(MAJOR_VERSION) | |
24 AC_SUBST(MINOR_VERSION) | |
25 AC_SUBST(MICRO_VERSION) | |
26 AC_SUBST(INTERFACE_AGE) | |
27 AC_SUBST(BINARY_AGE) | |
28 AC_SUBST(VERSION) | |
29 | |
30 # libtool versioning | |
31 LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION | |
32 LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE` | |
33 LT_REVISION=$INTERFACE_AGE | |
34 LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE` | |
35 | |
36 AC_SUBST(LT_RELEASE) | |
37 AC_SUBST(LT_CURRENT) | |
38 AC_SUBST(LT_REVISION) | |
39 AC_SUBST(LT_AGE) | |
40 | |
41 dnl Detect the canonical host and target build environment | |
42 AC_CANONICAL_HOST | |
43 AC_CANONICAL_TARGET | |
44 | |
45 dnl Setup for automake | |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
46 AM_CONFIG_HEADER(config.h) |
65 | 47 AM_INIT_AUTOMAKE(SDL_sound, $VERSION) |
48 | |
49 | |
50 dnl --------------------------------------------------------------------- | |
51 dnl Compilers and other tools | |
52 dnl --------------------------------------------------------------------- | |
53 | |
54 AC_PROG_CC | |
55 AC_PROG_INSTALL | |
56 AC_PROG_LN_S | |
57 AC_PROG_LIBTOOL | |
58 | |
59 | |
60 dnl --------------------------------------------------------------------- | |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
61 dnl Debug mode? |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
62 dnl --------------------------------------------------------------------- |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
63 |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
64 AC_ARG_ENABLE(debug, |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
65 [ --enable-debug enable debug mode [default=no]], |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
66 , enable_smpeg=no) |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
67 if test x$enable_debug = xyes; then |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
68 if test x$ac_cv_prog_cc_g = xyes; then |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
69 CFLAGS="-g -O0" |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
70 else |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
71 CFLAGS="-O0" |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
72 fi |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
73 AC_DEFINE(DEBUG) |
105
de42ca5599ac
Added DEBUG_CHATTER to the --enable-debug defines. (This will become a
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
74 AC_DEFINE(DEBUG_CHATTER) |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
75 else |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
76 AC_DEFINE(NDEBUG) |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
77 fi |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
78 |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
79 |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
80 dnl --------------------------------------------------------------------- |
65 | 81 dnl Checks for libraries. |
82 dnl --------------------------------------------------------------------- | |
83 | |
84 dnl Check for SDL | |
85 SDL_VERSION=1.2.0 | |
86 AM_PATH_SDL($SDL_VERSION, | |
87 :, | |
88 AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) | |
89 ) | |
90 CFLAGS="$CFLAGS $SDL_CFLAGS" | |
91 LIBS="$LIBS $SDL_LIBS" | |
92 | |
93 dnl Check for voc decoder inclusion... | |
94 AC_ARG_ENABLE(voc, | |
95 [ --enable-voc enable VOC decoding [default=yes]], | |
96 , enable_voc=yes) | |
97 if test x$enable_voc = xyes; then | |
98 AC_DEFINE(SOUND_SUPPORTS_VOC) | |
99 fi | |
100 | |
101 | |
102 dnl Check for wav decoder inclusion... | |
103 AC_ARG_ENABLE(wav, | |
104 [ --enable-wav enable WAV decoding [default=yes]], | |
105 , enable_wav=yes) | |
106 if test x$enable_wav = xyes; then | |
107 AC_DEFINE(SOUND_SUPPORTS_WAV) | |
108 fi | |
109 | |
110 | |
111 dnl Check for raw decoder inclusion... | |
112 AC_ARG_ENABLE(raw, | |
113 [ --enable-raw enable raw audio "decoding" [default=yes]], | |
114 , enable_raw=yes) | |
115 if test x$enable_raw = xyes; then | |
116 AC_DEFINE(SOUND_SUPPORTS_RAW) | |
117 fi | |
118 | |
119 | |
120 dnl Check for aiff decoder inclusion... | |
121 AC_ARG_ENABLE(aiff, | |
122 [ --enable-aiff enable AIFF decoding [default=yes]], | |
123 , enable_aiff=yes) | |
124 if test x$enable_aiff = xyes; then | |
125 AC_DEFINE(SOUND_SUPPORTS_AIFF) | |
126 fi | |
127 | |
128 | |
85 | 129 dnl Check for shn decoder inclusion... |
130 AC_ARG_ENABLE(shn, | |
105
de42ca5599ac
Added DEBUG_CHATTER to the --enable-debug defines. (This will become a
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
131 [ --enable-shn enable SHN decoding [default=yes]], |
de42ca5599ac
Added DEBUG_CHATTER to the --enable-debug defines. (This will become a
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
132 , enable_shn=yes) |
85 | 133 if test x$enable_shn = xyes; then |
134 AC_DEFINE(SOUND_SUPPORTS_SHN) | |
135 fi | |
136 | |
137 | |
65 | 138 dnl Check for libmikmod |
139 AC_ARG_ENABLE(mikmod, | |
140 [ --enable-mikmod enable MOD decoding via mikmod [default=yes]], | |
141 , enable_mikmod=yes) | |
142 if test x$enable_mikmod = xyes; then | |
143 AM_PATH_LIBMIKMOD | |
144 if test "x$no_libmikmod" = "x" ; then | |
145 CFLAGS="$CFLAGS $LIBMIKMOD_CFLAGS" | |
146 LIBS="$LIBS $LIBMIKMOD_LIBS" | |
147 LDADD="$LDADD $LIBMIKMOD_LDADD" | |
148 AC_DEFINE(SOUND_SUPPORTS_MOD) | |
149 fi | |
150 fi | |
151 | |
152 dnl Check for vorbis | |
153 AC_ARG_ENABLE(vorbis, | |
154 [ --enable-vorbis enable OGG music via vorbis [default=yes]], | |
155 , enable_vorbis=yes) | |
156 if test x$enable_vorbis = xyes; then | |
157 AM_PATH_VORBIS | |
158 if test "x$no_vorbis" = "x" ; then | |
159 CFLAGS="$CFLAGS $VORBIS_CFLAGS" | |
160 LIBS="$LIBS $VORBIS_LIBS $VORBISFILE_LIBS $VORBISENC_LIBS" | |
161 AC_DEFINE(SOUND_SUPPORTS_OGG) | |
162 fi | |
163 fi | |
164 | |
165 dnl Check for SMPEG | |
166 AC_ARG_ENABLE(smpeg, | |
167 [ --enable-smpeg enable MP3 music via smpeg [default=yes]], | |
168 , enable_smpeg=yes) | |
169 if test x$enable_smpeg = xyes; then | |
170 SMPEG_VERSION=0.4.3 | |
171 AM_PATH_SMPEG($SMPEG_VERSION, , no_smpeg=yes) | |
172 if test "x$no_smpeg" = "x" ; then | |
173 CFLAGS="$CFLAGS $SMPEG_CFLAGS" | |
174 LIBS="$LIBS $SMPEG_LIBS" | |
175 AC_DEFINE(SOUND_SUPPORTS_MP3) | |
176 fi | |
177 fi | |
178 | |
179 | |
180 | |
181 # Checks for header files. | |
182 AC_HEADER_STDC | |
183 AC_CHECK_HEADERS([stdlib.h string.h]) | |
184 | |
185 # Checks for typedefs, structures, and compiler characteristics. | |
186 AC_C_CONST | |
187 AC_TYPE_SIZE_T | |
188 | |
189 # Checks for library functions. | |
74
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
190 |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
191 # This is only in the bleeding edge autoconf distro... |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
192 #AC_FUNC_MALLOC |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
193 |
65 | 194 AC_FUNC_MEMCMP |
195 AC_CHECK_FUNCS([memset strrchr]) | |
196 | |
197 | |
198 AC_OUTPUT([ | |
199 Makefile | |
200 decoders/Makefile | |
201 test/Makefile | |
202 ]) |