blob: f74bb1d693964f63162525597e966c84db91e779 [file] [log] [blame]
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +11001# FLAC - Free Lossless Audio Codec
2# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
3#
4# This file is part the FLAC project. FLAC is comprised of several
Ulrich Klauercd4ddab2013-05-26 22:53:43 +02005# components distributed under different licenses. The codec libraries
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +11006# are distributed under Xiph.Org's BSD-like license (see the file
7# COPYING.Xiph in this distribution). All other programs, libraries, and
8# plugins are distributed under the GPL (see COPYING.GPL). The documentation
9# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
10# FLAC distribution contains at the top the terms under which it may be
11# distributed.
12#
13# Since this particular file is relevant to all components of FLAC,
14# it may be distributed under the Xiph.Org license, which is the least
15# restrictive of those mentioned above. See the file COPYING.Xiph in this
16# distribution.
17
18# NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
19# instead of FLAC__ since autoconf triggers off 'AC_' in strings
20
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030021AC_PREREQ(2.60)
Erik de Castro Lopob1982fb2013-05-25 17:11:19 +100022AC_INIT([flac], [1.3.0], [flac-dev@xiph.org], [flac], [https://www.xiph.org/flac/])
Max Horn0b47ede2012-12-12 21:33:55 +010023AC_CONFIG_HEADERS([config.h])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030024AC_CONFIG_SRCDIR([src/flac/main.c])
25AC_CONFIG_MACRO_DIR([m4])
Max Horn0b47ede2012-12-12 21:33:55 +010026AM_INIT_AUTOMAKE([foreign 1.11 -Wall tar-pax no-dist-gzip dist-xz subdir-objects])
Erik de Castro Lopo886b9602012-02-03 05:52:01 +110027m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110028
Miroslav Lichvar18e01542012-12-03 21:04:56 +010029user_cflags=$CFLAGS
30
Cristian Rodríguezf0296252012-04-05 19:39:37 -030031#Prefer whatever the current ISO standard is.
32AC_PROG_CC_STDC
33AC_USE_SYSTEM_EXTENSIONS
Cristian Rodríguez63c874f2012-06-02 17:00:56 -040034m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030035LT_INIT([win32-dll disable-static pic-only])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110036AM_PROG_AS
37AC_PROG_CXX
Erik de Castro Lopoa6a4b6f2013-11-22 18:13:36 +110038XIPH_C_COMPILER_IS_CLANG
39XIPH_GCC_REALLY_IS_GCC
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110040AC_PROG_MAKE_SET
Erik de Castro Lopo95bc23a2014-03-21 18:27:37 +110041AC_PROG_MKDIR_P
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110042
43AC_SYS_LARGEFILE
44AC_FUNC_FSEEKO
45
Erik de Castro Lopo6497ce12013-03-13 21:54:15 +110046AC_CHECK_SIZEOF(off_t,1) # Fake default value.
Max Horn0b47ede2012-12-12 21:33:55 +010047AC_CHECK_SIZEOF([void*])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030048AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110049
Max Horn0b47ede2012-12-12 21:33:55 +010050AC_LANG_PUSH([C++])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110051# c++ flavor first
52AC_C_VARARRAYS
53if test $ac_cv_c_vararrays = yes; then
54 AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.])
55fi
Max Horn0b47ede2012-12-12 21:33:55 +010056AC_LANG_POP([C++])
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110057
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110058# c flavor
59AC_HEADER_STDC
Erik de Castro Lopoafedee12012-04-04 20:08:52 +100060AM_PROG_CC_C_O
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110061AC_C_INLINE
62AC_C_VARARRAYS
Cristian Rodríguezf0296252012-04-05 19:39:37 -030063AC_C_TYPEOF
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110064
Erik de Castro Lopod7e6d912014-03-21 17:45:18 +110065AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h termios.h x86intrin.h cpuid.h])
Dagobert Michelsen5999d812013-05-26 23:32:01 +020066
67AC_HEADER_TIOCGWINSZ
Cristian Rodríguezf0296252012-04-05 19:39:37 -030068
Erik de Castro Lopod7bfc772012-02-06 07:15:48 +110069XIPH_C_BSWAP32
70
Max Hornf20164e2012-12-12 21:33:51 +010071ac_cv_c_big_endian=0
72ac_cv_c_little_endian=0
73AC_C_BIGENDIAN([ac_cv_c_big_endian=1], [ac_cv_c_little_endian=1], [
74 AC_MSG_WARN([[*****************************************************************]])
75 AC_MSG_WARN([[*** Not able to determine endian-ness of target processor. ]])
76 AC_MSG_WARN([[*** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in ]])
77 AC_MSG_WARN([[*** config.h may need to be hand editied. ]])
78 AC_MSG_WARN([[*****************************************************************]])
79])
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110080AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
81 [Target processor is big endian.])
82AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
83 [Target processor is little endian.])
84AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
85 [Target processor is big endian.])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110086
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +100087AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
88dnl ' Terminate the damn single quote
89AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
90if test "x$asm_opt" = xno ; then
91AC_DEFINE(FLAC__NO_ASM)
92AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
93fi
94
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110095# For the XMMS plugin.
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110096AC_CHECK_TYPES(socklen_t, [], [])
97
98dnl check for getopt in standard library
99dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
100AC_CHECK_FUNCS(getopt_long, [], [])
101
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000102AC_CHECK_SIZEOF(void*,1)
103
104asm_optimisation=no
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100105case "$host_cpu" in
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000106 x86_64)
107 if test $ac_cv_sizeof_voidp = 4 ; then
Erik de Castro Lopob72540b2013-09-15 09:42:29 +1000108 # This must be a 32 bit user space running on 64 bit kernel so treat
109 # this as ia32.
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000110 cpu_ia32=true
111 AC_DEFINE(FLAC__CPU_IA32)
112 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
Erik de Castro Lopob72540b2013-09-15 09:42:29 +1000113 else
114 # x86_64 user space and kernel.
115 cpu_x86_64=true
Erik de Castro Lopob8d58e32014-06-15 20:29:34 +1000116 AC_DEFINE(FLAC__CPU_X86_64)
117 AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64])
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000118 fi
Erik de Castro Lopob72540b2013-09-15 09:42:29 +1000119 asm_optimisation=$asm_opt
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000120 ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100121 i*86)
122 cpu_ia32=true
123 AC_DEFINE(FLAC__CPU_IA32)
124 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000125 asm_optimisation=$asm_opt
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100126 ;;
Erik de Castro Lopo592021e2012-12-28 09:49:50 +1100127 powerpc|powerpc64)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100128 cpu_ppc=true
129 AC_DEFINE(FLAC__CPU_PPC)
130 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000131 asm_optimisation=$asm_opt
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100132 ;;
133 sparc)
134 cpu_sparc=true
135 AC_DEFINE(FLAC__CPU_SPARC)
136 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
Erik de Castro Lopo1ec41a92013-08-11 21:46:18 +1000137 asm_optimisation=$asm_opt
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100138 ;;
139esac
Erik de Castro Lopob8d58e32014-06-15 20:29:34 +1000140AM_CONDITIONAL(FLAC__CPU_X86_64, test "x$cpu_x86_64" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100141AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
142AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
143AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
144
Erik de Castro Lopob72540b2013-09-15 09:42:29 +1000145AC_DEFINE_UNQUOTED([FLAC__HAS_X86INTRIN],${HAVE_X86INTRIN_H}, [Set to 1 if <x86intrin.h> is available.])
146
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100147case "$host" in
148 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
149 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
150 *-*-darwin*) OBJ_FORMAT=macho ;;
Erik de Castro Lopo0fe97672012-02-05 16:29:43 +1100151 *emx*) OBJ_FORMAT=aout ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100152 *) OBJ_FORMAT=elf ;;
153esac
154AC_SUBST(OBJ_FORMAT)
Erik de Castro Lopob6e64af2012-02-13 19:46:32 +1100155case "$host" in
156 *-gnuspe)
157 abi_spe=true
158 AC_DEFINE(FLAC__CPU_PPC_SPE)
159 AH_TEMPLATE(FLAC__CPU_PPC_SPE, [define if building for PowerPC with SPE ABI])
160 ;;
161esac
162AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100163
Erik de Castro Lopo2199d082013-04-01 19:57:13 +1100164os_is_windows=no
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100165case "$host" in
Erik de Castro Lopoc1ebd2c2013-04-29 21:32:48 +1000166 *-*-cygwin|*mingw*)
Erik de Castro Lopof44c3532013-04-02 06:27:07 +1100167 CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS"
Erik de Castro Lopo2199d082013-04-01 19:57:13 +1100168 os_is_windows=yes
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100169 ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100170esac
Cristian Rodríguez355f4aa2013-07-21 01:28:51 -0400171
Erik de Castro Lopo2199d082013-04-01 19:57:13 +1100172AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100173
174case "$host" in
175 *-pc-linux-gnu)
176 sys_linux=true
177 AC_DEFINE(FLAC__SYS_LINUX)
178 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
179 ;;
180 *-*-darwin*)
181 sys_darwin=true
182 AC_DEFINE(FLAC__SYS_DARWIN)
183 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
184 ;;
185esac
186AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
187AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
188
Erik de Castro Lopo899599e2013-09-25 23:26:49 +1000189if test "x$cpu_ia32" = xtrue || test "x$cpu_x86_64" = xtrue ; then
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100190AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
191AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
192fi
193
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100194AC_ARG_ENABLE(debug,
195AC_HELP_STRING([--enable-debug], [Turn on debugging]),
196[case "${enableval}" in
197 yes) debug=true ;;
198 no) debug=false ;;
199 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
200esac],[debug=false])
201AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
202
203AC_ARG_ENABLE(sse,
Erik de Castro Lopo98639982014-03-15 16:47:49 +1100204AC_HELP_STRING([--disable-sse], [Disable SSE if the OS does not support SSE instructions]),
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100205[case "${enableval}" in
Erik de Castro Lopo98639982014-03-15 16:47:49 +1100206 yes) sse_os=yes ;;
207 no) sse_os=no ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100208 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
Erik de Castro Lopo98639982014-03-15 16:47:49 +1100209esac],[sse_os=yes])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100210AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
Erik de Castro Lopo98639982014-03-15 16:47:49 +1100211if test "x$sse_os" = xyes ; then
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100212AC_DEFINE(FLAC__SSE_OS)
213AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
214fi
215
216AC_ARG_ENABLE(3dnow,
217AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
218[case "${enableval}" in
219 yes) use_3dnow=true ;;
220 no) use_3dnow=false ;;
221 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
222esac],[use_3dnow=true])
223AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
224if test "x$use_3dnow" = xtrue ; then
225AC_DEFINE(FLAC__USE_3DNOW)
226AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
227fi
228
229AC_ARG_ENABLE(altivec,
230AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
231[case "${enableval}" in
232 yes) use_altivec=true ;;
233 no) use_altivec=false ;;
234 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
235esac],[use_altivec=true])
236AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
237if test "x$use_altivec" = xtrue ; then
238AC_DEFINE(FLAC__USE_ALTIVEC)
239AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
240fi
241
242AC_ARG_ENABLE(thorough-tests,
243AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
244[case "${enableval}" in
245 yes) thorough_tests=true ;;
246 no) thorough_tests=false ;;
247 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
248esac],[thorough_tests=true])
249AC_ARG_ENABLE(exhaustive-tests,
250AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
251[case "${enableval}" in
252 yes) exhaustive_tests=true ;;
253 no) exhaustive_tests=false ;;
254 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
255esac],[exhaustive_tests=false])
256if test "x$thorough_tests" = xfalse ; then
257FLAC__TEST_LEVEL=0
258elif test "x$exhaustive_tests" = xfalse ; then
259FLAC__TEST_LEVEL=1
260else
261FLAC__TEST_LEVEL=2
262fi
263AC_SUBST(FLAC__TEST_LEVEL)
264
Erik de Castro Lopo2c455372014-04-08 20:48:13 +1000265AC_ARG_ENABLE(werror,
266 AC_HELP_STRING([--enable-werror], [Enable -Werror in all Makefiles]))
Erik de Castro Lopo195470f2013-03-13 18:58:16 +1100267
268AC_ARG_ENABLE(stack-smash-protection,
269 AC_HELP_STRING([--enable-stack-smash-protection], [Enable GNU GCC stack smash protection]))
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100270
271AC_ARG_ENABLE(valgrind-testing,
272AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
273[case "${enableval}" in
274 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
275 no) FLAC__TEST_WITH_VALGRIND=no ;;
276 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
277esac],[FLAC__TEST_WITH_VALGRIND=no])
278AC_SUBST(FLAC__TEST_WITH_VALGRIND)
279
280AC_ARG_ENABLE(doxygen-docs,
281AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
282[case "${enableval}" in
283 yes) enable_doxygen_docs=true ;;
284 no) enable_doxygen_docs=false ;;
285 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
286esac],[enable_doxygen_docs=true])
287if test "x$enable_doxygen_docs" != xfalse ; then
288 AC_CHECK_PROGS(DOXYGEN, doxygen)
289fi
290AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
291
292AC_ARG_ENABLE(local-xmms-plugin,
293AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
294[case "${enableval}" in
295 yes) install_xmms_plugin_locally=true ;;
296 no) install_xmms_plugin_locally=false ;;
297 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
298esac],[install_xmms_plugin_locally=false])
299AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
300
301AC_ARG_ENABLE(xmms-plugin,
302AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
303[case "${enableval}" in
304 yes) enable_xmms_plugin=true ;;
305 no) enable_xmms_plugin=false ;;
306 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
307esac],[enable_xmms_plugin=true])
308if test "x$enable_xmms_plugin" != xfalse ; then
309 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
310fi
311AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
312
313dnl build FLAC++ or not
314AC_ARG_ENABLE([cpplibs],
315AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
316[case "${enableval}" in
317 yes) disable_cpplibs=false ;;
318 no) disable_cpplibs=true ;;
319 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
320esac], [disable_cpplibs=false])
321AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
322
323dnl check for ogg library
324AC_ARG_ENABLE([ogg],
325 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
326 [ want_ogg=$enableval ], [ want_ogg=yes ] )
327
328if test "x$want_ogg" != "xno"; then
329 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
330fi
331
332AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
333if test "x$have_ogg" = xyes ; then
Erik de Castro Lopo3e2cd272012-07-04 19:53:31 +1000334 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library])
Ulrich Klauer5da86632013-04-06 20:41:12 +0200335 OGG_PACKAGE="ogg"
Erik de Castro Lopo3e2cd272012-07-04 19:53:31 +1000336else
337 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0)
Erik de Castro Lopoe21237a2013-09-15 19:58:05 +1000338 have_ogg=no
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100339fi
Ulrich Klauer5da86632013-04-06 20:41:12 +0200340AC_SUBST(OGG_PACKAGE)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100341
342dnl check for i18n(internationalization); these are from libiconv/gettext
343AM_ICONV
344AM_LANGINFO_CODESET
345
346AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
347AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
348if test -n "$DOCBOOK_TO_MAN" ; then
349AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
350AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
351fi
352
353# only matters for x86
354AC_CHECK_PROGS(NASM, nasm)
355AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
356if test -n "$NASM" ; then
357AC_DEFINE(FLAC__HAS_NASM)
358AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
359fi
360
361# only matters for PowerPC
362AC_CHECK_PROGS(AS, as, as)
363AC_CHECK_PROGS(GAS, gas, gas)
364
365# try -v (apple as) and --version (gas) at the same time
366test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
367
368AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
369AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
370if test "$AS" = "as" ; then
371AC_DEFINE(FLAC__HAS_AS)
372AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
373fi
374if test "$AS" = "gas" ; then
375# funniest. macro. ever.
376AC_DEFINE(FLAC__HAS_GAS)
377AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
378fi
379
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100380if test "x$debug" = xtrue; then
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -0300381 CPPFLAGS="-DDEBUG $CPPFLAGS"
Erik de Castro Lopof73c82a2014-07-27 10:08:44 +1000382 CFLAGS=$(echo "$CFLAGS" | sed 's/-g//')
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100383 CFLAGS="-g $CFLAGS"
384else
385 CPPFLAGS="-DNDEBUG $CPPFLAGS"
Erik de Castro Lopof73c82a2014-07-27 10:08:44 +1000386 CFLAGS=$(echo "$CFLAGS" | sed 's/-O2//;s/-g//')
387 CFLAGS="-O3 -funroll-loops $CFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100388fi
389
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100390XIPH_GCC_VERSION
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100391
392if test x$ac_cv_c_compiler_gnu = xyes ; then
Erik de Castro Lopof73c82a2014-07-27 10:08:44 +1000393 CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Wunreachable-code -Winline " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Wconversion
Erik de Castro Lopobc2b8c62014-03-21 18:52:24 +1100394 CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef -Wunreachable-code " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Woverloaded-virtual -Wmissing-declarations
Erik de Castro Lopo06f38122013-03-10 22:34:18 +1100395
Erik de Castro Lopo24a64472013-09-15 18:09:48 +1000396 XIPH_ADD_CFLAGS([-Wdeclaration-after-statement])
397 XIPH_ADD_CFLAGS([-D_FORTIFY_SOURCE=2])
398
399 AC_LANG_PUSH([C++])
400 XIPH_ADD_CXXFLAGS([-Weffc++])
401 AC_LANG_POP([C++])
402
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100403 if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then
404 CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
405 CFLAGS="$CFLAGS -fvisibility=hidden"
406 CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
Erik de Castro Lopo2860f172013-03-09 19:42:26 +1100407 fi
408
Erik de Castro Lopobe0a8942014-05-25 19:42:53 +1000409 if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = macho; then
410 CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
411 CFLAGS="$CFLAGS -fvisibility=hidden"
412 CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
413 fi
414
Erik de Castro Lopo2860f172013-03-09 19:42:26 +1100415 if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then
416 XIPH_ADD_CFLAGS([-fgnu89-inline])
417 fi
Erik de Castro Lopo24a64472013-09-15 18:09:48 +1000418
Erik de Castro Lopo1930ae12014-07-27 21:18:08 +1000419 if test "x$asm_optimisation$sse_os" = "xyesyes" ; then
Erik de Castro Lopoae4d7202013-09-15 20:34:40 +1000420 XIPH_ADD_CFLAGS([-msse2])
421 fi
422
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100423 fi
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100424
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100425XIPH_ADD_CFLAGS([-Wextra])
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100426
Erik de Castro Lopo2c455372014-04-08 20:48:13 +1000427if test x$enable_werror = "xyes" ; then
428 XIPH_ADD_CFLAGS([-Werror])
429 AC_LANG_PUSH([C++])
430 XIPH_ADD_CXXFLAGS([-Werror])
431 AC_LANG_POP([C++])
432 fi
433
434
Erik de Castro Lopo195470f2013-03-13 18:58:16 +1100435if test x$enable_stack_smash_protection = "xyes" ; then
436 XIPH_GCC_STACK_PROTECTOR
437 XIPH_GXX_STACK_PROTECTOR
438 fi
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100439
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100440#@@@
441AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
442AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
443
444AC_CONFIG_FILES([ \
445 Makefile \
446 src/Makefile \
447 src/libFLAC/Makefile \
448 src/libFLAC/flac.pc \
449 src/libFLAC/ia32/Makefile \
450 src/libFLAC/ppc/Makefile \
451 src/libFLAC/ppc/as/Makefile \
452 src/libFLAC/ppc/gas/Makefile \
453 src/libFLAC/include/Makefile \
454 src/libFLAC/include/private/Makefile \
455 src/libFLAC/include/protected/Makefile \
456 src/libFLAC++/Makefile \
457 src/libFLAC++/flac++.pc \
458 src/flac/Makefile \
459 src/metaflac/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100460 src/plugin_common/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100461 src/plugin_xmms/Makefile \
462 src/share/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100463 src/test_grabbag/Makefile \
464 src/test_grabbag/cuesheet/Makefile \
465 src/test_grabbag/picture/Makefile \
466 src/test_libs_common/Makefile \
467 src/test_libFLAC/Makefile \
468 src/test_libFLAC++/Makefile \
469 src/test_seeking/Makefile \
470 src/test_streams/Makefile \
471 src/utils/Makefile \
472 src/utils/flacdiff/Makefile \
473 src/utils/flactimer/Makefile \
474 examples/Makefile \
475 examples/c/Makefile \
476 examples/c/decode/Makefile \
477 examples/c/decode/file/Makefile \
478 examples/c/encode/Makefile \
479 examples/c/encode/file/Makefile \
480 examples/cpp/Makefile \
481 examples/cpp/decode/Makefile \
482 examples/cpp/decode/file/Makefile \
483 examples/cpp/encode/Makefile \
484 examples/cpp/encode/file/Makefile \
485 include/Makefile \
486 include/FLAC/Makefile \
487 include/FLAC++/Makefile \
488 include/share/Makefile \
489 include/share/grabbag/Makefile \
490 include/test_libs_common/Makefile \
Olivier Blinf6997882012-12-28 19:58:46 +0100491 doc/Doxyfile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100492 doc/Makefile \
493 doc/html/Makefile \
494 doc/html/images/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100495 m4/Makefile \
496 man/Makefile \
Erik de Castro Lopoa9712a22013-09-16 19:55:11 +1000497 test/common.sh \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100498 test/Makefile \
499 test/cuesheets/Makefile \
500 test/flac-to-flac-metadata-test-files/Makefile \
501 test/metaflac-test-files/Makefile \
502 test/pictures/Makefile \
503 build/Makefile \
Erik de Castro Lopo55788ea2012-12-28 11:06:38 +1100504 objs/Makefile \
505 objs/debug/Makefile \
506 objs/debug/bin/Makefile \
507 objs/debug/lib/Makefile \
508 objs/release/Makefile \
509 objs/release/bin/Makefile \
510 objs/release/lib/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100511])
512AC_OUTPUT
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100513
514AC_MSG_RESULT([
515-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
516
517 Configuration summary :
518
519 FLAC version : ........................ ${VERSION}
520
521 Host CPU : ............................ ${host_cpu}
522 Host Vendor : ......................... ${host_vendor}
523 Host OS : ............................. ${host_os}
524])
525
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100526 echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
Max Horncdcb88b2012-12-12 21:33:53 +0100527if test x$ac_cv_c_compiler_gnu = xyes ; then
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100528 echo " GCC version : ......................... ${GCC_VERSION}"
Max Horncdcb88b2012-12-12 21:33:53 +0100529fi
Erik de Castro Lopoa6a4b6f2013-11-22 18:13:36 +1100530 echo " Compiler is Clang : ................... ${xiph_cv_c_compiler_clang}"
Erik de Castro Lopo98639982014-03-15 16:47:49 +1100531 echo " SSE optimizations : ................... ${sse_os}"
Erik de Castro Lopo899599e2013-09-25 23:26:49 +1000532 echo " Asm optimizations : ................... ${asm_optimisation}"
Erik de Castro Lopoe21237a2013-09-15 19:58:05 +1000533 echo " Ogg/FLAC support : .................... ${have_ogg}"
Erik de Castro Lopo592021e2012-12-28 09:49:50 +1100534echo