X-Git-Url: http://git.xiph.org/?p=flac.git;a=blobdiff_plain;f=configure.in;h=30ac4d62fc2baba33cb1deda5fc79fa7e8d920bc;hp=722699a816628617675eaccc27fd1253aaf2c07b;hb=6e94c90e606b9fcaff60bfb961dced8292075cb2;hpb=c8a7d357fda27e35302dbc770fd1cd679e9ff81a diff --git a/configure.in b/configure.in index 722699a8..30ac4d62 100644 --- a/configure.in +++ b/configure.in @@ -1,25 +1,29 @@ # FLAC - Free Lossless Audio Codec -# Copyright (C) 2001 Josh Coalson +# Copyright (C) 2001,2002,2003,2004,2005,2006 Josh Coalson # -# This program is part of FLAC; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under difference licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__ # instead of FLAC__ since autoconf triggers off 'AC_' in strings AC_INIT(src/flac/main.c) -AM_INIT_AUTOMAKE(flac, 1.0.1) +AM_INIT_AUTOMAKE(flac, 1.1.3) + +# Don't automagically regenerate autoconf/automake generated files unless +# explicitly requested. Eases autobuilding -mdz +AM_MAINTAINER_MODE # We need two libtools, one that builds both shared and static, and # one that builds only static. This is because the resulting libtool @@ -28,151 +32,320 @@ AM_PROG_LIBTOOL sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static chmod +x libtool-disable-static +AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") + +AM_PROG_AS +AC_PROG_CXX AC_PROG_MAKE_SET -AC_CANONICAL_HOST -case $host_cpu in - i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;; - powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;; - sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;; +AC_SYS_LARGEFILE +AC_FUNC_FSEEKO + +#@@@ new name is AC_CONFIG_HEADERS +AM_CONFIG_HEADER(config.h) + +AC_CHECK_TYPES(socklen_t, [], []) + +dnl check for getopt in standard library +dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) +AC_CHECK_FUNCS(getopt_long, [], []) + +case "$host_cpu" in + i*86) + cpu_ia32=true + AC_DEFINE(FLAC__CPU_IA32) + AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386]) + ;; + powerpc) + cpu_ppc=true + AC_DEFINE(FLAC__CPU_PPC) + AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC]) + ;; + sparc) + cpu_sparc=true + AC_DEFINE(FLAC__CPU_SPARC) + AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC]) + ;; esac -AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue) -AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue) -AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue) +AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue) +AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue) +AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue) case "$host" in - i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;; + i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;; + *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;; *) OBJ_FORMAT=elf ;; esac AC_SUBST(OBJ_FORMAT) +case "$host" in + *-pc-linux-gnu) + sys_linux=true + AC_DEFINE(FLAC__SYS_LINUX) + AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux]) + ;; + *-*-darwin*) + sys_darwin=true + AC_DEFINE(FLAC__SYS_DARWIN) + AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X]) + ;; +esac +AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue) +AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue) -if test x$cpu_ia32 = xtrue ; then +if test "x$cpu_ia32" = xtrue ; then AC_DEFINE(FLAC__ALIGN_MALLOC_DATA) +AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries]) fi -AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes) -AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno) -if test x$asm_opt = xno ; then +AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes) +AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno) +if test "x$asm_opt" = xno ; then AC_DEFINE(FLAC__NO_ASM) +AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code]) fi AC_ARG_ENABLE(debug, -[ --enable-debug Turn on debugging], +AC_HELP_STRING([--enable-debug], [Turn on debugging]), [case "${enableval}" in yes) debug=true ;; no) debug=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; esac],[debug=false]) -AM_CONDITIONAL(DEBUG, test x$debug = xtrue) +AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue) -AC_ARG_ENABLE(sse_os, -[ --sse-os Enable SSE support by asserting that the OS supports SSE instructions], +AC_ARG_ENABLE(sse, +AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]), [case "${enableval}" in yes) sse_os=true ;; no) sse_os=false ;; - *) AC_MSG_ERROR(bad value ${enableval} for --sse-os) ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;; esac],[sse_os=false]) -AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue) -if test x$sse_os = xtrue ; then +AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue) +if test "x$sse_os" = xtrue ; then AC_DEFINE(FLAC__SSE_OS) +AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions]) fi -AC_CHECK_LIB(ogg, ogg_stream_init, - [LIBS="$LIBS -logg"; have_ogg=yes], - [AC_MSG_WARN([*** Ogg development enviroment not installed - ogg support will not be built])]) -AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes]) -if test x$have_ogg = xyes ; then -AC_DEFINE(FLAC__HAS_OGG) +AC_ARG_ENABLE(3dnow, +AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]), +[case "${enableval}" in + yes) use_3dnow=true ;; + no) use_3dnow=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;; +esac],[use_3dnow=true]) +AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue) +if test "x$use_3dnow" = xtrue ; then +AC_DEFINE(FLAC__USE_3DNOW) +AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions]) fi -AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built])) -AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x) - -AC_CHECK_PROGS(NASM, nasm) -AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM") -if test -n "$NASM" ; then -AC_DEFINE(FLAC__HAS_NASM) +AC_ARG_ENABLE(altivec, +AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]), +[case "${enableval}" in + yes) use_altivec=true ;; + no) use_altivec=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;; +esac],[use_altivec=true]) +AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue) +if test "x$use_altivec" = xtrue ; then +AC_DEFINE(FLAC__USE_ALTIVEC) +AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions]) fi -dnl Check for type sizes - -AC_CHECK_SIZEOF(short) -AC_CHECK_SIZEOF(int) -AC_CHECK_SIZEOF(long) -AC_CHECK_SIZEOF(long long) +AC_ARG_ENABLE(thorough-tests, +AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]), +[case "${enableval}" in + yes) thorough_tests=true ;; + no) thorough_tests=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;; +esac],[thorough_tests=true]) +AC_ARG_ENABLE(exhaustive-tests, +AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]), +[case "${enableval}" in + yes) exhaustive_tests=true ;; + no) exhaustive_tests=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;; +esac],[exhaustive_tests=false]) +if test "x$thorough_tests" = xfalse ; then +FLAC__TEST_LEVEL=0 +elif test "x$exhaustive_tests" = xfalse ; then +FLAC__TEST_LEVEL=1 +else +FLAC__TEST_LEVEL=2 +fi +AC_SUBST(FLAC__TEST_LEVEL) -case 2 in - $ac_cv_sizeof_short) FLaC__SIZE16="short" ; FLaC__USIZE16="unsigned short";; - $ac_cv_sizeof_int) FLaC__SIZE16="int" ; FLaC__USIZE16="unsigned int";; -esac +AC_ARG_ENABLE(valgrind-testing, +AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]), +[case "${enableval}" in + yes) FLAC__TEST_WITH_VALGRIND=yes ;; + no) FLAC__TEST_WITH_VALGRIND=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;; +esac],[FLAC__TEST_WITH_VALGRIND=no]) +AC_SUBST(FLAC__TEST_WITH_VALGRIND) -case 4 in - $ac_cv_sizeof_short) FLaC__SIZE32="short" ; FLaC__USIZE32="unsigned short";; - $ac_cv_sizeof_int) FLaC__SIZE32="int" ; FLaC__USIZE32="unsigned int";; - $ac_cv_sizeof_long) FLaC__SIZE32="long" ; FLaC__USIZE32="unsigned long";; -esac +AC_ARG_ENABLE(doxygen-docs, +AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]), +[case "${enableval}" in + yes) enable_doxygen_docs=true ;; + no) enable_doxygen_docs=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;; +esac],[enable_doxygen_docs=true]) +if test "x$enable_doxygen_docs" != xfalse ; then + AC_CHECK_PROGS(DOXYGEN, doxygen) +fi +AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN") -case 8 in - $ac_cv_sizeof_int) FLaC__SIZE64="int" ; FLaC__USIZE64="unsigned int";; - $ac_cv_sizeof_long) FLaC__SIZE64="long" ; FLaC__USIZE64="unsigned long";; - $ac_cv_sizeof_long_long) FLaC__SIZE64="long long" ; FLaC__USIZE64="unsigned long long";; -esac +AC_ARG_ENABLE(local-xmms-plugin, +AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]), +[case "${enableval}" in + yes) install_xmms_plugin_locally=true ;; + no) install_xmms_plugin_locally=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;; +esac],[install_xmms_plugin_locally=false]) +AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue) -if test -z "$FLaC__SIZE16"; then - AC_MSG_ERROR(No 16 bit type found on this platform!) +AC_ARG_ENABLE(xmms-plugin, +AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]), +[case "${enableval}" in + yes) enable_xmms_plugin=true ;; + no) enable_xmms_plugin=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;; +esac],[enable_xmms_plugin=true]) +if test "x$enable_xmms_plugin" != xfalse ; then + AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built])) fi -if test -z "$FLaC__USIZE16"; then - AC_MSG_ERROR(No unsigned 16 bit type found on this platform!) +AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR") + +dnl check for ogg library +XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built])) +AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes]) +if test "x$have_ogg" = xyes ; then +AC_DEFINE(FLAC__HAS_OGG) +AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library]) fi -if test -z "$FLaC__SIZE32"; then - AC_MSG_ERROR(No 32 bit type found on this platform!) + +dnl check for i18n(internationalization); these are from libiconv/gettext +AM_ICONV +AM_LANGINFO_CODESET + +AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man) +AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN") +if test -n "$DOCBOOK_TO_MAN" ; then +AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN) +AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man]) fi -if test -z "$FLaC__USIZE32"; then - AC_MSG_ERROR(No unsigned 32 bit type found on this platform!) + +# only matters for x86 +AC_CHECK_PROGS(NASM, nasm) +AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM") +if test -n "$NASM" ; then +AC_DEFINE(FLAC__HAS_NASM) +AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler]) fi -if test -z "$FLaC__SIZE64"; then - AC_MSG_WARN(No 64 bit type found on this platform!) + +# only matters for PowerPC +AC_CHECK_PROGS(AS, as, as) +AC_CHECK_PROGS(GAS, gas, gas) + +test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas + +AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as") +AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas") +if test "$AS" = "as" ; then +AC_DEFINE(FLAC__HAS_AS) +AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler]) fi -if test -z "$FLaC__USIZE64"; then - AC_MSG_ERROR(No unsigned 64 bit type found on this platform!) +if test "$AS" = "gas" ; then +# funniest. macro. ever. +AC_DEFINE(FLAC__HAS_GAS) +AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler]) fi -AC_SUBST(FLaC__SIZE16) -AC_SUBST(FLaC__USIZE16) -AC_SUBST(FLaC__SIZE32) -AC_SUBST(FLaC__USIZE32) -AC_SUBST(FLaC__SIZE64) -AC_SUBST(FLaC__USIZE64) - -SAVE_CFLAGS="$CFLAGS" -CFLAGS='-I$(top_builddir) -I$(srcdir)/include -I $(top_srcdir)/include -Wall -W' -if test x$debug = xtrue; then - CFLAGS="$CFLAGS -g -O0 -DDEBUG" +OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include' +if test "x$debug" = xtrue; then + OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG" else - CFLAGS="$CFLAGS -O3 -DNDEBUG" - if test x$GCC = xyes; then - CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops -finline-functions -Winline -DFLaC__INLINE=__inline__" + OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG" + if test "x$GCC" = xyes; then + OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__" fi fi -CFLAGS="$CFLAGS $SAVE_CFLAGS" - -AC_OUTPUT( Makefile \ - src/Makefile \ - src/libFLAC/Makefile \ - src/libFLAC/ia32/Makefile \ - src/libFLAC/include/Makefile \ - src/libFLAC/include/private/Makefile \ - src/libFLAC/include/protected/Makefile \ - src/flac/Makefile \ - src/metaflac/Makefile \ - src/plugin_xmms/Makefile \ - src/test_streams/Makefile \ - src/test_unit/Makefile \ +CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS" +CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS" + +#@@@@@@ +AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no") +AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no") + +AC_CONFIG_FILES([ \ + Makefile \ + src/Makefile \ + src/libFLAC/Makefile \ + src/libFLAC/ia32/Makefile \ + src/libFLAC/ppc/Makefile \ + src/libFLAC/ppc/as/Makefile \ + src/libFLAC/ppc/gas/Makefile \ + src/libFLAC/include/Makefile \ + src/libFLAC/include/private/Makefile \ + src/libFLAC/include/protected/Makefile \ + src/libFLAC++/Makefile \ + src/libOggFLAC/Makefile \ + src/libOggFLAC/include/Makefile \ + src/libOggFLAC/include/private/Makefile \ + src/libOggFLAC/include/protected/Makefile \ + src/libOggFLAC++/Makefile \ + src/flac/Makefile \ + src/metaflac/Makefile \ + src/monkeys_audio_utilities/Makefile \ + src/monkeys_audio_utilities/flac_mac/Makefile \ + src/monkeys_audio_utilities/flac_ren/Makefile \ + src/plugin_common/Makefile \ + src/plugin_winamp2/Makefile \ + src/plugin_winamp2/include/Makefile \ + src/plugin_winamp2/include/winamp2/Makefile \ + src/plugin_xmms/Makefile \ + src/share/Makefile \ + src/share/getopt/Makefile \ + src/share/grabbag/Makefile \ + src/share/replaygain_analysis/Makefile \ + src/share/replaygain_synthesis/Makefile \ + src/share/replaygain_synthesis/include/Makefile \ + src/share/replaygain_synthesis/include/private/Makefile \ + src/share/utf8/Makefile \ + src/test_grabbag/Makefile \ + src/test_grabbag/cuesheet/Makefile \ + src/test_libs_common/Makefile \ + src/test_libFLAC/Makefile \ + src/test_libFLAC++/Makefile \ + src/test_libOggFLAC/Makefile \ + src/test_libOggFLAC++/Makefile \ + src/test_seeking/Makefile \ + src/test_streams/Makefile \ include/Makefile \ include/FLAC/Makefile \ - include/FLAC/ordinals.h \ + include/FLAC++/Makefile \ + include/OggFLAC/Makefile \ + include/OggFLAC++/Makefile \ + include/share/Makefile \ + include/share/grabbag/Makefile \ + include/test_libs_common/Makefile \ doc/Makefile \ - doc/images/Makefile \ - doc/ru/Makefile \ + doc/html/Makefile \ + doc/html/images/Makefile \ + doc/html/ru/Makefile \ man/Makefile \ - test/Makefile \ -) + test/Makefile \ + test/cuesheets/Makefile \ + test/flac-to-flac-metadata-test-files/Makefile \ + test/metaflac-test-files/Makefile \ + build/Makefile \ + obj/Makefile \ + obj/debug/Makefile \ + obj/debug/bin/Makefile \ + obj/debug/lib/Makefile \ + obj/release/Makefile \ + obj/release/bin/Makefile \ + obj/release/lib/Makefile \ + flac.pbproj/Makefile \ +]) +AC_OUTPUT