blob: abc1640940498c3e2ea7f07ff86da2be2b097b13 [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)
22AC_INIT([flac], [1.2.1])
23AC_CONFIG_SRCDIR([src/flac/main.c])
24AC_CONFIG_MACRO_DIR([m4])
Max Horn66c0a582012-12-12 21:33:52 +010025AM_INIT_AUTOMAKE([foreign 1.7 -Wall tar-pax no-dist-gzip dist-xz subdir-objects])
Erik de Castro Lopo886b9602012-02-03 05:52:01 +110026m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110027
Miroslav Lichvar18e01542012-12-03 21:04:56 +010028user_cflags=$CFLAGS
29
Cristian Rodríguezf0296252012-04-05 19:39:37 -030030#Prefer whatever the current ISO standard is.
31AC_PROG_CC_STDC
32AC_USE_SYSTEM_EXTENSIONS
Cristian Rodríguez63c874f2012-06-02 17:00:56 -040033m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030034LT_INIT([win32-dll disable-static pic-only])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110035AM_PROG_AS
36AC_PROG_CXX
37AC_PROG_MAKE_SET
38
39AC_SYS_LARGEFILE
40AC_FUNC_FSEEKO
41
42AC_CHECK_SIZEOF(void*,0)
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030043AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110044#@@@ new name is AC_CONFIG_HEADERS
45AM_CONFIG_HEADER(config.h)
46
47AC_LANG_PUSH(C++)
48# 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
53AC_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
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110062AC_CHECK_HEADERS(stdint.h)
63AC_SUBST(HAVE_STDINT_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110064AC_CHECK_HEADERS(inttypes.h)
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110065AC_SUBST(HAVE_INTTYPES_H)
66AC_CHECK_HEADERS(byteswap.h)
67AC_SUBST(HAVE_BYTESWAP_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110068
Cristian Rodríguezf0296252012-04-05 19:39:37 -030069AC_CHECK_HEADERS([sys/param.h])
70
Erik de Castro Lopod7bfc772012-02-06 07:15:48 +110071XIPH_C_BSWAP32
72
Max Hornf20164e2012-12-12 21:33:51 +010073ac_cv_c_big_endian=0
74ac_cv_c_little_endian=0
75AC_C_BIGENDIAN([ac_cv_c_big_endian=1], [ac_cv_c_little_endian=1], [
76 AC_MSG_WARN([[*****************************************************************]])
77 AC_MSG_WARN([[*** Not able to determine endian-ness of target processor. ]])
78 AC_MSG_WARN([[*** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in ]])
79 AC_MSG_WARN([[*** config.h may need to be hand editied. ]])
80 AC_MSG_WARN([[*****************************************************************]])
81])
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110082AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
83 [Target processor is big endian.])
84AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
85 [Target processor is little endian.])
86AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
87 [Target processor is big endian.])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110088
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110089# For the XMMS plugin.
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110090AC_CHECK_TYPES(socklen_t, [], [])
91
92dnl check for getopt in standard library
93dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
94AC_CHECK_FUNCS(getopt_long, [], [])
95
96case "$host_cpu" in
97 i*86)
98 cpu_ia32=true
99 AC_DEFINE(FLAC__CPU_IA32)
100 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
101 ;;
102 powerpc)
103 cpu_ppc=true
104 AC_DEFINE(FLAC__CPU_PPC)
105 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
106 ;;
107 sparc)
108 cpu_sparc=true
109 AC_DEFINE(FLAC__CPU_SPARC)
110 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
111 ;;
112esac
113AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
114AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
115AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
116
117case "$host" in
118 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
119 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
120 *-*-darwin*) OBJ_FORMAT=macho ;;
Erik de Castro Lopo0fe97672012-02-05 16:29:43 +1100121 *emx*) OBJ_FORMAT=aout ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100122 *) OBJ_FORMAT=elf ;;
123esac
124AC_SUBST(OBJ_FORMAT)
Erik de Castro Lopob6e64af2012-02-13 19:46:32 +1100125case "$host" in
126 *-gnuspe)
127 abi_spe=true
128 AC_DEFINE(FLAC__CPU_PPC_SPE)
129 AH_TEMPLATE(FLAC__CPU_PPC_SPE, [define if building for PowerPC with SPE ABI])
130 ;;
131esac
132AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100133
134case "$host" in
Erik de Castro Lopo8b4bc4b2012-02-05 16:28:40 +1100135 *-*-cygwin|*mingw*|*emx*)
136 # 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 +1100137 LT_NO_UNDEFINED="-no-undefined"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100138 ;;
139 *)
140 LT_NO_UNDEFINED=
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100141 ;;
142esac
143AC_SUBST(LT_NO_UNDEFINED)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100144
145case "$host" in
146 *-pc-linux-gnu)
147 sys_linux=true
148 AC_DEFINE(FLAC__SYS_LINUX)
149 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
150 ;;
151 *-*-darwin*)
152 sys_darwin=true
153 AC_DEFINE(FLAC__SYS_DARWIN)
154 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
155 ;;
156esac
157AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
158AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
159
160if test "x$cpu_ia32" = xtrue ; then
161AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
162AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
163fi
164
165AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
166dnl ' Terminate the damn single quote
167AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
168if test "x$asm_opt" = xno ; then
169AC_DEFINE(FLAC__NO_ASM)
170AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
171fi
172
173AC_ARG_ENABLE(debug,
174AC_HELP_STRING([--enable-debug], [Turn on debugging]),
175[case "${enableval}" in
176 yes) debug=true ;;
177 no) debug=false ;;
178 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
179esac],[debug=false])
180AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
181
182AC_ARG_ENABLE(sse,
183AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
184[case "${enableval}" in
185 yes) sse_os=true ;;
186 no) sse_os=false ;;
187 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
188esac],[sse_os=false])
189AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
190if test "x$sse_os" = xtrue ; then
191AC_DEFINE(FLAC__SSE_OS)
192AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
193fi
194
195AC_ARG_ENABLE(3dnow,
196AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
197[case "${enableval}" in
198 yes) use_3dnow=true ;;
199 no) use_3dnow=false ;;
200 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
201esac],[use_3dnow=true])
202AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
203if test "x$use_3dnow" = xtrue ; then
204AC_DEFINE(FLAC__USE_3DNOW)
205AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
206fi
207
208AC_ARG_ENABLE(altivec,
209AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
210[case "${enableval}" in
211 yes) use_altivec=true ;;
212 no) use_altivec=false ;;
213 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
214esac],[use_altivec=true])
215AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
216if test "x$use_altivec" = xtrue ; then
217AC_DEFINE(FLAC__USE_ALTIVEC)
218AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
219fi
220
221AC_ARG_ENABLE(thorough-tests,
222AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
223[case "${enableval}" in
224 yes) thorough_tests=true ;;
225 no) thorough_tests=false ;;
226 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
227esac],[thorough_tests=true])
228AC_ARG_ENABLE(exhaustive-tests,
229AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
230[case "${enableval}" in
231 yes) exhaustive_tests=true ;;
232 no) exhaustive_tests=false ;;
233 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
234esac],[exhaustive_tests=false])
235if test "x$thorough_tests" = xfalse ; then
236FLAC__TEST_LEVEL=0
237elif test "x$exhaustive_tests" = xfalse ; then
238FLAC__TEST_LEVEL=1
239else
240FLAC__TEST_LEVEL=2
241fi
242AC_SUBST(FLAC__TEST_LEVEL)
243
244AC_ARG_ENABLE(gcc-werror,
245 AC_HELP_STRING([--enable-gcc-werror], [enable -Werror in all Makefiles]))
246
247AC_ARG_ENABLE(valgrind-testing,
248AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
249[case "${enableval}" in
250 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
251 no) FLAC__TEST_WITH_VALGRIND=no ;;
252 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
253esac],[FLAC__TEST_WITH_VALGRIND=no])
254AC_SUBST(FLAC__TEST_WITH_VALGRIND)
255
256AC_ARG_ENABLE(doxygen-docs,
257AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
258[case "${enableval}" in
259 yes) enable_doxygen_docs=true ;;
260 no) enable_doxygen_docs=false ;;
261 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
262esac],[enable_doxygen_docs=true])
263if test "x$enable_doxygen_docs" != xfalse ; then
264 AC_CHECK_PROGS(DOXYGEN, doxygen)
265fi
266AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
267
268AC_ARG_ENABLE(local-xmms-plugin,
269AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
270[case "${enableval}" in
271 yes) install_xmms_plugin_locally=true ;;
272 no) install_xmms_plugin_locally=false ;;
273 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
274esac],[install_xmms_plugin_locally=false])
275AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
276
277AC_ARG_ENABLE(xmms-plugin,
278AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
279[case "${enableval}" in
280 yes) enable_xmms_plugin=true ;;
281 no) enable_xmms_plugin=false ;;
282 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
283esac],[enable_xmms_plugin=true])
284if test "x$enable_xmms_plugin" != xfalse ; then
285 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
286fi
287AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
288
289dnl build FLAC++ or not
290AC_ARG_ENABLE([cpplibs],
291AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
292[case "${enableval}" in
293 yes) disable_cpplibs=false ;;
294 no) disable_cpplibs=true ;;
295 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
296esac], [disable_cpplibs=false])
297AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
298
299dnl check for ogg library
300AC_ARG_ENABLE([ogg],
301 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
302 [ want_ogg=$enableval ], [ want_ogg=yes ] )
303
304if test "x$want_ogg" != "xno"; then
305 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
306fi
307
308AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
309if test "x$have_ogg" = xyes ; then
Erik de Castro Lopo3e2cd272012-07-04 19:53:31 +1000310 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library])
311else
312 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100313fi
314
315dnl check for i18n(internationalization); these are from libiconv/gettext
316AM_ICONV
317AM_LANGINFO_CODESET
318
319AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
320AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
321if test -n "$DOCBOOK_TO_MAN" ; then
322AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
323AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
324fi
325
326# only matters for x86
327AC_CHECK_PROGS(NASM, nasm)
328AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
329if test -n "$NASM" ; then
330AC_DEFINE(FLAC__HAS_NASM)
331AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
332fi
333
334# only matters for PowerPC
335AC_CHECK_PROGS(AS, as, as)
336AC_CHECK_PROGS(GAS, gas, gas)
337
338# try -v (apple as) and --version (gas) at the same time
339test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
340
341AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
342AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
343if test "$AS" = "as" ; then
344AC_DEFINE(FLAC__HAS_AS)
345AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
346fi
347if test "$AS" = "gas" ; then
348# funniest. macro. ever.
349AC_DEFINE(FLAC__HAS_GAS)
350AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
351fi
352
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100353if test "x$debug" = xtrue; then
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -0300354 CPPFLAGS="-DDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100355 CFLAGS="-g $CFLAGS"
356else
357 CPPFLAGS="-DNDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100358 if test "x$GCC" = xyes; then
Miroslav Lichvar18e01542012-12-03 21:04:56 +0100359 if test "x$user_cflags" = x; then
360 CFLAGS="-O3 -funroll-loops -Wall -W -Winline"
361 fi
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100362 fi
363fi
364
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100365XIPH_GCC_VERSION
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100366
367if test x$ac_cv_c_compiler_gnu = xyes ; then
368 if test x$enable_gcc_werror = "xyes" ; then
Erik de Castro Lopo7c07a0d2012-05-08 20:06:22 +1000369 CFLAGS="-Wall -Wextra -Werror $CFLAGS"
370 CXXFLAGS="-Wall -Wextra -Werror $CXXFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100371 fi
372
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"
377 fi
378fi
379
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100380
381#@@@
382AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
383AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
384
385AC_CONFIG_FILES([ \
386 Makefile \
387 src/Makefile \
388 src/libFLAC/Makefile \
389 src/libFLAC/flac.pc \
390 src/libFLAC/ia32/Makefile \
391 src/libFLAC/ppc/Makefile \
392 src/libFLAC/ppc/as/Makefile \
393 src/libFLAC/ppc/gas/Makefile \
394 src/libFLAC/include/Makefile \
395 src/libFLAC/include/private/Makefile \
396 src/libFLAC/include/protected/Makefile \
397 src/libFLAC++/Makefile \
398 src/libFLAC++/flac++.pc \
399 src/flac/Makefile \
400 src/metaflac/Makefile \
401 src/monkeys_audio_utilities/Makefile \
402 src/monkeys_audio_utilities/flac_mac/Makefile \
403 src/monkeys_audio_utilities/flac_ren/Makefile \
404 src/plugin_common/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100405 src/plugin_xmms/Makefile \
406 src/share/Makefile \
407 src/share/getopt/Makefile \
408 src/share/grabbag/Makefile \
409 src/share/replaygain_analysis/Makefile \
410 src/share/replaygain_synthesis/Makefile \
411 src/share/replaygain_synthesis/include/Makefile \
412 src/share/replaygain_synthesis/include/private/Makefile \
413 src/share/utf8/Makefile \
414 src/test_grabbag/Makefile \
415 src/test_grabbag/cuesheet/Makefile \
416 src/test_grabbag/picture/Makefile \
417 src/test_libs_common/Makefile \
418 src/test_libFLAC/Makefile \
419 src/test_libFLAC++/Makefile \
420 src/test_seeking/Makefile \
421 src/test_streams/Makefile \
422 src/utils/Makefile \
423 src/utils/flacdiff/Makefile \
424 src/utils/flactimer/Makefile \
425 examples/Makefile \
426 examples/c/Makefile \
427 examples/c/decode/Makefile \
428 examples/c/decode/file/Makefile \
429 examples/c/encode/Makefile \
430 examples/c/encode/file/Makefile \
431 examples/cpp/Makefile \
432 examples/cpp/decode/Makefile \
433 examples/cpp/decode/file/Makefile \
434 examples/cpp/encode/Makefile \
435 examples/cpp/encode/file/Makefile \
436 include/Makefile \
437 include/FLAC/Makefile \
438 include/FLAC++/Makefile \
439 include/share/Makefile \
440 include/share/grabbag/Makefile \
441 include/test_libs_common/Makefile \
442 doc/Makefile \
443 doc/html/Makefile \
444 doc/html/images/Makefile \
445 doc/html/images/hw/Makefile \
446 doc/html/ru/Makefile \
447 m4/Makefile \
448 man/Makefile \
449 test/Makefile \
450 test/cuesheets/Makefile \
451 test/flac-to-flac-metadata-test-files/Makefile \
452 test/metaflac-test-files/Makefile \
453 test/pictures/Makefile \
454 build/Makefile \
455 obj/Makefile \
456 obj/debug/Makefile \
457 obj/debug/bin/Makefile \
458 obj/debug/lib/Makefile \
459 obj/release/Makefile \
460 obj/release/bin/Makefile \
461 obj/release/lib/Makefile \
462])
463AC_OUTPUT
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100464
465AC_MSG_RESULT([
466-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
467
468 Configuration summary :
469
470 FLAC version : ........................ ${VERSION}
471
472 Host CPU : ............................ ${host_cpu}
473 Host Vendor : ......................... ${host_vendor}
474 Host OS : ............................. ${host_os}
475])
476
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100477 echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
Max Horncdcb88b2012-12-12 21:33:53 +0100478if test x$ac_cv_c_compiler_gnu = xyes ; then
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100479 echo " GCC version : ......................... ${GCC_VERSION}"
Max Horncdcb88b2012-12-12 21:33:53 +0100480fi