blob: 8b6edcb5b2bc526a1fea7c89f1c39b6bb1b0378e [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
5# components distributed under difference licenses. The codec libraries
6# 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 Lopo1ad32ef2013-03-09 22:06:12 +110022AC_INIT([flac], [1.3.0pre2], [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
38AC_PROG_MAKE_SET
39
40AC_SYS_LARGEFILE
41AC_FUNC_FSEEKO
42
Erik de Castro Lopo6497ce12013-03-13 21:54:15 +110043AC_CHECK_SIZEOF(off_t,1) # Fake default value.
Max Horn0b47ede2012-12-12 21:33:55 +010044AC_CHECK_SIZEOF([void*])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030045AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110046
Max Horn0b47ede2012-12-12 21:33:55 +010047AC_LANG_PUSH([C++])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110048# c++ flavor first
49AC_C_VARARRAYS
50if test $ac_cv_c_vararrays = yes; then
51 AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.])
52fi
Max Horn0b47ede2012-12-12 21:33:55 +010053AC_LANG_POP([C++])
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110054
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110055# c flavor
56AC_HEADER_STDC
Erik de Castro Lopoafedee12012-04-04 20:08:52 +100057AM_PROG_CC_C_O
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110058AC_C_INLINE
59AC_C_VARARRAYS
Cristian Rodríguezf0296252012-04-05 19:39:37 -030060AC_C_TYPEOF
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110061
Max Horn21f68f42012-12-12 21:33:54 +010062AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h])
Cristian Rodríguezf0296252012-04-05 19:39:37 -030063
Erik de Castro Lopod7bfc772012-02-06 07:15:48 +110064XIPH_C_BSWAP32
65
Max Hornf20164e2012-12-12 21:33:51 +010066ac_cv_c_big_endian=0
67ac_cv_c_little_endian=0
68AC_C_BIGENDIAN([ac_cv_c_big_endian=1], [ac_cv_c_little_endian=1], [
69 AC_MSG_WARN([[*****************************************************************]])
70 AC_MSG_WARN([[*** Not able to determine endian-ness of target processor. ]])
71 AC_MSG_WARN([[*** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in ]])
72 AC_MSG_WARN([[*** config.h may need to be hand editied. ]])
73 AC_MSG_WARN([[*****************************************************************]])
74])
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110075AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
76 [Target processor is big endian.])
77AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
78 [Target processor is little endian.])
79AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
80 [Target processor is big endian.])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110081
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110082# For the XMMS plugin.
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110083AC_CHECK_TYPES(socklen_t, [], [])
84
85dnl check for getopt in standard library
86dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
87AC_CHECK_FUNCS(getopt_long, [], [])
88
89case "$host_cpu" in
90 i*86)
91 cpu_ia32=true
92 AC_DEFINE(FLAC__CPU_IA32)
93 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
94 ;;
Erik de Castro Lopo592021e2012-12-28 09:49:50 +110095 powerpc|powerpc64)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110096 cpu_ppc=true
97 AC_DEFINE(FLAC__CPU_PPC)
98 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
99 ;;
100 sparc)
101 cpu_sparc=true
102 AC_DEFINE(FLAC__CPU_SPARC)
103 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
104 ;;
105esac
106AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
107AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
108AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
109
110case "$host" in
111 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
112 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
113 *-*-darwin*) OBJ_FORMAT=macho ;;
Erik de Castro Lopo0fe97672012-02-05 16:29:43 +1100114 *emx*) OBJ_FORMAT=aout ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100115 *) OBJ_FORMAT=elf ;;
116esac
117AC_SUBST(OBJ_FORMAT)
Erik de Castro Lopob6e64af2012-02-13 19:46:32 +1100118case "$host" in
119 *-gnuspe)
120 abi_spe=true
121 AC_DEFINE(FLAC__CPU_PPC_SPE)
122 AH_TEMPLATE(FLAC__CPU_PPC_SPE, [define if building for PowerPC with SPE ABI])
123 ;;
124esac
125AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100126
127case "$host" in
Erik de Castro Lopo8b4bc4b2012-02-05 16:28:40 +1100128 *-*-cygwin|*mingw*|*emx*)
129 # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100130 LT_NO_UNDEFINED="-no-undefined"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100131 ;;
132 *)
133 LT_NO_UNDEFINED=
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100134 ;;
135esac
136AC_SUBST(LT_NO_UNDEFINED)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100137
138case "$host" in
139 *-pc-linux-gnu)
140 sys_linux=true
141 AC_DEFINE(FLAC__SYS_LINUX)
142 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
143 ;;
144 *-*-darwin*)
145 sys_darwin=true
146 AC_DEFINE(FLAC__SYS_DARWIN)
147 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
148 ;;
149esac
150AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
151AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
152
153if test "x$cpu_ia32" = xtrue ; then
154AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
155AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
156fi
157
158AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
159dnl ' Terminate the damn single quote
160AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
161if test "x$asm_opt" = xno ; then
162AC_DEFINE(FLAC__NO_ASM)
163AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
164fi
165
166AC_ARG_ENABLE(debug,
167AC_HELP_STRING([--enable-debug], [Turn on debugging]),
168[case "${enableval}" in
169 yes) debug=true ;;
170 no) debug=false ;;
171 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
172esac],[debug=false])
173AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
174
175AC_ARG_ENABLE(sse,
176AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
177[case "${enableval}" in
178 yes) sse_os=true ;;
179 no) sse_os=false ;;
180 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
181esac],[sse_os=false])
182AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
183if test "x$sse_os" = xtrue ; then
184AC_DEFINE(FLAC__SSE_OS)
185AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
186fi
187
188AC_ARG_ENABLE(3dnow,
189AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
190[case "${enableval}" in
191 yes) use_3dnow=true ;;
192 no) use_3dnow=false ;;
193 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
194esac],[use_3dnow=true])
195AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
196if test "x$use_3dnow" = xtrue ; then
197AC_DEFINE(FLAC__USE_3DNOW)
198AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
199fi
200
201AC_ARG_ENABLE(altivec,
202AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
203[case "${enableval}" in
204 yes) use_altivec=true ;;
205 no) use_altivec=false ;;
206 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
207esac],[use_altivec=true])
208AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
209if test "x$use_altivec" = xtrue ; then
210AC_DEFINE(FLAC__USE_ALTIVEC)
211AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
212fi
213
214AC_ARG_ENABLE(thorough-tests,
215AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
216[case "${enableval}" in
217 yes) thorough_tests=true ;;
218 no) thorough_tests=false ;;
219 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
220esac],[thorough_tests=true])
221AC_ARG_ENABLE(exhaustive-tests,
222AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
223[case "${enableval}" in
224 yes) exhaustive_tests=true ;;
225 no) exhaustive_tests=false ;;
226 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
227esac],[exhaustive_tests=false])
228if test "x$thorough_tests" = xfalse ; then
229FLAC__TEST_LEVEL=0
230elif test "x$exhaustive_tests" = xfalse ; then
231FLAC__TEST_LEVEL=1
232else
233FLAC__TEST_LEVEL=2
234fi
235AC_SUBST(FLAC__TEST_LEVEL)
236
237AC_ARG_ENABLE(gcc-werror,
Erik de Castro Lopo195470f2013-03-13 18:58:16 +1100238 AC_HELP_STRING([--enable-gcc-werror], [Enable -Werror in all Makefiles]))
239
240AC_ARG_ENABLE(stack-smash-protection,
241 AC_HELP_STRING([--enable-stack-smash-protection], [Enable GNU GCC stack smash protection]))
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100242
243AC_ARG_ENABLE(valgrind-testing,
244AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
245[case "${enableval}" in
246 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
247 no) FLAC__TEST_WITH_VALGRIND=no ;;
248 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
249esac],[FLAC__TEST_WITH_VALGRIND=no])
250AC_SUBST(FLAC__TEST_WITH_VALGRIND)
251
252AC_ARG_ENABLE(doxygen-docs,
253AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
254[case "${enableval}" in
255 yes) enable_doxygen_docs=true ;;
256 no) enable_doxygen_docs=false ;;
257 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
258esac],[enable_doxygen_docs=true])
259if test "x$enable_doxygen_docs" != xfalse ; then
260 AC_CHECK_PROGS(DOXYGEN, doxygen)
261fi
262AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
263
264AC_ARG_ENABLE(local-xmms-plugin,
265AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
266[case "${enableval}" in
267 yes) install_xmms_plugin_locally=true ;;
268 no) install_xmms_plugin_locally=false ;;
269 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
270esac],[install_xmms_plugin_locally=false])
271AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
272
273AC_ARG_ENABLE(xmms-plugin,
274AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
275[case "${enableval}" in
276 yes) enable_xmms_plugin=true ;;
277 no) enable_xmms_plugin=false ;;
278 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
279esac],[enable_xmms_plugin=true])
280if test "x$enable_xmms_plugin" != xfalse ; then
281 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
282fi
283AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
284
285dnl build FLAC++ or not
286AC_ARG_ENABLE([cpplibs],
287AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
288[case "${enableval}" in
289 yes) disable_cpplibs=false ;;
290 no) disable_cpplibs=true ;;
291 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
292esac], [disable_cpplibs=false])
293AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
294
295dnl check for ogg library
296AC_ARG_ENABLE([ogg],
297 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
298 [ want_ogg=$enableval ], [ want_ogg=yes ] )
299
300if test "x$want_ogg" != "xno"; then
301 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
302fi
303
304AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
305if test "x$have_ogg" = xyes ; then
Erik de Castro Lopo3e2cd272012-07-04 19:53:31 +1000306 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library])
307else
308 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100309fi
310
311dnl check for i18n(internationalization); these are from libiconv/gettext
312AM_ICONV
313AM_LANGINFO_CODESET
314
315AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
316AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
317if test -n "$DOCBOOK_TO_MAN" ; then
318AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
319AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
320fi
321
322# only matters for x86
323AC_CHECK_PROGS(NASM, nasm)
324AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
325if test -n "$NASM" ; then
326AC_DEFINE(FLAC__HAS_NASM)
327AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
328fi
329
330# only matters for PowerPC
331AC_CHECK_PROGS(AS, as, as)
332AC_CHECK_PROGS(GAS, gas, gas)
333
334# try -v (apple as) and --version (gas) at the same time
335test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
336
337AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
338AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
339if test "$AS" = "as" ; then
340AC_DEFINE(FLAC__HAS_AS)
341AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
342fi
343if test "$AS" = "gas" ; then
344# funniest. macro. ever.
345AC_DEFINE(FLAC__HAS_GAS)
346AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
347fi
348
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100349if test "x$debug" = xtrue; then
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -0300350 CPPFLAGS="-DDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100351 CFLAGS="-g $CFLAGS"
352else
353 CPPFLAGS="-DNDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100354 if test "x$GCC" = xyes; then
Miroslav Lichvar18e01542012-12-03 21:04:56 +0100355 if test "x$user_cflags" = x; then
356 CFLAGS="-O3 -funroll-loops -Wall -W -Winline"
357 fi
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100358 fi
359fi
360
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100361XIPH_GCC_VERSION
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100362
363if test x$ac_cv_c_compiler_gnu = xyes ; then
Erik de Castro Lopo06f38122013-03-10 22:34:18 +1100364 CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Winline -Wconversion
365 CXXFLAGS="$CXXFLAGS -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
366
367
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100368 if test x$enable_gcc_werror = "xyes" ; then
Erik de Castro Lopo06f38122013-03-10 22:34:18 +1100369 CFLAGS="$CFLAGS -Wall -Wextra -Werror "
370 CXXFLAGS="$CXXFLAGS -Wall -Wextra -Werror "
Erik de Castro Lopo2860f172013-03-09 19:42:26 +1100371 fi
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100372
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100373 if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then
374 CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
375 CFLAGS="$CFLAGS -fvisibility=hidden"
376 CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
Erik de Castro Lopo2860f172013-03-09 19:42:26 +1100377 fi
378
379 if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then
380 XIPH_ADD_CFLAGS([-fgnu89-inline])
381 fi
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100382 fi
Miroslav Lichvar19c78e52012-12-03 21:04:57 +0100383
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100384
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100385XIPH_ADD_CFLAGS([-Wextra])
Erik de Castro Lopo06f38122013-03-10 22:34:18 +1100386XIPH_ADD_CFLAGS([-Wdeclaration-after-statement])
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100387XIPH_ADD_CFLAGS([-D_FORTIFY_SOURCE=2])
388
Erik de Castro Lopo195470f2013-03-13 18:58:16 +1100389if test x$enable_stack_smash_protection = "xyes" ; then
390 XIPH_GCC_STACK_PROTECTOR
391 XIPH_GXX_STACK_PROTECTOR
392 fi
Erik de Castro Lopod5b03bc2013-03-09 08:55:37 +1100393
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100394#@@@
395AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
396AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
397
398AC_CONFIG_FILES([ \
399 Makefile \
400 src/Makefile \
401 src/libFLAC/Makefile \
402 src/libFLAC/flac.pc \
403 src/libFLAC/ia32/Makefile \
404 src/libFLAC/ppc/Makefile \
405 src/libFLAC/ppc/as/Makefile \
406 src/libFLAC/ppc/gas/Makefile \
407 src/libFLAC/include/Makefile \
408 src/libFLAC/include/private/Makefile \
409 src/libFLAC/include/protected/Makefile \
410 src/libFLAC++/Makefile \
411 src/libFLAC++/flac++.pc \
412 src/flac/Makefile \
413 src/metaflac/Makefile \
414 src/monkeys_audio_utilities/Makefile \
415 src/monkeys_audio_utilities/flac_mac/Makefile \
416 src/monkeys_audio_utilities/flac_ren/Makefile \
417 src/plugin_common/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100418 src/plugin_xmms/Makefile \
419 src/share/Makefile \
420 src/share/getopt/Makefile \
421 src/share/grabbag/Makefile \
422 src/share/replaygain_analysis/Makefile \
423 src/share/replaygain_synthesis/Makefile \
424 src/share/replaygain_synthesis/include/Makefile \
425 src/share/replaygain_synthesis/include/private/Makefile \
426 src/share/utf8/Makefile \
427 src/test_grabbag/Makefile \
428 src/test_grabbag/cuesheet/Makefile \
429 src/test_grabbag/picture/Makefile \
430 src/test_libs_common/Makefile \
431 src/test_libFLAC/Makefile \
432 src/test_libFLAC++/Makefile \
433 src/test_seeking/Makefile \
434 src/test_streams/Makefile \
435 src/utils/Makefile \
436 src/utils/flacdiff/Makefile \
437 src/utils/flactimer/Makefile \
438 examples/Makefile \
439 examples/c/Makefile \
440 examples/c/decode/Makefile \
441 examples/c/decode/file/Makefile \
442 examples/c/encode/Makefile \
443 examples/c/encode/file/Makefile \
444 examples/cpp/Makefile \
445 examples/cpp/decode/Makefile \
446 examples/cpp/decode/file/Makefile \
447 examples/cpp/encode/Makefile \
448 examples/cpp/encode/file/Makefile \
449 include/Makefile \
450 include/FLAC/Makefile \
451 include/FLAC++/Makefile \
452 include/share/Makefile \
453 include/share/grabbag/Makefile \
454 include/test_libs_common/Makefile \
Olivier Blinf6997882012-12-28 19:58:46 +0100455 doc/Doxyfile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100456 doc/Makefile \
457 doc/html/Makefile \
458 doc/html/images/Makefile \
459 doc/html/images/hw/Makefile \
460 doc/html/ru/Makefile \
461 m4/Makefile \
462 man/Makefile \
463 test/Makefile \
464 test/cuesheets/Makefile \
465 test/flac-to-flac-metadata-test-files/Makefile \
466 test/metaflac-test-files/Makefile \
467 test/pictures/Makefile \
468 build/Makefile \
Erik de Castro Lopo55788ea2012-12-28 11:06:38 +1100469 objs/Makefile \
470 objs/debug/Makefile \
471 objs/debug/bin/Makefile \
472 objs/debug/lib/Makefile \
473 objs/release/Makefile \
474 objs/release/bin/Makefile \
475 objs/release/lib/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100476])
477AC_OUTPUT
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100478
479AC_MSG_RESULT([
480-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
481
482 Configuration summary :
483
484 FLAC version : ........................ ${VERSION}
485
486 Host CPU : ............................ ${host_cpu}
487 Host Vendor : ......................... ${host_vendor}
488 Host OS : ............................. ${host_os}
489])
490
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100491 echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
Max Horncdcb88b2012-12-12 21:33:53 +0100492if test x$ac_cv_c_compiler_gnu = xyes ; then
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100493 echo " GCC version : ......................... ${GCC_VERSION}"
Max Horncdcb88b2012-12-12 21:33:53 +0100494fi
Erik de Castro Lopo592021e2012-12-28 09:49:50 +1100495echo