blob: 4f13d7e6a3e2d5913c87bb5ce6ae90c38d87751a [file] [log] [blame]
Jean-Marc Valin63590892007-11-29 17:01:16 +11001dnl Process this file with autoconf to produce a configure script. -*-m4-*-
2
Jean-Marc Valin842b4452007-11-29 17:19:47 +11003AC_INIT(libcelt/arch.h)
Jean-Marc Valin63590892007-11-29 17:01:16 +11004
5AM_CONFIG_HEADER([config.h])
6
7CELT_MAJOR_VERSION=0
Jean-Marc Valin4213a722009-10-01 19:42:18 -04008CELT_MINOR_VERSION=7
9CELT_MICRO_VERSION=0
Jean-Marc Valin14f5e7c2008-02-21 23:59:17 +110010CELT_EXTRA_VERSION=
Jean-Marc Valin842b4452007-11-29 17:19:47 +110011CELT_VERSION=$CELT_MAJOR_VERSION.$CELT_MINOR_VERSION.$CELT_MICRO_VERSION$CELT_EXTRA_VERSION
Jean-Marc Valin63590892007-11-29 17:01:16 +110012
13CELT_LT_CURRENT=0
14CELT_LT_REVISION=0
15CELT_LT_AGE=0
16
17AC_SUBST(CELT_LT_CURRENT)
18AC_SUBST(CELT_LT_REVISION)
19AC_SUBST(CELT_LT_AGE)
20
21# For automake.
22VERSION=$CELT_VERSION
Jean-Marc Valin842b4452007-11-29 17:19:47 +110023PACKAGE=celt
Jean-Marc Valin63590892007-11-29 17:01:16 +110024
25AC_SUBST(CELT_VERSION)
26
27AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
28AM_MAINTAINER_MODE
29
30AC_CANONICAL_HOST
31AM_PROG_LIBTOOL
32
Jean-Marc Valineafbdd52009-04-27 19:35:09 -040033AC_PROG_CC_C99
Jean-Marc Valin63590892007-11-29 17:01:16 +110034AC_C_BIGENDIAN
35AC_C_CONST
36AC_C_INLINE
37AC_C_RESTRICT
38
Peter Kirk19f9dc92008-06-06 14:38:38 +020039AC_DEFINE([CELT_BUILD], [], [This is a build of CELT])
Jean-Marc Valin63590892007-11-29 17:01:16 +110040
41AC_MSG_CHECKING(for C99 variable-size arrays)
42AC_TRY_COMPILE( , [
43int foo=10;
44int array[foo];
45],
46[has_var_arrays=yes;AC_DEFINE([VAR_ARRAYS], [], [Use C99 variable-size arrays])
47],
48has_var_arrays=no
49)
50AC_MSG_RESULT($has_var_arrays)
51
Jean-Marc Valine6233122008-02-01 16:27:38 +110052AC_CHECK_HEADERS([alloca.h getopt.h])
Jean-Marc Valin63590892007-11-29 17:01:16 +110053AC_MSG_CHECKING(for alloca)
54AC_TRY_COMPILE( [#include <alloca.h>], [
55int foo=10;
56int *array = alloca(foo);
57],
58[
59has_alloca=yes;
60if test x$has_var_arrays = "xno" ; then
61AC_DEFINE([USE_ALLOCA], [], [Make use of alloca])
62fi
63],
64has_alloca=no
65)
66AC_MSG_RESULT($has_alloca)
67
Jean-Marc Valin63590892007-11-29 17:01:16 +110068AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
69
Gregory Maxwellc8e200b2009-03-11 13:13:19 -040070AS_IF([test "x$with_ogg" != xno],
71 [XIPH_PATH_OGG([tools="tools"], [tools=""])],
72 [tools=""])
Jean-Marc Valine6233122008-02-01 16:27:38 +110073AC_SUBST(tools)
Jean-Marc Valin63590892007-11-29 17:01:16 +110074
75AC_CHECK_LIB(m, sin)
76
77# Check for getopt_long; if not found, use included source.
78AC_CHECK_FUNCS([getopt_long],,
79[# FreeBSD has a gnugetopt library.
80 AC_CHECK_LIB([gnugetopt],[getopt_long],
81[AC_DEFINE([HAVE_GETOPT_LONG])],
82[# Use the GNU replacement.
83AC_LIBOBJ(getopt)
84AC_LIBOBJ(getopt1)])])
85
86AC_CHECK_LIB(winmm, main)
87
Jean-Marc Valin842b4452007-11-29 17:19:47 +110088AC_DEFINE_UNQUOTED(CELT_VERSION, "${CELT_VERSION}", [Complete version string])
89AC_DEFINE_UNQUOTED(CELT_MAJOR_VERSION, ${CELT_MAJOR_VERSION}, [Version major])
90AC_DEFINE_UNQUOTED(CELT_MINOR_VERSION, ${CELT_MINOR_VERSION}, [Version minor])
91AC_DEFINE_UNQUOTED(CELT_MICRO_VERSION, ${CELT_MICRO_VERSION}, [Version micro])
92AC_DEFINE_UNQUOTED(CELT_EXTRA_VERSION, "${CELT_EXTRA_VERSION}", [Version extra])
Jean-Marc Valin63590892007-11-29 17:01:16 +110093
Gregory Maxwell065bc152009-06-24 16:43:33 -040094has_float_approx=no
95#case "$host_cpu" in
Gregory Maxwella80958b2009-06-29 12:48:57 -040096#i[[3456]]86 | x86_64 | powerpc64 | powerpc32 | ia64)
Gregory Maxwell065bc152009-06-24 16:43:33 -040097# has_float_approx=yes
98# ;;
99#esac
100
101ac_enable_fixed="no";
102AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point compile as fixed-point],
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100103[if test "$enableval" = yes; then
Gregory Maxwell065bc152009-06-24 16:43:33 -0400104 ac_enable_fixed="yes";
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100105 AC_DEFINE([FIXED_POINT], , [Compile as fixed-point])
106 AC_DEFINE([DOUBLE_PRECISION], , [Compile as fixed-point])
Jean-Marc Valin980ad382008-03-12 11:47:19 +1100107 AC_DEFINE([MIXED_PRECISION], , [Compile as fixed-point])
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100108else
109 AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
110fi],
111AC_DEFINE([FLOATING_POINT], , [Compile as floating-point]))
112
Gregory Maxwell065bc152009-06-24 16:43:33 -0400113ac_enable_fixed_debug="no"
114AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug debug fixed-point implementation],
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100115[if test "$enableval" = yes; then
Gregory Maxwell065bc152009-06-24 16:43:33 -0400116 ac_enable_fixed_debug="yes"
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100117 AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])
118fi])
119
Gregory Maxwell065bc152009-06-24 16:43:33 -0400120float_approx=$has_float_approx
121AC_ARG_ENABLE(float-approx, [ --disable-float-approx do not use fast approximations for floating point],
122 [ if test "$enableval" = yes; then
123 AC_WARN([Floating point approximations are not supported on all platforms.])
124 float_approx=yes
125 else
126 float_approx=no
127 fi], [ float_approx=$has_float_approx ])
128
129if test "x${float_approx}" = "xyes"; then
130 AC_DEFINE([FLOAT_APPROX], , [Float approximations])
131fi
132
133ac_enable_static_modes="no"
134AC_ARG_ENABLE(static-modes, [ --enable-static-modes use pre-computed codec configurations],
Jean-Marc Valin980ad382008-03-12 11:47:19 +1100135[if test "$enableval" = yes; then
Gregory Maxwell065bc152009-06-24 16:43:33 -0400136 ac_enable_static_modes="yes"
Jean-Marc Valin980ad382008-03-12 11:47:19 +1100137 AC_DEFINE([STATIC_MODES], , [Static modes])
138fi])
139
Gregory Maxwell065bc152009-06-24 16:43:33 -0400140ac_enable_assertions="no"
141AC_ARG_ENABLE(assertions, [ --enable-assertions enable additional software error checking],
Jean-Marc Valin4ff068e2008-03-15 23:34:39 +1100142[if test "$enableval" = yes; then
Gregory Maxwell065bc152009-06-24 16:43:33 -0400143 ac_enable_assertions="yes"
Jean-Marc Valin4ff068e2008-03-15 23:34:39 +1100144 AC_DEFINE([ENABLE_ASSERTIONS], , [Assertions])
145fi])
146
Gregory Maxwell065bc152009-06-24 16:43:33 -0400147ac_enable_new_plc="no"
148AC_ARG_ENABLE(new-plc, [ --enable-new-plc enable the new loss concealment code],
Jean-Marc Valineafbdd52009-04-27 19:35:09 -0400149[if test "$enableval" = yes; then
Gregory Maxwell065bc152009-06-24 16:43:33 -0400150 ac_enable_new_plc="yes"
Jean-Marc Valineafbdd52009-04-27 19:35:09 -0400151 AC_DEFINE([NEW_PLC], , [Use new PLC code])
152fi])
153
Jean-Marc Valin4c9a0072008-12-23 09:53:36 -0500154saved_CFLAGS="$CFLAGS"
155CFLAGS="$CFLAGS -fvisibility=hidden"
156AC_MSG_CHECKING([if ${CXX} supports -fvisibility=hidden])
157AC_COMPILE_IFELSE([char foo;],
158 [ AC_MSG_RESULT([yes])
159 SYMBOL_VISIBILITY="-fvisibility=hidden" ],
160 AC_MSG_RESULT([no]))
161CFLAGS="$saved_CFLAGS $SYMBOL_VISIBILITY"
162AC_SUBST(SYMBOL_VISIBILITY)
163
Jean-Marc Valin679f5cc2008-03-13 17:39:55 +1100164if test $ac_cv_c_compiler_gnu = yes ; then
Jean-Marc Valin4c9a0072008-12-23 09:53:36 -0500165 CFLAGS="$CFLAGS -W -Wstrict-prototypes -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wno-parentheses -Wno-unused-parameter -Wno-sign-compare"
Jean-Marc Valin679f5cc2008-03-13 17:39:55 +1100166fi
Jean-Marc Valin49ca99e2008-02-25 14:05:10 +1100167
Jean-Marc Valind9b95652008-08-31 23:34:47 -0400168AC_C99_FUNC_LRINTF
169AC_C99_FUNC_LRINT
170
Jean-Marc Valin63590892007-11-29 17:01:16 +1100171AC_CHECK_SIZEOF(short)
172AC_CHECK_SIZEOF(int)
173AC_CHECK_SIZEOF(long)
174AC_CHECK_SIZEOF(long long)
175
176if test x$has_char16 = "xyes" ; then
177 case 1 in
178 $ac_cv_sizeof_short) SIZE16="short";;
179 $ac_cv_sizeof_int) SIZE16="int";;
180 esac
181else
182 case 2 in
183 $ac_cv_sizeof_short) SIZE16="short";;
184 $ac_cv_sizeof_int) SIZE16="int";;
185 esac
186fi
187
188if test x$has_char16 = "xyes" ; then
189 case 2 in
190 $ac_cv_sizeof_int) SIZE32="int";;
191 $ac_cv_sizeof_long) SIZE32="long";;
192 $ac_cv_sizeof_short) SIZE32="short";;
193 esac
194else
195 case 4 in
196 $ac_cv_sizeof_int) SIZE32="int";;
197 $ac_cv_sizeof_long) SIZE32="long";;
198 $ac_cv_sizeof_short) SIZE32="short";;
199 esac
200fi
201
202AC_SUBST(SIZE16)
203AC_SUBST(SIZE32)
204
Christopher Montgomery41d819d2009-01-13 13:39:53 -0500205AC_OUTPUT([Makefile libcelt/Makefile tests/Makefile
206 celt.pc tools/Makefile libcelt.spec ])
Jean-Marc Valin63590892007-11-29 17:01:16 +1100207
Gregory Maxwell065bc152009-06-24 16:43:33 -0400208AC_MSG_RESULT([
209------------------------------------------------------------------------
210 $PACKAGE $VERSION: Automatic configuration OK.
211
212 Compiler support:
213
214 C99 var arrays: ................ ${has_var_arrays}
215 C99 lrintf: .................... ${ac_cv_c99_lrintf}
216 Alloca: ........................ ${has_alloca}
217
218 General configuration:
219
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 New PLC: ....................... ${ac_enable_new_plc}
226------------------------------------------------------------------------
227])
228
Jean-Marc Valine6233122008-02-01 16:27:38 +1100229if test "x$tools" = "x"; then
Jean-Marc Valin63590892007-11-29 17:01:16 +1100230echo "**IMPORTANT**"
Gregory Maxwellc8e200b2009-03-11 13:13:19 -0400231echo "You don't seem to have the development package for libogg (libogg-devel) available. Only the library will be built (no encoder/decoder executable)"
Jean-Marc Valin63590892007-11-29 17:01:16 +1100232echo "You can download libogg from http://www.vorbis.com/download.psp"
233fi
234
235echo "Type \"make; make install\" to compile and install";
Gregory Maxwell065bc152009-06-24 16:43:33 -0400236echo "Type \"make check\" to run the test suite";