1 dnl Process this file with autoconf to produce a configure script. -*-m4-*-
3 AC_INIT(libcelt/arch.h)
5 AM_CONFIG_HEADER([config.h])
11 CELT_VERSION=$CELT_MAJOR_VERSION.$CELT_MINOR_VERSION.$CELT_MICRO_VERSION$CELT_EXTRA_VERSION
18 AC_SUBST(CELT_LT_CURRENT)
19 AC_SUBST(CELT_LT_REVISION)
21 AC_SUBST(LIBCELT_SUFFIX)
27 AC_SUBST(CELT_VERSION)
29 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
41 AC_DEFINE([CELT_BUILD], [], [This is a build of CELT])
43 AC_MSG_CHECKING(for C99 variable-size arrays)
48 [has_var_arrays=yes;AC_DEFINE([VAR_ARRAYS], [], [Use C99 variable-size arrays])
52 AC_MSG_RESULT($has_var_arrays)
54 AC_CHECK_HEADERS([alloca.h getopt.h])
55 AC_MSG_CHECKING(for alloca)
56 AC_TRY_COMPILE( [#include <alloca.h>], [
58 int *array = alloca(foo);
62 if test x$has_var_arrays = "xno" ; then
63 AC_DEFINE([USE_ALLOCA], [], [Make use of alloca])
68 AC_MSG_RESULT($has_alloca)
70 AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
72 AS_IF([test "x$with_ogg" != xno],
73 [XIPH_PATH_OGG([tools="tools"], [tools=""])],
79 # Check for getopt_long; if not found, use included source.
80 AC_CHECK_FUNCS([getopt_long],,
81 [# FreeBSD has a gnugetopt library.
82 AC_CHECK_LIB([gnugetopt],[getopt_long],
83 [AC_DEFINE([HAVE_GETOPT_LONG])],
84 [# Use the GNU replacement.
86 AC_LIBOBJ(getopt1)])])
88 AC_CHECK_LIB(winmm, main)
90 AC_DEFINE_UNQUOTED(CELT_VERSION, "${CELT_VERSION}", [Complete version string])
91 AC_DEFINE_UNQUOTED(CELT_MAJOR_VERSION, ${CELT_MAJOR_VERSION}, [Version major])
92 AC_DEFINE_UNQUOTED(CELT_MINOR_VERSION, ${CELT_MINOR_VERSION}, [Version minor])
93 AC_DEFINE_UNQUOTED(CELT_MICRO_VERSION, ${CELT_MICRO_VERSION}, [Version micro])
94 AC_DEFINE_UNQUOTED(CELT_EXTRA_VERSION, "${CELT_EXTRA_VERSION}", [Version extra])
98 #i[[3456]]86 | x86_64 | powerpc64 | powerpc32 | ia64)
99 # has_float_approx=yes
103 ac_enable_fixed="no";
104 AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point compile as fixed-point],
105 [if test "$enableval" = yes; then
106 ac_enable_fixed="yes";
107 AC_DEFINE([FIXED_POINT], , [Compile as fixed-point])
109 AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
111 AC_DEFINE([FLOATING_POINT], , [Compile as floating-point]))
113 ac_enable_fixed_debug="no"
114 AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug debug fixed-point implementation],
115 [if test "$enableval" = yes; then
116 ac_enable_fixed_debug="yes"
117 AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])
120 ac_enable_experimental_postfilter="no"
121 AC_ARG_ENABLE(experimental-postfilter, [ --enable-experimental-postfilter Enable this for testing only if you know what you're doing ],
122 [if test "$enableval" = yes; then
123 ac_enable_experimental_postfilter="yes"
124 AC_DEFINE([ENABLE_POSTFILTER], , [Postfilter])
127 float_approx=$has_float_approx
128 AC_ARG_ENABLE(float-approx, [ --enable-float-approx enable fast approximations for floating point],
129 [ if test "$enableval" = yes; then
130 AC_WARN([Floating point approximations are not supported on all platforms.])
134 fi], [ float_approx=$has_float_approx ])
136 if test "x${float_approx}" = "xyes"; then
137 AC_DEFINE([FLOAT_APPROX], , [Float approximations])
140 ac_enable_static_modes="no"
141 AC_ARG_ENABLE(static-modes, [ --enable-static-modes use pre-computed codec configurations],
142 [if test "$enableval" = yes; then
143 ac_enable_static_modes="yes"
144 AC_DEFINE([STATIC_MODES], , [Static modes])
147 ac_enable_assertions="no"
148 AC_ARG_ENABLE(assertions, [ --enable-assertions enable additional software error checking],
149 [if test "$enableval" = yes; then
150 ac_enable_assertions="yes"
151 AC_DEFINE([ENABLE_ASSERTIONS], , [Assertions])
154 saved_CFLAGS="$CFLAGS"
155 CFLAGS="$CFLAGS -fvisibility=hidden"
156 AC_MSG_CHECKING([if ${CXX} supports -fvisibility=hidden])
157 AC_COMPILE_IFELSE([char foo;],
158 [ AC_MSG_RESULT([yes])
159 SYMBOL_VISIBILITY="-fvisibility=hidden" ],
161 CFLAGS="$saved_CFLAGS $SYMBOL_VISIBILITY"
162 AC_SUBST(SYMBOL_VISIBILITY)
164 if test $ac_cv_c_compiler_gnu = yes ; then
165 CFLAGS="$CFLAGS -W -Wstrict-prototypes -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wno-parentheses -Wno-unused-parameter -Wno-sign-compare"
168 AC_CHECK_FUNCS([lrintf])
169 AC_CHECK_FUNCS([lrint])
171 AC_CHECK_SIZEOF(short)
173 AC_CHECK_SIZEOF(long)
174 AC_CHECK_SIZEOF(long long)
176 if test x$has_char16 = "xyes" ; then
178 $ac_cv_sizeof_short) SIZE16="short";;
179 $ac_cv_sizeof_int) SIZE16="int";;
183 $ac_cv_sizeof_short) SIZE16="short";;
184 $ac_cv_sizeof_int) SIZE16="int";;
188 if test x$has_char16 = "xyes" ; then
190 $ac_cv_sizeof_int) SIZE32="int";;
191 $ac_cv_sizeof_long) SIZE32="long";;
192 $ac_cv_sizeof_short) SIZE32="short";;
196 $ac_cv_sizeof_int) SIZE32="int";;
197 $ac_cv_sizeof_long) SIZE32="long";;
198 $ac_cv_sizeof_short) SIZE32="short";;
205 AC_OUTPUT([Makefile libcelt/Makefile tests/Makefile
206 celt.pc tools/Makefile libcelt.spec ])
209 ------------------------------------------------------------------------
210 $PACKAGE $VERSION: Automatic configuration OK.
214 C99 var arrays: ................ ${has_var_arrays}
215 C99 lrintf: .................... ${ac_cv_func_lrintf}
216 Alloca: ........................ ${has_alloca}
218 General configuration:
220 Fast float approximations: ..... ${float_approx}
221 Fixed point support: ........... ${ac_enable_fixed}
222 Fixed point debugging: ......... ${ac_enable_fixed_debug}
223 Static modes: .................. ${ac_enable_static_modes}
224 Assertion checking: ............ ${ac_enable_assertions}
225 ------------------------------------------------------------------------
228 if test "x$tools" = "x"; then
230 echo "You don't seem to have the development package for libogg (libogg-devel) available. Only the library will be built (no encoder/decoder executable)"
231 echo "You can download libogg from http://www.vorbis.com/download.psp"
234 echo "Type \"make; make install\" to compile and install";
235 echo "Type \"make check\" to run the test suite";