1 dnl Process this file with autoconf to produce a configure script
3 dnl ------------------------------------------------
4 dnl Initialization and Versioning
5 dnl ------------------------------------------------
8 AC_INIT([libvorbis],[1.2.2],[vorbis-dev@xiph.org])
10 AC_CONFIG_SRCDIR([lib/mdct.c])
12 AC_CANONICAL_TARGET([])
14 AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION)
15 AM_CONFIG_HEADER([config.h])
17 dnl Add parameters for aclocal
18 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
20 dnl Library versioning
21 dnl - library source changed -> increment REVISION
22 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
23 dnl - interfaces added -> increment AGE
24 dnl - interfaces removed -> AGE = 0
35 AC_SUBST(V_LIB_CURRENT)
36 AC_SUBST(V_LIB_REVISION)
38 AC_SUBST(VF_LIB_CURRENT)
39 AC_SUBST(VF_LIB_REVISION)
41 AC_SUBST(VE_LIB_CURRENT)
42 AC_SUBST(VE_LIB_REVISION)
45 dnl --------------------------------------------------
46 dnl Check for programs
47 dnl --------------------------------------------------
49 dnl save $CFLAGS since AC_PROG_CC likes to insert "-g -O2"
50 dnl if $CFLAGS is blank
62 dnl latex tools for the specification document
64 AC_HELP_STRING([--enable-docs], [build the documentation]))
66 if test "x$enable_docs" = xyes; then
67 AC_CHECK_PROGS([PDFLATEX], pdflatex, [/bin/false])
68 AC_CHECK_PROGS([HTLATEX], htlatex, [/bin/false])
69 if test "x$PDFLATEX" = x/bin/false || test "x$HTLATEX" = x/bin/false; then
71 AC_MSG_WARN([Documentation will not be built!])
75 AM_CONDITIONAL(BUILD_DOCS, [test "x$enable_docs" = xyes])
77 dnl --------------------------------------------------
78 dnl Set build flags based on environment
79 dnl --------------------------------------------------
81 dnl Set some target options
84 if test -z "$GCC"; then
87 dnl If we're on IRIX, we wanna use cc even if gcc
88 dnl is there (unless the user has overriden us)...
89 if test -z "$CC"; then
93 CFLAGS="-O2 -w -signed"
94 PROFILE="-p -g3 -O2 -signed" ;;
97 CFLAGS="-xO4 -fast -w -fsimple -native -xcg92"
98 PROFILE="-v -xpg -g -xO4 -fast -native -fsimple -xcg92 -Dsuncc" ;;
106 AC_MSG_CHECKING([GCC version])
107 GCC_VERSION=`$CC -dumpversion`
108 AC_MSG_RESULT([$GCC_VERSION])
111 DEBUG="-g -Wall -Wextra -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
112 CFLAGS="-O20 -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char"
113 # PROFILE="-Wall -Wextra -pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char -fno-inline -static"
114 PROFILE="-Wall -Wextra -pg -g -O20 -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char -fno-inline"
116 # glibc < 2.1.3 has a serious FP bug in the math inline header
117 # that will cripple Vorbis. Look to see if the magic FP stack
118 # clobber is missing in the mathinline header, thus indicating
121 AC_EGREP_CPP(log10.*fldlg2.*fxch,[
122 #define __LIBC_INTERNAL_MATH_INLINES 1
126 if test ${bad} = "maybe" ;then
127 AC_EGREP_CPP(log10.*fldlg2.*fxch.*st\([[0123456789]]*\),
129 #define __LIBC_INTERNAL_MATH_INLINES 1
134 if test ${bad} = "yes" ;then
136 AC_MSG_WARN([********************************************************])
137 AC_MSG_WARN([* The glibc headers on this machine have a serious bug *])
138 AC_MSG_WARN([* in /usr/include/bits/mathinline.h This bug affects *])
139 AC_MSG_WARN([* all floating point code, not just Ogg, built on this *])
140 AC_MSG_WARN([* machine. Upgrading to glibc 2.1.3 is strongly urged *])
141 AC_MSG_WARN([* to correct the problem. Note that upgrading glibc *])
142 AC_MSG_WARN([* will not fix any previously built programs; this is *])
143 AC_MSG_WARN([* a compile-time time bug. *])
144 AC_MSG_WARN([* To work around the problem for this build of Ogg, *])
145 AC_MSG_WARN([* autoconf is disabling all math inlining. This will *])
146 AC_MSG_WARN([* hurt Ogg performace but is necessary for an Ogg that *])
147 AC_MSG_WARN([* will actually work. Once glibc is upgraded, rerun *])
148 AC_MSG_WARN([* configure and make to build with inlining. *])
149 AC_MSG_WARN([********************************************************])
152 CFLAGS=${OPT}" -D__NO_MATH_INLINES"
153 PROFILE=${PROFILE}" -D__NO_MATH_INLINES"
156 DEBUG="-g -Wall -Wextra -D_REENTRANT -D__NO_MATH_INLINES"
157 CFLAGS="-O3 -Wall -Wextra -ffast-math -mfused-madd -mcpu=750 -D_REENTRANT"
158 PROFILE="-pg -g -O3 -ffast-math -mfused-madd -mcpu=750 -D_REENTRANT";;
160 DEBUG="-g -Wall -Wextra -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
161 CFLAGS="-O20 -Wall -Wextra -ffast-math -D_REENTRANT -fsigned-char"
162 PROFILE="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char";;
165 AC_MSG_CHECKING([if gcc supports -mv8])
167 CFLAGS="$CFLAGS -mv8"
168 AC_TRY_COMPILE(, [return 0;], [
173 DEBUG="-g -Wall -Wextra -D__NO_MATH_INLINES -fsigned-char $sparc_cpu"
174 CFLAGS="-O20 -Wall -Wextra -ffast-math -D__NO_MATH_INLINES -fsigned-char $sparc_cpu"
175 PROFILE="-pg -g -O20 -D__NO_MATH_INLINES -fsigned-char $sparc_cpu" ;;
177 DEBUG="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -O0 -fsigned-char"
178 CFLAGS="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -O4 -ffast-math -fsigned-char"
179 PROFILE="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -pg -O4 -ffast-math -fsigned-char";;
181 # Use -W instead of -Wextra because gcc on OS/2 is an old version.
182 DEBUG="-g -Wall -W -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
183 CFLAGS="-O20 -Wall -W -ffast-math -D_REENTRANT -fsigned-char"
184 PROFILE="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char";;
186 DEBUG="-g -Wall -Wextra -D__NO_MATH_INLINES -fsigned-char"
187 CFLAGS="-O20 -Wall -Wextra -D__NO_MATH_INLINES -fsigned-char"
188 PROFILE="-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char" ;;
191 AC_ADD_CFLAGS([-Wdeclaration-after-statement])
193 CFLAGS="$CFLAGS $cflags_save"
195 dnl --------------------------------------------------
196 dnl Check for headers
197 dnl --------------------------------------------------
199 AC_CHECK_HEADER(memory.h,CFLAGS="$CFLAGS -DUSE_MEMORY_H",:)
201 dnl --------------------------------------------------
202 dnl Check for typedefs, structures, etc
203 dnl --------------------------------------------------
207 dnl --------------------------------------------------
208 dnl Check for libraries
209 dnl --------------------------------------------------
211 AC_CHECK_LIB(m, cos, VORBIS_LIBS="-lm", VORBIS_LIBS="")
212 AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :)
217 if test "x$PKG_CONFIG" != "x"
219 PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no)
221 if test "x$HAVE_OGG" = "xno"
223 dnl fall back to the old school test
224 XIPH_PATH_OGG(, AC_MSG_ERROR(must have Ogg installed!))
226 LIBS="$OGG_LIBS $VORBIS_LIBS"
227 AC_CHECK_FUNC(oggpack_writealign, , AC_MSG_ERROR(Ogg >= 1.0 required !))
231 dnl --------------------------------------------------
232 dnl Check for library functions
233 dnl --------------------------------------------------
238 dnl --------------------------------------------------
240 dnl --------------------------------------------------
242 AC_SUBST(VORBIS_LIBS)
245 AC_SUBST(pthread_lib)
247 dnl The following line causes the libtool distributed with the source
248 dnl to be replaced if the build system has a more recent version.
249 AC_SUBST(LIBTOOL_DEPS)
257 lib/books/coupled/Makefile
258 lib/books/uncoupled/Makefile
259 lib/books/floor/Makefile
260 doc/Makefile doc/vorbisfile/Makefile doc/vorbisenc/Makefile
261 include/Makefile include/vorbis/Makefile
269 vorbis-uninstalled.pc
270 vorbisenc-uninstalled.pc
271 vorbisfile-uninstalled.pc