Mercurial > SDL_sound_CoreAudio
annotate configure.in @ 262:6fe6de401b63
mpglib support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 21 Feb 2002 19:46:55 +0000 |
parents | c54eae85f5f1 |
children | d7d55903124c |
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 | |
252
c54eae85f5f1
Upped version to 0.1.5.
Ryan C. Gordon <icculus@icculus.org>
parents:
229
diff
changeset
|
18 MICRO_VERSION=5 |
65 | 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]], |
152
1a0cf9aeee2a
Fix for SMPEG and debug settings.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
66 , enable_debug=no) |
100
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 |
110 | 73 CFLAGS="$CFLAGS -Werror" |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
74 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
|
75 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
|
76 else |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
77 AC_DEFINE(NDEBUG) |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
78 fi |
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 |
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
85
diff
changeset
|
81 dnl --------------------------------------------------------------------- |
65 | 82 dnl Checks for libraries. |
83 dnl --------------------------------------------------------------------- | |
84 | |
85 dnl Check for SDL | |
86 SDL_VERSION=1.2.0 | |
87 AM_PATH_SDL($SDL_VERSION, | |
88 :, | |
89 AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) | |
90 ) | |
91 CFLAGS="$CFLAGS $SDL_CFLAGS" | |
92 LIBS="$LIBS $SDL_LIBS" | |
93 | |
94 dnl Check for voc decoder inclusion... | |
95 AC_ARG_ENABLE(voc, | |
96 [ --enable-voc enable VOC decoding [default=yes]], | |
97 , enable_voc=yes) | |
98 if test x$enable_voc = xyes; then | |
99 AC_DEFINE(SOUND_SUPPORTS_VOC) | |
100 fi | |
101 | |
102 | |
103 dnl Check for wav decoder inclusion... | |
104 AC_ARG_ENABLE(wav, | |
105 [ --enable-wav enable WAV decoding [default=yes]], | |
106 , enable_wav=yes) | |
107 if test x$enable_wav = xyes; then | |
108 AC_DEFINE(SOUND_SUPPORTS_WAV) | |
109 fi | |
110 | |
111 | |
112 dnl Check for raw decoder inclusion... | |
113 AC_ARG_ENABLE(raw, | |
114 [ --enable-raw enable raw audio "decoding" [default=yes]], | |
115 , enable_raw=yes) | |
116 if test x$enable_raw = xyes; then | |
117 AC_DEFINE(SOUND_SUPPORTS_RAW) | |
118 fi | |
119 | |
120 | |
121 dnl Check for aiff decoder inclusion... | |
122 AC_ARG_ENABLE(aiff, | |
123 [ --enable-aiff enable AIFF decoding [default=yes]], | |
124 , enable_aiff=yes) | |
125 if test x$enable_aiff = xyes; then | |
126 AC_DEFINE(SOUND_SUPPORTS_AIFF) | |
127 fi | |
128 | |
216
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
129 dnl Check for au decoder inclusion |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
130 AC_ARG_ENABLE(au, |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
131 [ --enable-au enable AU decoding [default=yes]], |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
132 , enable_au=yes) |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
133 if test x$enable_au = xyes; then |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
134 AC_DEFINE(SOUND_SUPPORTS_AU) |
07d0939d40e7
Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents:
209
diff
changeset
|
135 fi |
65 | 136 |
85 | 137 dnl Check for shn decoder inclusion... |
138 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
|
139 [ --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
|
140 , enable_shn=yes) |
85 | 141 if test x$enable_shn = xyes; then |
142 AC_DEFINE(SOUND_SUPPORTS_SHN) | |
143 fi | |
144 | |
262 | 145 dnl Check for the MIDI decoder... |
110 | 146 AC_ARG_ENABLE(midi, |
201 | 147 [ --enable-midi enable software MIDI music [default=yes]], |
148 , enable_midi=yes) | |
110 | 149 if test x$enable_midi = xyes; then |
150 AC_DEFINE(SOUND_SUPPORTS_MIDI) | |
151 fi | |
152 | |
157 | 153 dnl Check for libFLAC |
154 AC_ARG_ENABLE(flac, | |
155 [ --enable-flac enable FLAC decoding via libFLAC [default=yes]], | |
156 , enable_flac=yes) | |
157 if test x$enable_flac = xyes; then | |
162
3ccce5bb41c0
Changed the header to look for regarding FLAC support from FLAC/all.h to
Ryan C. Gordon <icculus@icculus.org>
parents:
157
diff
changeset
|
158 AC_CHECK_HEADER(FLAC/stream_decoder.h, have_flac_hdr=yes) |
157 | 159 AC_CHECK_LIB(FLAC, FLAC__stream_decoder_new, have_flac_lib=yes) |
160 if test x$have_flac_hdr = xyes -a x$have_flac_lib = xyes; then | |
161 LIBS="$LIBS -lFLAC" | |
162 AC_DEFINE(SOUND_SUPPORTS_FLAC) | |
163 fi | |
164 fi | |
165 | |
110 | 166 dnl Check for SMPEG |
167 AC_ARG_ENABLE(smpeg, | |
262 | 168 [ --enable-smpeg enable MP3 decoding via smpeg [default=yes]], |
110 | 169 , enable_smpeg=yes) |
170 if test x$enable_smpeg = xyes; then | |
171 SMPEG_VERSION=0.4.3 | |
172 AM_PATH_SMPEG($SMPEG_VERSION, , no_smpeg=yes) | |
173 if test "x$no_smpeg" = "x" ; then | |
174 CFLAGS="$CFLAGS $SMPEG_CFLAGS" | |
175 LIBS="$LIBS $SMPEG_LIBS" | |
262 | 176 AC_DEFINE(SOUND_SUPPORTS_SMPEG) |
110 | 177 fi |
178 fi | |
85 | 179 |
262 | 180 dnl Check for the MIDI decoder... |
181 AC_ARG_ENABLE(mpglib, | |
182 [ --enable-mpglib enable MP3 decoding internally [default=yes]], | |
183 , enable_mpglib=yes) | |
184 if test x$enable_mpglib = xyes; then | |
185 AC_DEFINE(SOUND_SUPPORTS_MPGLIB) | |
186 fi | |
187 | |
188 | |
65 | 189 dnl Check for libmikmod |
190 AC_ARG_ENABLE(mikmod, | |
191 [ --enable-mikmod enable MOD decoding via mikmod [default=yes]], | |
192 , enable_mikmod=yes) | |
193 if test x$enable_mikmod = xyes; then | |
194 AM_PATH_LIBMIKMOD | |
195 if test "x$no_libmikmod" = "x" ; then | |
196 CFLAGS="$CFLAGS $LIBMIKMOD_CFLAGS" | |
197 LIBS="$LIBS $LIBMIKMOD_LIBS" | |
198 LDADD="$LDADD $LIBMIKMOD_LDADD" | |
209
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
199 AC_DEFINE(SOUND_SUPPORTS_MIKMOD) |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
200 fi |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
201 fi |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
202 |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
203 dnl Check for libmodplug |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
204 AC_ARG_ENABLE(modplug, |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
205 [ --enable-modplug enable MOD decoding via modplug [default=yes]], |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
206 , enable_modplug=yes) |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
207 if test x$enable_modplug = xyes; then |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
208 AC_CHECK_HEADER(modplug.h, have_modplug_hdr=yes) |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
209 AC_CHECK_LIB(modplug, ModPlug_Load, have_modplug_lib=yes) |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
210 if test x$have_modplug_hdr = xyes -a x$have_modplug_lib = xyes; then |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
211 LIBS="$LIBS -lmodplug" |
e63b9393f6ce
Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
212 AC_DEFINE(SOUND_SUPPORTS_MODPLUG) |
65 | 213 fi |
214 fi | |
215 | |
216 dnl Check for vorbis | |
217 AC_ARG_ENABLE(vorbis, | |
157 | 218 [ --enable-vorbis enable OGG decoding via vorbis [default=yes]], |
65 | 219 , enable_vorbis=yes) |
220 if test x$enable_vorbis = xyes; then | |
221 AM_PATH_VORBIS | |
222 if test "x$no_vorbis" = "x" ; then | |
223 CFLAGS="$CFLAGS $VORBIS_CFLAGS" | |
224 LIBS="$LIBS $VORBIS_LIBS $VORBISFILE_LIBS $VORBISENC_LIBS" | |
225 AC_DEFINE(SOUND_SUPPORTS_OGG) | |
226 fi | |
227 fi | |
228 | |
188
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
229 dnl Check for efence (!!! FIXME : This doesn't work.) |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
230 dnl AC_ARG_ENABLE(efence, |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
231 dnl [ --enable-efence enable ElectricFence usage [default=no]], |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
232 dnl , enable_efence=no) |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
233 dnl if test x$enable_efence = xyes; then |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
234 dnl LIBS="$LIBS /usr/lib/libefence.a" |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
235 dnl fi |
8df5aff6ce12
Added (broken and commented out) ElectricFence support.
Ryan C. Gordon <icculus@icculus.org>
parents:
162
diff
changeset
|
236 |
65 | 237 # Checks for header files. |
238 AC_HEADER_STDC | |
239 AC_CHECK_HEADERS([stdlib.h string.h]) | |
240 | |
241 # Checks for typedefs, structures, and compiler characteristics. | |
242 AC_C_CONST | |
243 AC_TYPE_SIZE_T | |
244 | |
245 # Checks for library functions. | |
74
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
246 |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
247 # 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
|
248 #AC_FUNC_MALLOC |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
249 |
65 | 250 AC_FUNC_MEMCMP |
251 AC_CHECK_FUNCS([memset strrchr]) | |
252 | |
201 | 253 dnl Add Makefile conditionals |
254 AM_CONDITIONAL(USE_TIMIDITY, test x$enable_midi = xyes) | |
262 | 255 AM_CONDITIONAL(USE_MPGLIB, test x$enable_mpglib = xyes) |
65 | 256 |
257 AC_OUTPUT([ | |
258 Makefile | |
259 decoders/Makefile | |
201 | 260 decoders/timidity/Makefile |
262 | 261 decoders/mpglib/Makefile |
229
fe5251b5624c
Changed test dir to playsound, and make playsound part of standard build and
Ryan C. Gordon <icculus@icculus.org>
parents:
216
diff
changeset
|
262 playsound/Makefile |
65 | 263 ]) |