2012-02-01 10:55:50 +04:00
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
2013-05-27 00:53:43 +04:00
# components distributed under different licenses. The codec libraries
2012-02-01 10:55:50 +04:00
# 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.
#
# 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
2012-04-08 02:24:21 +04:00
AC_PREREQ(2.60)
2021-12-30 20:33:02 +03:00
AC_INIT([flac],[1.3.4],[flac-dev@xiph.org],[flac],[https://www.xiph.org/flac/])
2012-12-13 00:33:55 +04:00
AC_CONFIG_HEADERS([config.h])
2012-04-08 02:24:21 +04:00
AC_CONFIG_SRCDIR([src/flac/main.c])
AC_CONFIG_MACRO_DIR([m4])
2014-11-30 21:28:02 +03:00
AM_INIT_AUTOMAKE([foreign 1.10 -Wall tar-pax no-dist-gzip dist-xz subdir-objects])
2012-02-02 22:52:01 +04:00
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
2012-02-01 10:55:50 +04:00
2017-01-15 12:37:02 +03:00
AC_MSG_CHECKING([whether configure should try to set CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS])
AS_IF([test "x${CFLAGS+set}" = "xset" || test "x${CXXFLAGS+set}" = "xset" || test "x${CPPFLAGS+set}" = "xset" || test "x${LDFLAGS+set}" = "xset"],
[enable_flags_setting=no],
[enable_flags_setting=yes]
)
AC_MSG_RESULT([${enable_flags_setting}])
AX_CHECK_ENABLE_DEBUG
2012-12-04 00:04:56 +04:00
user_cflags=$CFLAGS
2012-04-06 02:39:37 +04:00
#Prefer whatever the current ISO standard is.
AC_PROG_CC_STDC
AC_USE_SYSTEM_EXTENSIONS
2012-06-03 01:00:56 +04:00
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
2012-04-08 02:24:21 +04:00
LT_INIT([win32-dll disable-static pic-only])
2012-02-01 10:55:50 +04:00
AM_PROG_AS
AC_PROG_CXX
2013-11-22 11:13:36 +04:00
XIPH_C_COMPILER_IS_CLANG
XIPH_GCC_REALLY_IS_GCC
2012-02-01 10:55:50 +04:00
AC_PROG_MAKE_SET
2014-03-21 11:27:37 +04:00
AC_PROG_MKDIR_P
2012-02-01 10:55:50 +04:00
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
2013-03-13 14:54:15 +04:00
AC_CHECK_SIZEOF(off_t,1) # Fake default value.
2012-12-13 00:33:55 +04:00
AC_CHECK_SIZEOF([void*])
2012-04-08 02:24:21 +04:00
AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
2012-02-01 10:55:50 +04:00
2012-12-13 00:33:55 +04:00
AC_LANG_PUSH([C++])
2012-02-01 10:55:50 +04:00
# c++ flavor first
AC_C_VARARRAYS
if test $ac_cv_c_vararrays = yes; then
AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.])
fi
2012-12-13 00:33:55 +04:00
AC_LANG_POP([C++])
2012-02-05 11:58:11 +04:00
2012-02-01 10:55:50 +04:00
# c flavor
AC_HEADER_STDC
2012-04-04 14:08:52 +04:00
AM_PROG_CC_C_O
2012-02-05 11:58:11 +04:00
AC_C_INLINE
AC_C_VARARRAYS
2012-04-06 02:39:37 +04:00
AC_C_TYPEOF
2012-02-01 10:55:50 +04:00
2016-01-26 05:35:10 +03:00
AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h])
2012-04-06 02:39:37 +04:00
2012-02-06 00:15:48 +04:00
XIPH_C_BSWAP32
2014-11-04 22:58:45 +03:00
XIPH_C_BSWAP16
2012-02-06 00:15:48 +04:00
2012-12-13 00:33:51 +04:00
ac_cv_c_big_endian=0
ac_cv_c_little_endian=0
AC_C_BIGENDIAN([ac_cv_c_big_endian=1], [ac_cv_c_little_endian=1], [
AC_MSG_WARN([[*****************************************************************]])
AC_MSG_WARN([[*** Not able to determine endian-ness of target processor. ]])
AC_MSG_WARN([[*** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in ]])
AC_MSG_WARN([[*** config.h may need to be hand editied. ]])
AC_MSG_WARN([[*****************************************************************]])
])
2012-02-05 11:58:11 +04:00
AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
[Target processor is big endian.])
AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
[Target processor is little endian.])
AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
[Target processor is big endian.])
2012-02-01 10:55:50 +04:00
2021-12-30 20:33:02 +03:00
AC_ARG_ENABLE(asm-optimizations, AS_HELP_STRING([--disable-asm-optimizations],[Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
2013-08-11 15:46:18 +04:00
dnl ' Terminate the damn single quote
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
2012-02-05 11:58:11 +04:00
# For the XMMS plugin.
2012-02-01 10:55:50 +04:00
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, [], [])
2013-08-11 15:46:18 +04:00
AC_CHECK_SIZEOF(void*,1)
asm_optimisation=no
2012-02-01 10:55:50 +04:00
case "$host_cpu" in
2015-01-10 01:37:37 +03:00
amd64|x86_64)
2015-03-11 12:51:42 +03:00
case "$host" in
*gnux32)
# x32 user space and 64 bit kernel.
cpu_x86_64=true
AC_DEFINE(FLAC__CPU_X86_64)
AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64])
asm_optimisation=$asm_opt
;;
*)
if test $ac_cv_sizeof_voidp = 4 ; then
# This must be a 32 bit user space running on 64 bit kernel so treat
# this as ia32.
cpu_ia32=true
AC_DEFINE(FLAC__CPU_IA32)
AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
else
# x86_64 user space and kernel.
cpu_x86_64=true
AC_DEFINE(FLAC__CPU_X86_64)
AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64])
fi
asm_optimisation=$asm_opt
;;
esac
2013-08-11 15:46:18 +04:00
;;
2012-02-01 10:55:50 +04:00
i*86)
cpu_ia32=true
AC_DEFINE(FLAC__CPU_IA32)
AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
2013-08-11 15:46:18 +04:00
asm_optimisation=$asm_opt
2012-02-01 10:55:50 +04:00
;;
2018-07-08 07:56:31 +03:00
powerpc64|powerpc64le)
cpu_ppc64=true
cpu_ppc=true
2020-02-10 01:04:08 +03:00
AC_DEFINE(FLAC__CPU_PPC)
2018-07-08 07:56:31 +03:00
AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
AC_DEFINE(FLAC__CPU_PPC64)
AH_TEMPLATE(FLAC__CPU_PPC64, [define if building for PowerPC64])
asm_optimisation=$asm_opt
;;
powerpc|powerpcle)
2012-02-01 10:55:50 +04:00
cpu_ppc=true
2020-02-10 01:04:08 +03:00
AC_DEFINE(FLAC__CPU_PPC)
2012-02-01 10:55:50 +04:00
AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
2013-08-11 15:46:18 +04:00
asm_optimisation=$asm_opt
2012-02-01 10:55:50 +04:00
;;
sparc)
cpu_sparc=true
AC_DEFINE(FLAC__CPU_SPARC)
AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
2013-08-11 15:46:18 +04:00
asm_optimisation=$asm_opt
2012-02-01 10:55:50 +04:00
;;
esac
2014-06-15 14:29:34 +04:00
AM_CONDITIONAL(FLAC__CPU_X86_64, test "x$cpu_x86_64" = xtrue)
2012-02-01 10:55:50 +04:00
AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
2018-07-08 07:56:31 +03:00
AM_CONDITIONAL(FLaC__CPU_PPC64, test "x$cpu_ppc64" = xtrue)
2012-02-01 10:55:50 +04:00
AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
2015-02-24 22:40:53 +03:00
if test "x$ac_cv_header_x86intrin_h" = xyes; then
AC_DEFINE([FLAC__HAS_X86INTRIN], 1, [Set to 1 if <x86intrin.h> is available.])
2016-06-20 13:29:59 +03:00
else
AC_DEFINE([FLAC__HAS_X86INTRIN], 0)
2015-02-24 22:40:53 +03:00
fi
2013-09-15 03:42:29 +04:00
2018-07-09 05:38:47 +03:00
if test x"$cpu_ppc64" = xtrue ; then
AC_C_ATTRIBUTE([target("cpu=power8")],
[have_cpu_power8=yes],
[have_cpu_power8=no])
if test x"$have_cpu_power8" = xyes ; then
AC_DEFINE(FLAC__HAS_TARGET_POWER8)
AH_TEMPLATE(FLAC__HAS_TARGET_POWER8, [define if compiler has __attribute__((target("cpu=power8"))) support])
fi
AC_C_ATTRIBUTE([target("cpu=power9")],
[have_cpu_power9=yes],
[have_cpu_power9=no])
if test x"$have_cpu_power9" = xyes ; then
AC_DEFINE(FLAC__HAS_TARGET_POWER9)
AH_TEMPLATE(FLAC__HAS_TARGET_POWER9, [define if compiler has __attribute__((target("cpu=power9"))) support])
fi
fi
2012-02-01 10:55:50 +04:00
case "$host" in
i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
*-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
*-*-darwin*) OBJ_FORMAT=macho ;;
2012-02-05 09:29:43 +04:00
*emx*) OBJ_FORMAT=aout ;;
2017-01-13 17:51:06 +03:00
*djgpp) OBJ_FORMAT=coff ;;
2012-02-01 10:55:50 +04:00
*) OBJ_FORMAT=elf ;;
esac
AC_SUBST(OBJ_FORMAT)
2013-04-01 12:57:13 +04:00
os_is_windows=no
2012-02-01 10:55:50 +04:00
case "$host" in
2017-02-09 06:42:42 +03:00
*mingw*)
2013-04-01 23:27:07 +04:00
CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS"
2013-04-01 12:57:13 +04:00
os_is_windows=yes
2012-02-01 10:55:50 +04:00
;;
esac
2013-07-21 09:28:51 +04:00
2013-04-01 12:57:13 +04:00
AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes)
2012-02-01 10:55:50 +04:00
case "$host" in
2017-01-10 00:19:01 +03:00
*-linux-*)
2012-02-01 10:55:50 +04:00
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)
2013-09-25 17:26:49 +04:00
if test "x$cpu_ia32" = xtrue || test "x$cpu_x86_64" = xtrue ; then
2012-02-01 10:55:50 +04:00
AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
fi
2017-01-15 12:37:02 +03:00
AM_CONDITIONAL([DEBUG], [test "x${ax_enable_debug}" = "xyes" || test "x${ax_enable_debug}" = "xinfo"])
2012-02-01 10:55:50 +04:00
AC_ARG_ENABLE(sse,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-sse],[Disable passing of -msse2 to the compiler]),
2012-02-01 10:55:50 +04:00
[case "${enableval}" in
2014-03-15 09:47:49 +04:00
yes) sse_os=yes ;;
no) sse_os=no ;;
2012-02-01 10:55:50 +04:00
*) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
2014-03-15 09:47:49 +04:00
esac],[sse_os=yes])
2012-02-01 10:55:50 +04:00
AC_ARG_ENABLE(altivec,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-altivec],[Disable Altivec optimizations]),
2012-02-01 10:55:50 +04:00
[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
2018-07-08 07:55:03 +03:00
AC_ARG_ENABLE(vsx,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-vsx],[Disable VSX optimizations]),
2018-07-08 07:55:03 +03:00
[case "${enableval}" in
yes) use_vsx=true ;;
no) use_vsx=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-vsx) ;;
esac],[use_vsx=true])
AM_CONDITIONAL(FLaC__USE_VSX, test "x$use_vsx" = xtrue)
if test "x$use_vsx" = xtrue ; then
AC_DEFINE(FLAC__USE_VSX)
AH_TEMPLATE(FLAC__USE_VSX, [define to enable use of VSX instructions])
fi
2016-01-25 09:09:50 +03:00
AC_ARG_ENABLE(avx,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-avx],[Disable AVX, AVX2 optimizations]),
2016-01-25 09:09:50 +03:00
[case "${enableval}" in
yes) use_avx=true ;;
no) use_avx=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-avx) ;;
esac],[use_avx=true])
AM_CONDITIONAL(FLaC__USE_AVX, test "x$use_avx" = xtrue)
if test "x$use_avx" = xtrue ; then
AC_DEFINE(FLAC__USE_AVX)
AH_TEMPLATE(FLAC__USE_AVX, [define to enable use of AVX instructions])
fi
2012-02-01 10:55:50 +04:00
AC_ARG_ENABLE(thorough-tests,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-thorough-tests],[Disable thorough (long) testing, do only basic tests]),
2012-02-01 10:55:50 +04:00
[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,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--enable-exhaustive-tests],[Enable exhaustive testing (VERY long)]),
2012-02-01 10:55:50 +04:00
[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)
2014-04-08 14:48:13 +04:00
AC_ARG_ENABLE(werror,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--enable-werror],[Enable -Werror in all Makefiles]))
2013-03-13 11:58:16 +04:00
2019-11-20 00:28:22 +03:00
AC_ARG_ENABLE([stack-smash-protection],
[AS_HELP_STRING([--disable-stack-smash-protection],[Disable GNU GCC stack smash protection])],,
[AS_IF([test "$ac_cv_c_compiler_gnu" = "yes" && test "$os_is_windows" = "no"],
[enable_stack_smash_protection=yes],[enable_stack_smash_protection=no])])
2012-02-01 10:55:50 +04:00
2016-01-04 03:29:03 +03:00
AC_ARG_ENABLE(64-bit-words,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--enable-64-bit-words],[Set FLAC__BYTES_PER_WORD to 8 (4 is the default)]))
2016-01-04 03:29:03 +03:00
if test "x$enable_64_bit_words" = xyes ; then
AC_DEFINE_UNQUOTED([ENABLE_64_BIT_WORDS],1,[Set FLAC__BYTES_PER_WORD to 8 (4 is the default)])
else
AC_DEFINE_UNQUOTED([ENABLE_64_BIT_WORDS],0)
fi
AC_SUBST(ENABLE_64_BIT_WORDS)
2012-02-01 10:55:50 +04:00
AC_ARG_ENABLE(valgrind-testing,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--enable-valgrind-testing],[Run all tests inside Valgrind]),
2012-02-01 10:55:50 +04:00
[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)
AC_ARG_ENABLE(doxygen-docs,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-doxygen-docs],[Disable API documentation building via Doxygen]),
2012-02-01 10:55:50 +04:00
[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")
AC_ARG_ENABLE(local-xmms-plugin,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--enable-local-xmms-plugin],[Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
2012-02-01 10:55:50 +04:00
[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)
AC_ARG_ENABLE(xmms-plugin,
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-xmms-plugin],[Do not build XMMS plugin]),
2012-02-01 10:55:50 +04:00
[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
AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
dnl build FLAC++ or not
AC_ARG_ENABLE([cpplibs],
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-cpplibs],[Do not build libFLAC++]),
2012-02-01 10:55:50 +04:00
[case "${enableval}" in
yes) disable_cpplibs=false ;;
no) disable_cpplibs=true ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
esac], [disable_cpplibs=false])
AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
2019-11-17 08:15:51 +03:00
AC_ARG_ENABLE([oss-fuzzers],
[AS_HELP_STRING([--enable-oss-fuzzers],
[Whether to generate the fuzzers for OSS-Fuzz (Clang only)])],
[have_oss_fuzzers=yes], [have_oss_fuzzers=no])
if test "x$have_oss_fuzzers" = "xyes"; then
if test "x$xiph_cv_c_compiler_clang" = "xyes" ; then
AM_CONDITIONAL([USE_OSSFUZZERS], [test "x$have_oss_fuzzers" = "xyes"])
if test "x$LIB_FUZZING_ENGINE" = "x" ; then
# Only set this if it is empty.
LIB_FUZZING_ENGINE=-fsanitize=fuzzer
fi
else
AM_CONDITIONAL([USE_OSSFUZZERS], [test "false" = "true"])
# Disable fuzzer if the compiler is not Clang.
AC_MSG_WARN([*** Ozz-Fuzz is disabled because that requres the Clang compiler.])
have_oss_fuzzers="no (compiler is GCC)"
fi
else
AM_CONDITIONAL([USE_OSSFUZZERS], [test "false" = "true"])
fi
AM_CONDITIONAL([USE_OSSFUZZ_FLAG], [test "x$LIB_FUZZING_ENGINE" = "x-fsanitize=fuzzer"])
AM_CONDITIONAL([USE_OSSFUZZ_STATIC], [test -f "$LIB_FUZZING_ENGINE"])
AC_SUBST([LIB_FUZZING_ENGINE])
2012-02-01 10:55:50 +04:00
dnl check for ogg library
AC_ARG_ENABLE([ogg],
2021-12-30 20:33:02 +03:00
AS_HELP_STRING([--disable-ogg],[Disable ogg support (default: test for libogg)]),
2012-02-01 10:55:50 +04:00
[ want_ogg=$enableval ], [ want_ogg=yes ] )
if test "x$want_ogg" != "xno"; then
2018-05-22 17:17:53 +03:00
XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development environment not installed - Ogg support will not be built]))
2012-02-01 10:55:50 +04:00
fi
2016-03-20 12:14:01 +03:00
FLAC__HAS_OGG=0
2012-02-01 10:55:50 +04:00
AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
if test "x$have_ogg" = xyes ; then
2016-03-20 12:14:01 +03:00
FLAC__HAS_OGG=1
2013-04-06 22:41:12 +04:00
OGG_PACKAGE="ogg"
2012-07-04 13:53:31 +04:00
else
2013-09-15 13:58:05 +04:00
have_ogg=no
2012-02-01 10:55:50 +04:00
fi
2016-03-20 12:14:01 +03:00
AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],$FLAC__HAS_OGG,[define if you have the ogg library])
AC_SUBST(FLAC__HAS_OGG)
2013-04-06 22:41:12 +04:00
AC_SUBST(OGG_PACKAGE)
2012-02-01 10:55:50 +04:00
2017-01-13 20:42:29 +03:00
dnl Build examples?
AC_ARG_ENABLE([examples],
AS_HELP_STRING([--disable-examples], [Don't build and install examples]))
AM_CONDITIONAL([EXAMPLES], [test "x$enable_examples" != "xno"])
2012-02-01 10:55:50 +04:00
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
2019-07-16 14:36:12 +03:00
AC_CHECK_LIB(rt, clock_gettime,
LIB_CLOCK_GETTIME=-lrt
2016-02-03 07:19:59 +03:00
AC_DEFINE(HAVE_CLOCK_GETTIME)
2019-07-16 14:36:12 +03:00
AH_TEMPLATE(HAVE_CLOCK_GETTIME, [define if you have clock_gettime]))
AC_SUBST(LIB_CLOCK_GETTIME)
2016-02-03 07:19:59 +03:00
2012-02-01 10:55:50 +04:00
# 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
2017-01-15 12:37:02 +03:00
dnl If debugging is disabled AND no CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS
dnl are provided, we can set defaults to our liking
AS_IF([test "x${ax_enable_debug}" = "xno" && test "x${enable_flags_setting}" = "xyes"], [
2017-02-06 11:54:13 +03:00
CFLAGS="-O3 -funroll-loops"
configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .
This patch does the following:
- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
unset.
- configure: the gcc version checks are, naturally, against non-
zero values, so, allow many compiler switches to be used with
clang without affecting real-gcc cases.
- configure: When setting CFLAGS="-O3 -funroll-loops", also set
CXXFLAGS="-O3". Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
'_FORTIFY_SOURCE requires compiling with optimization (-O)'
Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux. Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-08 20:25:55 +03:00
CXXFLAGS="-O3"
2017-01-15 12:37:02 +03:00
])
2012-02-01 10:55:50 +04:00
configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .
This patch does the following:
- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
unset.
- configure: the gcc version checks are, naturally, against non-
zero values, so, allow many compiler switches to be used with
clang without affecting real-gcc cases.
- configure: When setting CFLAGS="-O3 -funroll-loops", also set
CXXFLAGS="-O3". Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
'_FORTIFY_SOURCE requires compiling with optimization (-O)'
Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux. Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-08 20:25:55 +03:00
XIPH_GCC_VERSION dnl Sets a non-zero GCC_XXX_VERSION for gcc, not clang. checks below rely on that..
2012-02-01 10:55:50 +04:00
configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .
This patch does the following:
- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
unset.
- configure: the gcc version checks are, naturally, against non-
zero values, so, allow many compiler switches to be used with
clang without affecting real-gcc cases.
- configure: When setting CFLAGS="-O3 -funroll-loops", also set
CXXFLAGS="-O3". Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
'_FORTIFY_SOURCE requires compiling with optimization (-O)'
Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux. Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-08 20:25:55 +03:00
if test x$ac_cv_c_compiler_gnu = xyes -o x$xiph_cv_c_compiler_clang = xyes ; then
2016-01-26 04:33:01 +03:00
CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Wconversion
CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Woverloaded-virtual -Wmissing-declarations
2013-03-10 15:34:18 +04:00
2013-09-15 12:09:48 +04:00
XIPH_ADD_CFLAGS([-Wdeclaration-after-statement])
2017-01-15 12:37:02 +03:00
dnl some distributions (such as Gentoo) have _FORTIFY_SOURCE always
dnl enabled. We test for this situation in order to prevent polluting
dnl the console with messages of macro redefinitions.
2017-02-06 11:54:13 +03:00
AX_ADD_FORTIFY_SOURCE
2013-09-15 12:09:48 +04:00
AC_LANG_PUSH([C++])
XIPH_ADD_CXXFLAGS([-Weffc++])
AC_LANG_POP([C++])
configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .
This patch does the following:
- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
unset.
- configure: the gcc version checks are, naturally, against non-
zero values, so, allow many compiler switches to be used with
clang without affecting real-gcc cases.
- configure: When setting CFLAGS="-O3 -funroll-loops", also set
CXXFLAGS="-O3". Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
'_FORTIFY_SOURCE requires compiling with optimization (-O)'
Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux. Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-08 20:25:55 +03:00
if test x$xiph_cv_c_compiler_clang = xyes -a "$OBJ_FORMAT" = elf; then
CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
CFLAGS="$CFLAGS -fvisibility=hidden"
CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
elif test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then
2012-12-04 00:04:57 +04:00
CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
CFLAGS="$CFLAGS -fvisibility=hidden"
CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
2013-03-09 12:42:26 +04:00
fi
configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .
This patch does the following:
- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
unset.
- configure: the gcc version checks are, naturally, against non-
zero values, so, allow many compiler switches to be used with
clang without affecting real-gcc cases.
- configure: When setting CFLAGS="-O3 -funroll-loops", also set
CXXFLAGS="-O3". Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
'_FORTIFY_SOURCE requires compiling with optimization (-O)'
Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux. Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-08 20:25:55 +03:00
if test x$xiph_cv_c_compiler_clang = xyes -a "$OBJ_FORMAT" = macho; then
CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
CFLAGS="$CFLAGS -fvisibility=hidden"
CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
elif test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = macho; then
2014-05-25 13:42:53 +04:00
CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
CFLAGS="$CFLAGS -fvisibility=hidden"
CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
fi
2013-03-09 12:42:26 +04:00
if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then
XIPH_ADD_CFLAGS([-fgnu89-inline])
fi
2012-12-04 00:04:57 +04:00
2015-06-08 19:25:27 +03:00
if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x47" ; then
XIPH_ADD_CFLAGS([-fno-inline-small-functions])
fi
2014-07-27 15:18:08 +04:00
if test "x$asm_optimisation$sse_os" = "xyesyes" ; then
2013-09-15 14:34:40 +04:00
XIPH_ADD_CFLAGS([-msse2])
fi
2013-09-15 12:09:48 +04:00
fi
2012-02-01 10:55:50 +04:00
2015-04-11 08:05:30 +03:00
case "$host_os" in
"mingw32"|"os2")
if test "$host_cpu" = "i686"; then
XIPH_ADD_CFLAGS([-mstackrealign])
fi
esac
2014-04-08 14:48:13 +04:00
if test x$enable_werror = "xyes" ; then
XIPH_ADD_CFLAGS([-Werror])
AC_LANG_PUSH([C++])
XIPH_ADD_CXXFLAGS([-Werror])
AC_LANG_POP([C++])
fi
2013-03-13 11:58:16 +04:00
if test x$enable_stack_smash_protection = "xyes" ; then
XIPH_GCC_STACK_PROTECTOR
XIPH_GXX_STACK_PROTECTOR
fi
2013-03-09 01:55:37 +04:00
2019-10-08 15:10:20 +03:00
AH_VERBATIM([FLAC_API_EXPORTS],
[/* libtool defines DLL_EXPORT for windows dll builds,
but flac code relies on FLAC_API_EXPORTS instead. */
#ifdef DLL_EXPORT
#ifdef __cplusplus
# define FLACPP_API_EXPORTS
#else
# define FLAC_API_EXPORTS
#endif
#endif])
if test x$enable_shared != "xyes" ; then
dnl for correct FLAC_API
CPPFLAGS="-DFLAC__NO_DLL $CPPFLAGS"
fi
2012-02-01 10:55:50 +04:00
AC_CONFIG_FILES([ \
Makefile \
src/Makefile \
src/libFLAC/Makefile \
src/libFLAC/flac.pc \
src/libFLAC/ia32/Makefile \
src/libFLAC/include/Makefile \
src/libFLAC/include/private/Makefile \
src/libFLAC/include/protected/Makefile \
src/libFLAC++/Makefile \
src/libFLAC++/flac++.pc \
src/flac/Makefile \
src/metaflac/Makefile \
src/plugin_common/Makefile \
src/plugin_xmms/Makefile \
src/share/Makefile \
src/test_grabbag/Makefile \
src/test_grabbag/cuesheet/Makefile \
src/test_grabbag/picture/Makefile \
src/test_libs_common/Makefile \
src/test_libFLAC/Makefile \
src/test_libFLAC++/Makefile \
src/test_seeking/Makefile \
src/test_streams/Makefile \
src/utils/Makefile \
src/utils/flacdiff/Makefile \
src/utils/flactimer/Makefile \
examples/Makefile \
examples/c/Makefile \
examples/c/decode/Makefile \
examples/c/decode/file/Makefile \
examples/c/encode/Makefile \
examples/c/encode/file/Makefile \
examples/cpp/Makefile \
examples/cpp/decode/Makefile \
examples/cpp/decode/file/Makefile \
examples/cpp/encode/Makefile \
examples/cpp/encode/file/Makefile \
include/Makefile \
include/FLAC/Makefile \
include/FLAC++/Makefile \
include/share/Makefile \
include/share/grabbag/Makefile \
include/test_libs_common/Makefile \
2012-12-28 22:58:46 +04:00
doc/Doxyfile \
2012-02-01 10:55:50 +04:00
doc/Makefile \
doc/html/Makefile \
doc/html/images/Makefile \
m4/Makefile \
man/Makefile \
2013-09-16 13:55:11 +04:00
test/common.sh \
2012-02-01 10:55:50 +04:00
test/Makefile \
test/cuesheets/Makefile \
test/flac-to-flac-metadata-test-files/Makefile \
test/metaflac-test-files/Makefile \
test/pictures/Makefile \
build/Makefile \
2019-11-17 08:15:51 +03:00
microbench/Makefile \
oss-fuzz/Makefile
2012-02-01 10:55:50 +04:00
])
AC_OUTPUT
2012-02-26 15:41:44 +04:00
AC_MSG_RESULT([
-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
Configuration summary :
2019-11-17 08:15:51 +03:00
FLAC version : ............................ ${VERSION}
2012-02-26 15:41:44 +04:00
2019-11-17 08:15:51 +03:00
Host CPU : ................................ ${host_cpu}
Host Vendor : ............................. ${host_vendor}
Host OS : ................................. ${host_os}
2012-02-26 15:41:44 +04:00
])
2019-11-17 08:15:51 +03:00
echo " Compiler is GCC : ......................... ${ac_cv_c_compiler_gnu}"
2012-12-13 00:33:53 +04:00
if test x$ac_cv_c_compiler_gnu = xyes ; then
2019-11-17 08:15:51 +03:00
echo " GCC version : ............................. ${GCC_VERSION}"
2012-12-13 00:33:53 +04:00
fi
2019-11-17 08:15:51 +03:00
echo " Compiler is Clang : ....................... ${xiph_cv_c_compiler_clang}"
echo " SSE optimizations : ....................... ${sse_os}"
echo " Asm optimizations : ....................... ${asm_optimisation}"
echo " Ogg/FLAC support : ........................ ${have_ogg}"
2019-11-20 00:28:22 +03:00
echo " Stack protector : ........................ ${enable_stack_smash_protection}"
2019-11-17 08:15:51 +03:00
echo " Fuzzing support (Clang only) : ............ ${have_oss_fuzzers}"
2012-12-28 02:49:50 +04:00
echo