blob: da23a434dfe567c75fa6b10b324a235f7a0b379f [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
21AC_INIT(src/flac/main.c)
22AM_INIT_AUTOMAKE(flac, 1.2.1)
Erik de Castro Lopo886b9602012-02-03 05:52:01 +110023m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110024
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110025# Enable the generation of shared libraries under Win32
26AC_LIBTOOL_WIN32_DLL
27
28# We need two libtools, one that builds both shared and static, and
29# one that builds only static. This is because the resulting libtool
30# does not allow us to choose which to build at runtime.
31AM_PROG_LIBTOOL
32sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
33chmod +x libtool-disable-static
34
35AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
Erik de Castro Lopoe38026a2012-02-13 19:55:46 +110036AC_CONFIG_MACRO_DIR([m4])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110037
38AM_PROG_AS
39AC_PROG_CXX
40AC_PROG_MAKE_SET
41
42AC_SYS_LARGEFILE
43AC_FUNC_FSEEKO
44
45AC_CHECK_SIZEOF(void*,0)
46
47#@@@ new name is AC_CONFIG_HEADERS
48AM_CONFIG_HEADER(config.h)
49
50AC_LANG_PUSH(C++)
51# 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
56AC_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 Lopo3abb6c92012-02-05 18:58:11 +110060AC_C_INLINE
61AC_C_VARARRAYS
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110062
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110063AC_CHECK_HEADERS(stdint.h)
64AC_SUBST(HAVE_STDINT_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110065AC_CHECK_HEADERS(inttypes.h)
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110066AC_SUBST(HAVE_INTTYPES_H)
67AC_CHECK_HEADERS(byteswap.h)
68AC_SUBST(HAVE_BYTESWAP_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110069
Erik de Castro Lopod7bfc772012-02-06 07:15:48 +110070XIPH_C_BSWAP32
71
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110072XIPH_C_FIND_ENDIAN
73AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
74 [Target processor is big endian.])
75AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
76 [Target processor is little endian.])
77AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
78 [Target processor is big endian.])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110079
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110080# For the XMMS plugin.
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110081AC_CHECK_TYPES(socklen_t, [], [])
82
83dnl check for getopt in standard library
84dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
85AC_CHECK_FUNCS(getopt_long, [], [])
86
87case "$host_cpu" in
88 i*86)
89 cpu_ia32=true
90 AC_DEFINE(FLAC__CPU_IA32)
91 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
92 ;;
93 powerpc)
94 cpu_ppc=true
95 AC_DEFINE(FLAC__CPU_PPC)
96 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
97 ;;
98 sparc)
99 cpu_sparc=true
100 AC_DEFINE(FLAC__CPU_SPARC)
101 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
102 ;;
103esac
104AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
105AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
106AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
107
108case "$host" in
109 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
110 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
111 *-*-darwin*) OBJ_FORMAT=macho ;;
Erik de Castro Lopo0fe97672012-02-05 16:29:43 +1100112 *emx*) OBJ_FORMAT=aout ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100113 *) OBJ_FORMAT=elf ;;
114esac
115AC_SUBST(OBJ_FORMAT)
Erik de Castro Lopob6e64af2012-02-13 19:46:32 +1100116case "$host" in
117 *-gnuspe)
118 abi_spe=true
119 AC_DEFINE(FLAC__CPU_PPC_SPE)
120 AH_TEMPLATE(FLAC__CPU_PPC_SPE, [define if building for PowerPC with SPE ABI])
121 ;;
122esac
123AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100124
125case "$host" in
Erik de Castro Lopo8b4bc4b2012-02-05 16:28:40 +1100126 *-*-cygwin|*mingw*|*emx*)
127 # 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 +1100128 LT_NO_UNDEFINED="-no-undefined"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100129 ;;
130 *)
131 LT_NO_UNDEFINED=
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100132 ;;
133esac
134AC_SUBST(LT_NO_UNDEFINED)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100135
136case "$host" in
137 *-pc-linux-gnu)
138 sys_linux=true
139 AC_DEFINE(FLAC__SYS_LINUX)
140 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
141 ;;
142 *-*-darwin*)
143 sys_darwin=true
144 AC_DEFINE(FLAC__SYS_DARWIN)
145 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
146 ;;
147esac
148AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
149AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
150
151if test "x$cpu_ia32" = xtrue ; then
152AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
153AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
154fi
155
156AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
157dnl ' Terminate the damn single quote
158AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
159if test "x$asm_opt" = xno ; then
160AC_DEFINE(FLAC__NO_ASM)
161AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
162fi
163
164AC_ARG_ENABLE(debug,
165AC_HELP_STRING([--enable-debug], [Turn on debugging]),
166[case "${enableval}" in
167 yes) debug=true ;;
168 no) debug=false ;;
169 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
170esac],[debug=false])
171AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
172
173AC_ARG_ENABLE(sse,
174AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
175[case "${enableval}" in
176 yes) sse_os=true ;;
177 no) sse_os=false ;;
178 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
179esac],[sse_os=false])
180AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
181if test "x$sse_os" = xtrue ; then
182AC_DEFINE(FLAC__SSE_OS)
183AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
184fi
185
186AC_ARG_ENABLE(3dnow,
187AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
188[case "${enableval}" in
189 yes) use_3dnow=true ;;
190 no) use_3dnow=false ;;
191 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
192esac],[use_3dnow=true])
193AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
194if test "x$use_3dnow" = xtrue ; then
195AC_DEFINE(FLAC__USE_3DNOW)
196AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
197fi
198
199AC_ARG_ENABLE(altivec,
200AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
201[case "${enableval}" in
202 yes) use_altivec=true ;;
203 no) use_altivec=false ;;
204 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
205esac],[use_altivec=true])
206AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
207if test "x$use_altivec" = xtrue ; then
208AC_DEFINE(FLAC__USE_ALTIVEC)
209AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
210fi
211
212AC_ARG_ENABLE(thorough-tests,
213AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
214[case "${enableval}" in
215 yes) thorough_tests=true ;;
216 no) thorough_tests=false ;;
217 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
218esac],[thorough_tests=true])
219AC_ARG_ENABLE(exhaustive-tests,
220AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
221[case "${enableval}" in
222 yes) exhaustive_tests=true ;;
223 no) exhaustive_tests=false ;;
224 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
225esac],[exhaustive_tests=false])
226if test "x$thorough_tests" = xfalse ; then
227FLAC__TEST_LEVEL=0
228elif test "x$exhaustive_tests" = xfalse ; then
229FLAC__TEST_LEVEL=1
230else
231FLAC__TEST_LEVEL=2
232fi
233AC_SUBST(FLAC__TEST_LEVEL)
234
235AC_ARG_ENABLE(gcc-werror,
236 AC_HELP_STRING([--enable-gcc-werror], [enable -Werror in all Makefiles]))
237
238AC_ARG_ENABLE(valgrind-testing,
239AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
240[case "${enableval}" in
241 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
242 no) FLAC__TEST_WITH_VALGRIND=no ;;
243 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
244esac],[FLAC__TEST_WITH_VALGRIND=no])
245AC_SUBST(FLAC__TEST_WITH_VALGRIND)
246
247AC_ARG_ENABLE(doxygen-docs,
248AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
249[case "${enableval}" in
250 yes) enable_doxygen_docs=true ;;
251 no) enable_doxygen_docs=false ;;
252 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
253esac],[enable_doxygen_docs=true])
254if test "x$enable_doxygen_docs" != xfalse ; then
255 AC_CHECK_PROGS(DOXYGEN, doxygen)
256fi
257AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
258
259AC_ARG_ENABLE(local-xmms-plugin,
260AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
261[case "${enableval}" in
262 yes) install_xmms_plugin_locally=true ;;
263 no) install_xmms_plugin_locally=false ;;
264 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
265esac],[install_xmms_plugin_locally=false])
266AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
267
268AC_ARG_ENABLE(xmms-plugin,
269AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
270[case "${enableval}" in
271 yes) enable_xmms_plugin=true ;;
272 no) enable_xmms_plugin=false ;;
273 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
274esac],[enable_xmms_plugin=true])
275if test "x$enable_xmms_plugin" != xfalse ; then
276 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
277fi
278AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
279
280dnl build FLAC++ or not
281AC_ARG_ENABLE([cpplibs],
282AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
283[case "${enableval}" in
284 yes) disable_cpplibs=false ;;
285 no) disable_cpplibs=true ;;
286 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
287esac], [disable_cpplibs=false])
288AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
289
290dnl check for ogg library
291AC_ARG_ENABLE([ogg],
292 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
293 [ want_ogg=$enableval ], [ want_ogg=yes ] )
294
295if test "x$want_ogg" != "xno"; then
296 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
297fi
298
299AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
300if test "x$have_ogg" = xyes ; then
301AC_DEFINE(FLAC__HAS_OGG)
302AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
303fi
304
305dnl check for i18n(internationalization); these are from libiconv/gettext
306AM_ICONV
307AM_LANGINFO_CODESET
308
309AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
310AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
311if test -n "$DOCBOOK_TO_MAN" ; then
312AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
313AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
314fi
315
316# only matters for x86
317AC_CHECK_PROGS(NASM, nasm)
318AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
319if test -n "$NASM" ; then
320AC_DEFINE(FLAC__HAS_NASM)
321AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
322fi
323
324# only matters for PowerPC
325AC_CHECK_PROGS(AS, as, as)
326AC_CHECK_PROGS(GAS, gas, gas)
327
328# try -v (apple as) and --version (gas) at the same time
329test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
330
331AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
332AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
333if test "$AS" = "as" ; then
334AC_DEFINE(FLAC__HAS_AS)
335AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
336fi
337if test "$AS" = "gas" ; then
338# funniest. macro. ever.
339AC_DEFINE(FLAC__HAS_GAS)
340AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
341fi
342
343CPPFLAGS='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'" $CPPFLAGS"
344if test "x$debug" = xtrue; then
345 CPPFLAGS="-DDEBUG -DFLaC__INLINE= $CPPFLAGS"
346 CFLAGS="-g $CFLAGS"
347else
348 CPPFLAGS="-DNDEBUG $CPPFLAGS"
349 # $ac_cv_c_inline from AC_C_INLINE
350 if test "x$ac_cv_c_inline" != xno ; then
351 CPPFLAGS="-DFLaC__INLINE=$ac_cv_c_inline $CPPFLAGS"
352 fi
353 if test "x$GCC" = xyes; then
354 CFLAGS="-O3 -funroll-loops -finline-functions -Wall -W -Winline $CFLAGS"
355 fi
356fi
357
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100358XIPH_GCC_VERSION
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100359
360if test x$ac_cv_c_compiler_gnu = xyes ; then
361 if test x$enable_gcc_werror = "xyes" ; then
362 CFLAGS="-Werror $CFLAGS"
363 CXXFLAGS="-Werror $CXXFLAGS"
364 fi
365 fi
366
367
368#@@@
369AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
370AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
371
372AC_CONFIG_FILES([ \
373 Makefile \
374 src/Makefile \
375 src/libFLAC/Makefile \
376 src/libFLAC/flac.pc \
377 src/libFLAC/ia32/Makefile \
378 src/libFLAC/ppc/Makefile \
379 src/libFLAC/ppc/as/Makefile \
380 src/libFLAC/ppc/gas/Makefile \
381 src/libFLAC/include/Makefile \
382 src/libFLAC/include/private/Makefile \
383 src/libFLAC/include/protected/Makefile \
384 src/libFLAC++/Makefile \
385 src/libFLAC++/flac++.pc \
386 src/flac/Makefile \
387 src/metaflac/Makefile \
388 src/monkeys_audio_utilities/Makefile \
389 src/monkeys_audio_utilities/flac_mac/Makefile \
390 src/monkeys_audio_utilities/flac_ren/Makefile \
391 src/plugin_common/Makefile \
392 src/plugin_winamp2/Makefile \
393 src/plugin_winamp2/include/Makefile \
394 src/plugin_winamp2/include/winamp2/Makefile \
395 src/plugin_xmms/Makefile \
396 src/share/Makefile \
397 src/share/getopt/Makefile \
398 src/share/grabbag/Makefile \
399 src/share/replaygain_analysis/Makefile \
400 src/share/replaygain_synthesis/Makefile \
401 src/share/replaygain_synthesis/include/Makefile \
402 src/share/replaygain_synthesis/include/private/Makefile \
403 src/share/utf8/Makefile \
404 src/test_grabbag/Makefile \
405 src/test_grabbag/cuesheet/Makefile \
406 src/test_grabbag/picture/Makefile \
407 src/test_libs_common/Makefile \
408 src/test_libFLAC/Makefile \
409 src/test_libFLAC++/Makefile \
410 src/test_seeking/Makefile \
411 src/test_streams/Makefile \
412 src/utils/Makefile \
413 src/utils/flacdiff/Makefile \
414 src/utils/flactimer/Makefile \
415 examples/Makefile \
416 examples/c/Makefile \
417 examples/c/decode/Makefile \
418 examples/c/decode/file/Makefile \
419 examples/c/encode/Makefile \
420 examples/c/encode/file/Makefile \
421 examples/cpp/Makefile \
422 examples/cpp/decode/Makefile \
423 examples/cpp/decode/file/Makefile \
424 examples/cpp/encode/Makefile \
425 examples/cpp/encode/file/Makefile \
426 include/Makefile \
427 include/FLAC/Makefile \
428 include/FLAC++/Makefile \
429 include/share/Makefile \
430 include/share/grabbag/Makefile \
431 include/test_libs_common/Makefile \
432 doc/Makefile \
433 doc/html/Makefile \
434 doc/html/images/Makefile \
435 doc/html/images/hw/Makefile \
436 doc/html/ru/Makefile \
437 m4/Makefile \
438 man/Makefile \
439 test/Makefile \
440 test/cuesheets/Makefile \
441 test/flac-to-flac-metadata-test-files/Makefile \
442 test/metaflac-test-files/Makefile \
443 test/pictures/Makefile \
444 build/Makefile \
445 obj/Makefile \
446 obj/debug/Makefile \
447 obj/debug/bin/Makefile \
448 obj/debug/lib/Makefile \
449 obj/release/Makefile \
450 obj/release/bin/Makefile \
451 obj/release/lib/Makefile \
452])
453AC_OUTPUT
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100454
455AC_MSG_RESULT([
456-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
457
458 Configuration summary :
459
460 FLAC version : ........................ ${VERSION}
461
462 Host CPU : ............................ ${host_cpu}
463 Host Vendor : ......................... ${host_vendor}
464 Host OS : ............................. ${host_os}
465])
466
467if test x$ac_cv_c_compiler_gnu = xyes ; then
468 echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
469 echo " GCC version : ......................... ${GCC_VERSION}"
470 fi