comparison configure.ac @ 26:f45da03ca631

* Corrected --disable-vorbis in configure.ac * Added sound configuration * Added misc functions
author thib
date Sun, 01 Mar 2009 19:08:02 +0000
parents 2110e0cf64ac
children b76a8da75ec3
comparison
equal deleted inserted replaced
25:2110e0cf64ac 26:f45da03ca631
78 AC_CHECK_LIB(png, png_write_end) 78 AC_CHECK_LIB(png, png_write_end)
79 AC_CHECK_LIB(jpeg, jpeg_start_decompress) 79 AC_CHECK_LIB(jpeg, jpeg_start_decompress)
80 dnl ogg vobis 80 dnl ogg vobis
81 AC_ARG_WITH(vorbis, 81 AC_ARG_WITH(vorbis,
82 AS_HELP_STRING([--disable-vorbis], [Build with vorbis and ogg (default yes)])) 82 AS_HELP_STRING([--disable-vorbis], [Build with vorbis and ogg (default yes)]))
83 if test X$with_vorbis = X"yes"; then 83 if test X$with_vorbis != X"no"; then
84 AC_ARG_ENABLE(tremor, AS_HELP_STRING([--enable-tremor], 84 AC_ARG_ENABLE(tremor, AS_HELP_STRING([--enable-tremor],
85 [enable tremor (integer-only implementation of vorbisfile) (default no)])) 85 [enable tremor (integer-only implementation of vorbisfile) (default no)]))
86 AC_CHECK_LIB(ogg, ogg_stream_init) 86 AC_CHECK_LIB(ogg, ogg_stream_init)
87 AC_CHECK_LIB(vorbis, vorbis_book_decode,,,-logg) 87 AC_CHECK_LIB(vorbis, vorbis_book_decode,,,-logg)
88 if test X$enable_tremor = X"yes"; then 88 if test X$enable_tremor = X"yes"; then