libFLAC/md5: Fix for cast-align warnings on ARM.
[flac.git] / configure.ac
blobd3c302aa8ef205e8bcd375f0bc9a9733ff34ca49
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009  Josh Coalson
4 #  This file is part the FLAC project.  FLAC is comprised of several
5 #  components distributed under different 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.
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.
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
21 AC_PREREQ(2.60)
22 AC_INIT([flac], [1.3.0], [flac-dev@xiph.org], [flac], [https://www.xiph.org/flac/])
23 AC_CONFIG_HEADERS([config.h])
24 AC_CONFIG_SRCDIR([src/flac/main.c])
25 AC_CONFIG_MACRO_DIR([m4])
26 AM_INIT_AUTOMAKE([foreign 1.11 -Wall tar-pax no-dist-gzip dist-xz subdir-objects])
27 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
29 user_cflags=$CFLAGS
31 #Prefer whatever the current ISO standard is.
32 AC_PROG_CC_STDC
33 AC_USE_SYSTEM_EXTENSIONS
34 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
35 LT_INIT([win32-dll disable-static pic-only])
36 AM_PROG_AS
37 AC_PROG_CXX
38 XIPH_C_COMPILER_IS_CLANG
39 XIPH_GCC_REALLY_IS_GCC
40 AC_PROG_MAKE_SET
41 AC_PROG_MKDIR_P
43 AC_SYS_LARGEFILE
44 AC_FUNC_FSEEKO
46 AC_CHECK_SIZEOF(off_t,1)        # Fake default value.
47 AC_CHECK_SIZEOF([void*])
48 AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
50 AC_LANG_PUSH([C++])
51 # c++ flavor first
52 AC_C_VARARRAYS
53 if test $ac_cv_c_vararrays = yes; then
54         AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.])
56 AC_LANG_POP([C++])
58 # c flavor
59 AC_HEADER_STDC
60 AM_PROG_CC_C_O
61 AC_C_INLINE
62 AC_C_VARARRAYS
63 AC_C_TYPEOF
65 AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h termios.h x86intrin.h cpuid.h])
67 AC_HEADER_TIOCGWINSZ
69 XIPH_C_BSWAP32
71 ac_cv_c_big_endian=0
72 ac_cv_c_little_endian=0
73 AC_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([[*****************************************************************]])
80 AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
81                                         [Target processor is big endian.])
82 AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
83                                         [Target processor is little endian.])
84 AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
85                                         [Target processor is big endian.])
87 AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
88 dnl ' Terminate the damn single quote
89 AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
90 if test "x$asm_opt" = xno ; then
91 AC_DEFINE(FLAC__NO_ASM)
92 AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
95 # For the XMMS plugin.
96 AC_CHECK_TYPES(socklen_t, [], [])
98 dnl check for getopt in standard library
99 dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
100 AC_CHECK_FUNCS(getopt_long, [], [])
102 AC_CHECK_SIZEOF(void*,1)
104 asm_optimisation=no
105 case "$host_cpu" in
106         x86_64)
107                 if test $ac_cv_sizeof_voidp = 4 ; then
108                         # This must be a 32 bit user space running on 64 bit kernel so treat
109                         # this as ia32.
110                         cpu_ia32=true
111                         AC_DEFINE(FLAC__CPU_IA32)
112                         AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
113                 else
114                         # x86_64 user space and kernel.
115                         cpu_x86_64=true
116                         AC_DEFINE(FLAC__CPU_X86_64)
117                         AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64])
118                         fi
119                 asm_optimisation=$asm_opt
120                 ;;
121         i*86)
122                 cpu_ia32=true
123                 AC_DEFINE(FLAC__CPU_IA32)
124                 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
125                 asm_optimisation=$asm_opt
126                 ;;
127         powerpc|powerpc64)
128                 cpu_ppc=true
129                 AC_DEFINE(FLAC__CPU_PPC)
130                 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
131                 asm_optimisation=$asm_opt
132                 ;;
133         sparc)
134                 cpu_sparc=true
135                 AC_DEFINE(FLAC__CPU_SPARC)
136                 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
137                 asm_optimisation=$asm_opt
138                 ;;
139 esac
140 AM_CONDITIONAL(FLAC__CPU_X86_64, test "x$cpu_x86_64" = xtrue)
141 AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
142 AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
143 AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
145 AC_DEFINE_UNQUOTED([FLAC__HAS_X86INTRIN],${HAVE_X86INTRIN_H}, [Set to 1 if <x86intrin.h> is available.])
147 case "$host" in
148         i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
149         *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
150         *-*-darwin*) OBJ_FORMAT=macho ;;
151         *emx*) OBJ_FORMAT=aout ;;
152         *) OBJ_FORMAT=elf ;;
153 esac
154 AC_SUBST(OBJ_FORMAT)
155 case "$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                 ;;
161 esac
162 AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
164 os_is_windows=no
165 case "$host" in
166         *-*-cygwin|*mingw*)
167                 CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS"
168                 os_is_windows=yes
169                 ;;
170 esac
172 AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes)
174 case "$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                 ;;
185 esac
186 AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
187 AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
189 if test "x$cpu_ia32" = xtrue || test "x$cpu_x86_64" = xtrue ; then
190 AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
191 AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
194 AC_ARG_ENABLE(debug,
195 AC_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) ;;
200 esac],[debug=false])
201 AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
203 AC_ARG_ENABLE(sse,
204 AC_HELP_STRING([--disable-sse], [Disable SSE if the OS does not support SSE instructions]),
205 [case "${enableval}" in
206         yes) sse_os=yes ;;
207         no)  sse_os=no ;;
208         *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
209 esac],[sse_os=yes])
210 AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
211 if test "x$sse_os" = xyes ; then
212 AC_DEFINE(FLAC__SSE_OS)
213 AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
216 AC_ARG_ENABLE(3dnow,
217 AC_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) ;;
222 esac],[use_3dnow=true])
223 AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
224 if test "x$use_3dnow" = xtrue ; then
225 AC_DEFINE(FLAC__USE_3DNOW)
226 AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
229 AC_ARG_ENABLE(altivec,
230 AC_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) ;;
235 esac],[use_altivec=true])
236 AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
237 if test "x$use_altivec" = xtrue ; then
238 AC_DEFINE(FLAC__USE_ALTIVEC)
239 AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
242 AC_ARG_ENABLE(thorough-tests,
243 AC_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) ;;
248 esac],[thorough_tests=true])
249 AC_ARG_ENABLE(exhaustive-tests,
250 AC_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) ;;
255 esac],[exhaustive_tests=false])
256 if test "x$thorough_tests" = xfalse ; then
257 FLAC__TEST_LEVEL=0
258 elif test "x$exhaustive_tests" = xfalse ; then
259 FLAC__TEST_LEVEL=1
260 else
261 FLAC__TEST_LEVEL=2
263 AC_SUBST(FLAC__TEST_LEVEL)
265 AC_ARG_ENABLE(werror,
266         AC_HELP_STRING([--enable-werror], [Enable -Werror in all Makefiles]))
268 AC_ARG_ENABLE(stack-smash-protection,
269         AC_HELP_STRING([--enable-stack-smash-protection], [Enable GNU GCC stack smash protection]))
271 AC_ARG_ENABLE(valgrind-testing,
272 AC_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) ;;
277 esac],[FLAC__TEST_WITH_VALGRIND=no])
278 AC_SUBST(FLAC__TEST_WITH_VALGRIND)
280 AC_ARG_ENABLE(doxygen-docs,
281 AC_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) ;;
286 esac],[enable_doxygen_docs=true])
287 if test "x$enable_doxygen_docs" != xfalse ; then
288         AC_CHECK_PROGS(DOXYGEN, doxygen)
290 AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
292 AC_ARG_ENABLE(local-xmms-plugin,
293 AC_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) ;;
298 esac],[install_xmms_plugin_locally=false])
299 AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
301 AC_ARG_ENABLE(xmms-plugin,
302 AC_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) ;;
307 esac],[enable_xmms_plugin=true])
308 if 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]))
311 AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
313 dnl build FLAC++ or not
314 AC_ARG_ENABLE([cpplibs],
315 AC_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) ;;
320 esac], [disable_cpplibs=false])
321 AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
323 dnl check for ogg library
324 AC_ARG_ENABLE([ogg],
325         AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
326         [ want_ogg=$enableval ], [ want_ogg=yes ] )
328 if 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]))
332 AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
333 if test "x$have_ogg" = xyes ; then
334         AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library])
335         OGG_PACKAGE="ogg"
336 else
337         AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0)
338         have_ogg=no
340 AC_SUBST(OGG_PACKAGE)
342 dnl check for i18n(internationalization); these are from libiconv/gettext
343 AM_ICONV
344 AM_LANGINFO_CODESET
346 AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
347 AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
348 if test -n "$DOCBOOK_TO_MAN" ; then
349 AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
350 AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
353 # only matters for x86
354 AC_CHECK_PROGS(NASM, nasm)
355 AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
356 if test -n "$NASM" ; then
357 AC_DEFINE(FLAC__HAS_NASM)
358 AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
361 # only matters for PowerPC
362 AC_CHECK_PROGS(AS, as, as)
363 AC_CHECK_PROGS(GAS, gas, gas)
365 # try -v (apple as) and --version (gas) at the same time
366 test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
368 AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
369 AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
370 if test "$AS" = "as" ; then
371 AC_DEFINE(FLAC__HAS_AS)
372 AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
374 if test "$AS" = "gas" ; then
375 # funniest. macro. ever.
376 AC_DEFINE(FLAC__HAS_GAS)
377 AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
380 if test "x$debug" = xtrue; then
381         CPPFLAGS="-DDEBUG $CPPFLAGS"
382         CFLAGS="-g $CFLAGS"
383 else
384         CPPFLAGS="-DNDEBUG $CPPFLAGS"
385         if test "x$GCC" = xyes; then
386                 if test "x$user_cflags" = x; then
387                         CFLAGS="-O3 -funroll-loops -Wall -W -Winline"
388                 fi
389         fi
392 XIPH_GCC_VERSION
394 if test x$ac_cv_c_compiler_gnu = xyes ; then
395         CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Wunreachable-code " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Winline -Wconversion
396         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
398         XIPH_ADD_CFLAGS([-Wdeclaration-after-statement])
399         XIPH_ADD_CFLAGS([-D_FORTIFY_SOURCE=2])
401         AC_LANG_PUSH([C++])
402         XIPH_ADD_CXXFLAGS([-Weffc++])
403         AC_LANG_POP([C++])
405         if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then
406                 CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
407                 CFLAGS="$CFLAGS -fvisibility=hidden"
408                 CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
409                 fi
411         if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = macho; then
412                 CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR"
413                 CFLAGS="$CFLAGS -fvisibility=hidden"
414                 CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
415                 fi
417         if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then
418                 XIPH_ADD_CFLAGS([-fgnu89-inline])
419                 fi
421         if test "x$asm_optimisation" = "xyes" ; then
422                 XIPH_ADD_CFLAGS([-msse2])
423                 fi
425         fi
427 XIPH_ADD_CFLAGS([-Wextra])
429 if test x$enable_werror = "xyes" ; then
430         XIPH_ADD_CFLAGS([-Werror])
431         AC_LANG_PUSH([C++])
432         XIPH_ADD_CXXFLAGS([-Werror])
433         AC_LANG_POP([C++])
434         fi
437 if test x$enable_stack_smash_protection = "xyes" ; then
438         XIPH_GCC_STACK_PROTECTOR
439         XIPH_GXX_STACK_PROTECTOR
440         fi
442 #@@@
443 AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
444 AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
446 AC_CONFIG_FILES([ \
447         Makefile \
448         src/Makefile \
449         src/libFLAC/Makefile \
450         src/libFLAC/flac.pc \
451         src/libFLAC/ia32/Makefile \
452         src/libFLAC/ppc/Makefile \
453         src/libFLAC/ppc/as/Makefile \
454         src/libFLAC/ppc/gas/Makefile \
455         src/libFLAC/include/Makefile \
456         src/libFLAC/include/private/Makefile \
457         src/libFLAC/include/protected/Makefile \
458         src/libFLAC++/Makefile \
459         src/libFLAC++/flac++.pc \
460         src/flac/Makefile \
461         src/metaflac/Makefile \
462         src/plugin_common/Makefile \
463         src/plugin_xmms/Makefile \
464         src/share/Makefile \
465         src/test_grabbag/Makefile \
466         src/test_grabbag/cuesheet/Makefile \
467         src/test_grabbag/picture/Makefile \
468         src/test_libs_common/Makefile \
469         src/test_libFLAC/Makefile \
470         src/test_libFLAC++/Makefile \
471         src/test_seeking/Makefile \
472         src/test_streams/Makefile \
473         src/utils/Makefile \
474         src/utils/flacdiff/Makefile \
475         src/utils/flactimer/Makefile \
476         examples/Makefile \
477         examples/c/Makefile \
478         examples/c/decode/Makefile \
479         examples/c/decode/file/Makefile \
480         examples/c/encode/Makefile \
481         examples/c/encode/file/Makefile \
482         examples/cpp/Makefile \
483         examples/cpp/decode/Makefile \
484         examples/cpp/decode/file/Makefile \
485         examples/cpp/encode/Makefile \
486         examples/cpp/encode/file/Makefile \
487         include/Makefile \
488         include/FLAC/Makefile \
489         include/FLAC++/Makefile \
490         include/share/Makefile \
491         include/share/grabbag/Makefile \
492         include/test_libs_common/Makefile \
493         doc/Doxyfile \
494         doc/Makefile \
495         doc/html/Makefile \
496         doc/html/images/Makefile \
497         m4/Makefile \
498         man/Makefile \
499         test/common.sh \
500         test/Makefile \
501         test/cuesheets/Makefile \
502         test/flac-to-flac-metadata-test-files/Makefile \
503         test/metaflac-test-files/Makefile \
504         test/pictures/Makefile \
505         build/Makefile \
506         objs/Makefile \
507         objs/debug/Makefile \
508         objs/debug/bin/Makefile \
509         objs/debug/lib/Makefile \
510         objs/release/Makefile \
511         objs/release/bin/Makefile \
512         objs/release/lib/Makefile \
514 AC_OUTPUT
516 AC_MSG_RESULT([
517 -=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
519   Configuration summary :
521     FLAC version : ........................ ${VERSION}
523     Host CPU : ............................ ${host_cpu}
524     Host Vendor : ......................... ${host_vendor}
525     Host OS : ............................. ${host_os}
528         echo "    Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
529 if test x$ac_cv_c_compiler_gnu = xyes ; then
530         echo "    GCC version : ......................... ${GCC_VERSION}"
532         echo "    Compiler is Clang : ................... ${xiph_cv_c_compiler_clang}"
533         echo "    SSE optimizations : ................... ${sse_os}"
534         echo "    Asm optimizations : ................... ${asm_optimisation}"
535         echo "    Ogg/FLAC support : .................... ${have_ogg}"
536 echo