Mercurial > SDL_sound_CoreAudio
annotate configure.in @ 167:82acaa7107c2
Fixed Sound_DecodeAll(), and made Sound_FreeSample() a little more robust.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 26 Nov 2001 04:33:31 +0000 |
parents | 3ccce5bb41c0 |
children | 8df5aff6ce12 |
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 | |
132
68d62a7fe33b
Upped version to 0.1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
110
diff
changeset
|
18 MICRO_VERSION=3 |
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 | |
129 | |
85 | 130 dnl Check for shn decoder inclusion... |
131 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
|
132 [ --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
|
133 , enable_shn=yes) |
85 | 134 if test x$enable_shn = xyes; then |
135 AC_DEFINE(SOUND_SUPPORTS_SHN) | |
136 fi | |
137 | |
110 | 138 dnl Check for the MIDI pipe decoder... |
139 AC_ARG_ENABLE(midi, | |
140 [ --enable-midi enable MIDI music via a pipe [default=no]], | |
141 , enable_midi=no) | |
142 if test x$enable_midi = xyes; then | |
143 AC_DEFINE(SOUND_SUPPORTS_MIDI) | |
144 fi | |
145 | |
157 | 146 dnl Check for libFLAC |
147 AC_ARG_ENABLE(flac, | |
148 [ --enable-flac enable FLAC decoding via libFLAC [default=yes]], | |
149 , enable_flac=yes) | |
150 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
|
151 AC_CHECK_HEADER(FLAC/stream_decoder.h, have_flac_hdr=yes) |
157 | 152 AC_CHECK_LIB(FLAC, FLAC__stream_decoder_new, have_flac_lib=yes) |
153 if test x$have_flac_hdr = xyes -a x$have_flac_lib = xyes; then | |
154 LIBS="$LIBS -lFLAC" | |
155 AC_DEFINE(SOUND_SUPPORTS_FLAC) | |
156 fi | |
157 fi | |
158 | |
110 | 159 dnl Check for SMPEG |
160 AC_ARG_ENABLE(smpeg, | |
161 [ --enable-smpeg enable MP3 music via smpeg [default=yes]], | |
162 , enable_smpeg=yes) | |
163 if test x$enable_smpeg = xyes; then | |
164 SMPEG_VERSION=0.4.3 | |
165 AM_PATH_SMPEG($SMPEG_VERSION, , no_smpeg=yes) | |
166 if test "x$no_smpeg" = "x" ; then | |
167 CFLAGS="$CFLAGS $SMPEG_CFLAGS" | |
168 LIBS="$LIBS $SMPEG_LIBS" | |
169 AC_DEFINE(SOUND_SUPPORTS_MP3) | |
170 fi | |
171 fi | |
85 | 172 |
65 | 173 dnl Check for libmikmod |
174 AC_ARG_ENABLE(mikmod, | |
175 [ --enable-mikmod enable MOD decoding via mikmod [default=yes]], | |
176 , enable_mikmod=yes) | |
177 if test x$enable_mikmod = xyes; then | |
178 AM_PATH_LIBMIKMOD | |
179 if test "x$no_libmikmod" = "x" ; then | |
180 CFLAGS="$CFLAGS $LIBMIKMOD_CFLAGS" | |
181 LIBS="$LIBS $LIBMIKMOD_LIBS" | |
182 LDADD="$LDADD $LIBMIKMOD_LDADD" | |
183 AC_DEFINE(SOUND_SUPPORTS_MOD) | |
184 fi | |
185 fi | |
186 | |
187 dnl Check for vorbis | |
188 AC_ARG_ENABLE(vorbis, | |
157 | 189 [ --enable-vorbis enable OGG decoding via vorbis [default=yes]], |
65 | 190 , enable_vorbis=yes) |
191 if test x$enable_vorbis = xyes; then | |
192 AM_PATH_VORBIS | |
193 if test "x$no_vorbis" = "x" ; then | |
194 CFLAGS="$CFLAGS $VORBIS_CFLAGS" | |
195 LIBS="$LIBS $VORBIS_LIBS $VORBISFILE_LIBS $VORBISENC_LIBS" | |
196 AC_DEFINE(SOUND_SUPPORTS_OGG) | |
197 fi | |
198 fi | |
199 | |
200 # Checks for header files. | |
201 AC_HEADER_STDC | |
202 AC_CHECK_HEADERS([stdlib.h string.h]) | |
203 | |
204 # Checks for typedefs, structures, and compiler characteristics. | |
205 AC_C_CONST | |
206 AC_TYPE_SIZE_T | |
207 | |
208 # Checks for library functions. | |
74
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
209 |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
210 # 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
|
211 #AC_FUNC_MALLOC |
2777e65f6478
Commented out AC_FUNC_MALLOC for now.
Ryan C. Gordon <icculus@icculus.org>
parents:
66
diff
changeset
|
212 |
65 | 213 AC_FUNC_MEMCMP |
214 AC_CHECK_FUNCS([memset strrchr]) | |
215 | |
216 | |
217 AC_OUTPUT([ | |
218 Makefile | |
219 decoders/Makefile | |
220 test/Makefile | |
221 ]) |