1 dnl Process this file with autoconf to produce a configure script.
3 dnl AC_INIT(src/) # old autoconf
5 AC_CONFIG_SRCDIR([src/])
7 AC_ARG_ENABLE(checkmem,
8 [ --enable-checkmem turn on ccmalloc debugging], CHECKMEM=true)
10 [ --enable-debug turn on debugging], DEBUG=true)
11 AC_ARG_ENABLE(warnings,
12 [ --enable-warnings turn on compiler warnings], ENABLE_WARNINGS=true)
13 AC_ARG_ENABLE(optimizations,
14 [ --enable-optimizations turn on compiler optimizations (recommended for avi2swf)], OPTIMIZE=true)
16 [ --disable-lame don't compile any L.A.M.E. mp3 encoding code in], DISABLE_LAME=true)
19 VERSION=2004-09-02-2157
21 # ------------------------------------------------------------------
23 if test "x${srcdir}" != "x."; then
24 echo "--srcdir is not supported"
28 WARNINGS="-Wparentheses -Wimplicit -Wreturn-type"
29 if test "x$ENABLE_WARNINGS" '!=' "x";then
30 WARNINGS="-Wall -Wno-unused -Wno-format -Wno-redundant-decls"
33 if test "x$CHECKMEM" '!=' "x";then
36 if test "x$DEBUG" '!=' "x";then
37 CFLAGS="$WARNINGS -g $CFLAGS"
38 CXXFLAGS="$WARNINGS -g $CXXFLAGS"
39 else if test "x$OPTIMIZE" '!=' "x"; then
40 CFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CFLAGS"
41 CXXFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CXXFLAGS"
43 CFLAGS="$WARNINGS -O -fomit-frame-pointer $CFLAGS"
44 CXXFLAGS="$WARNINGS -O -fomit-frame-pointer $CXXFLAGS"
48 #if test "x$OLDGCC" '!=' "x";then
49 # #CFLAGS="$CFLAGS --std=c89 -ansi -pendantic"
50 # #CXXFLAGS="$CXXFLAGS --std=c89 -ansi -pendantic"
51 # CFLAGS="$CFLAGS -ansi -pendantic"
52 # CXXFLAGS="$CXXFLAGS -ansi -pendantic"
55 export PACKAGE VERSION CFLAGS CXXFLAGS
57 dnl Checks for programs.
63 CFLAGS="$CFLAGS -fno-rtti"
64 CXXFLAGS="$CXXFLAGS -fno-rtti"
67 dnl Checks for programs.
71 if test "x$CHECKMEM" '!=' "x";then
87 AC_CHECK_PROGS(UNCOMPRESS, gzip uncompress compress, )
89 dnl Checks for system services
95 if test "x${MINGW}" != "xyes"; then
97 AC_DEFINE_UNQUOTED(O_BINARY, 0)
105 # The following tries to make use of includes and libraries in
106 # /usr/local, too. Notice: A -I/usr/local/include might break
107 # things (MingW, cross-compiling etc.) in the same way as -I/usr/include,
108 # especially on systems which link /usr/local to /usr, so it has yet
109 # to be seen how useful this is.
110 if test -d /usr/local/lib; then
111 LDFLAGS="$LDFLAGS -L/usr/local/lib"
113 if test -d /usr/local/include; then
114 # Leave that alone. It's causing trouble e.g. with gcc 3.2 on gentoo.
115 # CPPFLAGS="$CPPFLAGS -I/usr/local/include"
118 if test "$prefix" != "NONE" -a "$prefix" != "/usr/local" -a "$prefix" != "/usr/local/"; then
119 # if the user has a special prefix (like /opt), there might also be $prefix/lib
120 # and $prefix/include, which should be included in our search paths for libraries
122 LDFLAGS="$LDFLAGS -L${libdir}"
123 CPPFLAGS="$CPPFLAGS -I${includedir}"
124 # TODO- test whether gcc still works after this
127 # this must be done after (I believe) AC_PROG_MAKE_SET
128 if test "x$DEBUG" '!=' "x";then
129 STRIP="@echo debug enabled, not stripping "
134 dnl Checks for libraries.
135 AC_CHECK_LIB(m, sin,,
136 echo "Error: Math library not found.";
139 AC_CHECK_LIB(z, deflate,, ZLIBMISSING=true)
140 AC_CHECK_LIB(jpeg, jpeg_write_raw_data,, JPEGLIBMISSING=true)
141 AC_CHECK_LIB(t1, T1_LoadFont,, T1LIBMISSING=true)
144 AC_SUBST(WORDS_BIGENDIAN)
145 RFX_CHECK_SYSTEM_BACKTICKS
146 AC_SUBST(SYSTEM_BACKTICKS)
150 dnl Checks for header files.
151 AC_CONFIG_HEADER(config.h)
154 AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.h assert.h signal.h pthread.h sys/stat.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h time.h)
156 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
157 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
161 AC_SUBST(HAVE_UNISTD_H)
164 dnl Checks for typedefs, structures, and compiler characteristics.
170 AC_CHECK_TYPE(boolean,int) #needed for jpeglib
171 dnl AC_CHECK_TYPE(bool,char)
172 dnl AC_CHECK_TYPE(uchar,unsigned char)
173 dnl AC_CHECK_TYPE(schar,signed char)
174 dnl AC_CHECK_TYPE(word,unsigned short int)
175 dnl AC_CHECK_TYPE(sword,unsigned short int)
176 dnl AC_CHECK_TYPE(uint,unsigned long int)
178 dnl Checks for library functions.
179 AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand bcopy bzero time)
181 # ------------------------------------------------------------------
187 # ------------------------------------------------------------------
191 if test "x${DISABLE_LAME}" = "xtrue"; then
192 echo "*" Disabling lame support...
194 # old lame code at lib/lame
195 if test -f lib/lame/Makefile.in; then
196 lame_objects="lame/psymodel.o lame/fft.o lame/newmdct.o lame/quantize.o lame/takehiro.o lame/reservoir.o lame/quantize_pvt.o lame/vbrquantize.o lame/encoder.o lame/id3tag.o lame/version.o lame/tables.o lame/util.o lame/bitstream.o lame/set_get.o lame/VbrTag.o lame/lame.o"
197 lame_makefile="lib/lame/Makefile"
198 CPPFLAGS="$CPPFLAGS -Ilame"
199 AC_DEFINE_UNQUOTED(HAVE_LAME, 1)
201 if test -d /usr/include/lame; then
202 CPPFLAGS="$CPPFLAGS -I /usr/include/lame"
204 if test -d /usr/local/include/lame; then
205 CPPFLAGS="$CPPFLAGS -I /usr/local/include/lame"
208 AC_CHECK_LIB(mp3lame, lame_init,, NO_LIBMP3LAME=1)
209 AC_CHECK_HEADERS(lame.h)
210 if test "x$NO_LIBMP3LAME" "!=" "x1" -a "x$ac_cv_header_lame_h" "!=" "x";then
211 AC_DEFINE_UNQUOTED(HAVE_LAME, 1)
215 AC_SUBST(lame_objects)
217 # ------------------------------------------------------------------
221 # ------------------------------------------------------------------
223 if test "x${UNCOMPRESS}" = "xgzip"; then
224 AC_DEFINE_UNQUOTED(USE_GZIP, 1)
228 # ------------------------------------------------------------------
232 if test "x$PYTHON_OK" '!=' "xyes";then
233 echo all install uninstall clean: > lib/python/Makefile
234 # fail silently- the most users won't have any need for the
235 # python interface anyway
237 pythonrfxswf="lib/python/Makefile"
240 # ------------------------------------------------------------------
242 AC_MSG_CHECKING([for missing libraries])
244 if test "x$ZLIBMISSING" = "xtrue";then
245 MISSINGLIBS="${MISSINGLIBS} zlib"
248 if test "x$JPEGLIBMISSING" = "xtrue";then
249 MISSINGLIBS="${MISSINGLIBS} jpeglib"
251 DISABLEJPEG2SWF=true;
253 if test "x$T1LIBMISSING" = "xtrue";then
254 MISSINGLIBS="${MISSINGLIBS} t1lib"
257 if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then
259 DISABLEJPEG2SWF=true;
260 MISSINGLIBS="${MISSINGLIBS} jpeglib.h"
262 if test "x$HAVE_FREETYPE" != "x1"; then
264 MISSINGLIBS="${MISSINGLIBS} freetype"
266 if test "x${ac_cv_header_t1lib_h}" != "xyes"; then
268 MISSINGLIBS="${MISSINGLIBS} t1lib.h"
270 if test "x${ac_cv_header_zlib_h}" != "xyes"; then
272 MISSINGLIBS="${MISSINGLIBS} zlib.h"
274 if test "x${AVIFILE}" != "xtrue"; then
275 MISSINGLIBS="${MISSINGLIBS} avifile"
278 AC_MSG_RESULT(${MISSINGLIBS})
280 # ------------------------------------------------------------------
282 if test "x${MISSINGLIBS}" '!=' "x"; then
283 echo "***************************************************"
284 echo "* The following headers/libraries are missing: " ${MISSINGLIBS}
287 avi2swf="avi2swf/Makefile"
288 if test "x${AVIFILE}" != "xtrue"; then
289 echo "* Disabling avi2swf tool..."
290 echo all install uninstall clean: > avi2swf/Makefile
294 pdf2swf_makefile="pdf2swf/Makefile pdf2swf/xpdf/Makefile"
295 if test "x${DISABLEPDF2SWF}" = "xtrue"; then
296 echo "* Disabling pdf2swf tool..."
297 rm -f pdf2swf/Makefile
298 echo all install uninstall clean: > pdf2swf/Makefile
302 if test "x${ZLIBMISSING}" = "xtrue"; then
304 echo "* Warning! Without zlib, you will not be able to read"
305 echo "* or write compressed Flash MX files!"
308 JPEG2SWF='jpeg2swf$(E)'
309 if test "x${DISABLEJPEG2SWF}" = "xtrue"; then
310 echo "* Disabling jpeg2swf tool..."
316 PNG2SWF='png2swf$(E)'
317 if test "x${DISABLEPNG2SWF}" = "xtrue"; then
318 echo "* Disabling png2swf tool..."
324 if test "x${MISSINGLIBS}" '!=' "x"; then
325 echo "***************************************************"
328 # ------------------------------------------------------------------
330 if test -f "release.in"; then release_in="./release"; fi
331 FILES="$release_in Makefile.common ${avi2swf} Makefile lib/Makefile lib/action/Makefile src/Makefile ${pdf2swf_makefile} swfs/Makefile ${pythonrfxswf} ${lame_makefile}"
333 dnl AC_OUTPUT(${FILES}) old autoconf
334 AC_CONFIG_FILES([${FILES}])