blob: 2db90352129f4a0bc8daa368380bd54f2416bd89 [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])
25AM_INIT_AUTOMAKE([foreign -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
Cristian Rodríguezf0296252012-04-05 19:39:37 -030028#Prefer whatever the current ISO standard is.
29AC_PROG_CC_STDC
30AC_USE_SYSTEM_EXTENSIONS
Cristian Rodríguez63c874f2012-06-02 17:00:56 -040031m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030032LT_INIT([win32-dll disable-static pic-only])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110033AM_PROG_AS
34AC_PROG_CXX
35AC_PROG_MAKE_SET
36
37AC_SYS_LARGEFILE
38AC_FUNC_FSEEKO
39
40AC_CHECK_SIZEOF(void*,0)
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -030041AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110042#@@@ new name is AC_CONFIG_HEADERS
43AM_CONFIG_HEADER(config.h)
44
45AC_LANG_PUSH(C++)
46# c++ flavor first
47AC_C_VARARRAYS
48if test $ac_cv_c_vararrays = yes; then
49 AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.])
50fi
51AC_LANG_POP(C++)
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110052
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110053# c flavor
54AC_HEADER_STDC
Erik de Castro Lopoafedee12012-04-04 20:08:52 +100055AM_PROG_CC_C_O
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110056AC_C_INLINE
57AC_C_VARARRAYS
Cristian Rodríguezf0296252012-04-05 19:39:37 -030058AC_C_TYPEOF
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110059
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110060AC_CHECK_HEADERS(stdint.h)
61AC_SUBST(HAVE_STDINT_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110062AC_CHECK_HEADERS(inttypes.h)
Erik de Castro Lopoa3f43aa2012-02-04 21:08:46 +110063AC_SUBST(HAVE_INTTYPES_H)
64AC_CHECK_HEADERS(byteswap.h)
65AC_SUBST(HAVE_BYTESWAP_H)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110066
Cristian Rodríguezf0296252012-04-05 19:39:37 -030067AC_CHECK_HEADERS([sys/param.h])
68
Erik de Castro Lopod7bfc772012-02-06 07:15:48 +110069XIPH_C_BSWAP32
70
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110071XIPH_C_FIND_ENDIAN
72AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian},
73 [Target processor is big endian.])
74AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian},
75 [Target processor is little endian.])
76AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian},
77 [Target processor is big endian.])
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110078
Erik de Castro Lopo3abb6c92012-02-05 18:58:11 +110079# For the XMMS plugin.
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +110080AC_CHECK_TYPES(socklen_t, [], [])
81
82dnl check for getopt in standard library
83dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
84AC_CHECK_FUNCS(getopt_long, [], [])
85
86case "$host_cpu" in
87 i*86)
88 cpu_ia32=true
89 AC_DEFINE(FLAC__CPU_IA32)
90 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
91 ;;
92 powerpc)
93 cpu_ppc=true
94 AC_DEFINE(FLAC__CPU_PPC)
95 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
96 ;;
97 sparc)
98 cpu_sparc=true
99 AC_DEFINE(FLAC__CPU_SPARC)
100 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
101 ;;
102esac
103AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
104AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
105AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
106
107case "$host" in
108 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
109 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
110 *-*-darwin*) OBJ_FORMAT=macho ;;
Erik de Castro Lopo0fe97672012-02-05 16:29:43 +1100111 *emx*) OBJ_FORMAT=aout ;;
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100112 *) OBJ_FORMAT=elf ;;
113esac
114AC_SUBST(OBJ_FORMAT)
Erik de Castro Lopob6e64af2012-02-13 19:46:32 +1100115case "$host" in
116 *-gnuspe)
117 abi_spe=true
118 AC_DEFINE(FLAC__CPU_PPC_SPE)
119 AH_TEMPLATE(FLAC__CPU_PPC_SPE, [define if building for PowerPC with SPE ABI])
120 ;;
121esac
122AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100123
124case "$host" in
Erik de Castro Lopo8b4bc4b2012-02-05 16:28:40 +1100125 *-*-cygwin|*mingw*|*emx*)
126 # 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 +1100127 LT_NO_UNDEFINED="-no-undefined"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100128 ;;
129 *)
130 LT_NO_UNDEFINED=
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100131 ;;
132esac
133AC_SUBST(LT_NO_UNDEFINED)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100134
135case "$host" in
136 *-pc-linux-gnu)
137 sys_linux=true
138 AC_DEFINE(FLAC__SYS_LINUX)
139 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
140 ;;
141 *-*-darwin*)
142 sys_darwin=true
143 AC_DEFINE(FLAC__SYS_DARWIN)
144 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
145 ;;
146esac
147AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
148AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
149
150if test "x$cpu_ia32" = xtrue ; then
151AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
152AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
153fi
154
155AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
156dnl ' Terminate the damn single quote
157AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
158if test "x$asm_opt" = xno ; then
159AC_DEFINE(FLAC__NO_ASM)
160AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
161fi
162
163AC_ARG_ENABLE(debug,
164AC_HELP_STRING([--enable-debug], [Turn on debugging]),
165[case "${enableval}" in
166 yes) debug=true ;;
167 no) debug=false ;;
168 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
169esac],[debug=false])
170AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
171
172AC_ARG_ENABLE(sse,
173AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
174[case "${enableval}" in
175 yes) sse_os=true ;;
176 no) sse_os=false ;;
177 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
178esac],[sse_os=false])
179AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
180if test "x$sse_os" = xtrue ; then
181AC_DEFINE(FLAC__SSE_OS)
182AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
183fi
184
185AC_ARG_ENABLE(3dnow,
186AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
187[case "${enableval}" in
188 yes) use_3dnow=true ;;
189 no) use_3dnow=false ;;
190 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
191esac],[use_3dnow=true])
192AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
193if test "x$use_3dnow" = xtrue ; then
194AC_DEFINE(FLAC__USE_3DNOW)
195AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
196fi
197
198AC_ARG_ENABLE(altivec,
199AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
200[case "${enableval}" in
201 yes) use_altivec=true ;;
202 no) use_altivec=false ;;
203 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
204esac],[use_altivec=true])
205AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
206if test "x$use_altivec" = xtrue ; then
207AC_DEFINE(FLAC__USE_ALTIVEC)
208AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
209fi
210
211AC_ARG_ENABLE(thorough-tests,
212AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
213[case "${enableval}" in
214 yes) thorough_tests=true ;;
215 no) thorough_tests=false ;;
216 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
217esac],[thorough_tests=true])
218AC_ARG_ENABLE(exhaustive-tests,
219AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
220[case "${enableval}" in
221 yes) exhaustive_tests=true ;;
222 no) exhaustive_tests=false ;;
223 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
224esac],[exhaustive_tests=false])
225if test "x$thorough_tests" = xfalse ; then
226FLAC__TEST_LEVEL=0
227elif test "x$exhaustive_tests" = xfalse ; then
228FLAC__TEST_LEVEL=1
229else
230FLAC__TEST_LEVEL=2
231fi
232AC_SUBST(FLAC__TEST_LEVEL)
233
234AC_ARG_ENABLE(gcc-werror,
235 AC_HELP_STRING([--enable-gcc-werror], [enable -Werror in all Makefiles]))
236
237AC_ARG_ENABLE(valgrind-testing,
238AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
239[case "${enableval}" in
240 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
241 no) FLAC__TEST_WITH_VALGRIND=no ;;
242 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
243esac],[FLAC__TEST_WITH_VALGRIND=no])
244AC_SUBST(FLAC__TEST_WITH_VALGRIND)
245
246AC_ARG_ENABLE(doxygen-docs,
247AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
248[case "${enableval}" in
249 yes) enable_doxygen_docs=true ;;
250 no) enable_doxygen_docs=false ;;
251 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
252esac],[enable_doxygen_docs=true])
253if test "x$enable_doxygen_docs" != xfalse ; then
254 AC_CHECK_PROGS(DOXYGEN, doxygen)
255fi
256AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
257
258AC_ARG_ENABLE(local-xmms-plugin,
259AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
260[case "${enableval}" in
261 yes) install_xmms_plugin_locally=true ;;
262 no) install_xmms_plugin_locally=false ;;
263 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
264esac],[install_xmms_plugin_locally=false])
265AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
266
267AC_ARG_ENABLE(xmms-plugin,
268AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
269[case "${enableval}" in
270 yes) enable_xmms_plugin=true ;;
271 no) enable_xmms_plugin=false ;;
272 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
273esac],[enable_xmms_plugin=true])
274if test "x$enable_xmms_plugin" != xfalse ; then
275 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
276fi
277AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
278
279dnl build FLAC++ or not
280AC_ARG_ENABLE([cpplibs],
281AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
282[case "${enableval}" in
283 yes) disable_cpplibs=false ;;
284 no) disable_cpplibs=true ;;
285 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
286esac], [disable_cpplibs=false])
287AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
288
289dnl check for ogg library
290AC_ARG_ENABLE([ogg],
291 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
292 [ want_ogg=$enableval ], [ want_ogg=yes ] )
293
294if test "x$want_ogg" != "xno"; then
295 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
296fi
297
298AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
299if test "x$have_ogg" = xyes ; then
Erik de Castro Lopo3e2cd272012-07-04 19:53:31 +1000300 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library])
301else
302 AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0)
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100303fi
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
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100343if test "x$debug" = xtrue; then
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -0300344 CPPFLAGS="-DDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100345 CFLAGS="-g $CFLAGS"
346else
347 CPPFLAGS="-DNDEBUG $CPPFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100348 if test "x$GCC" = xyes; then
Cristian Rodríguez9b7cb222012-04-07 19:24:21 -0300349 CFLAGS="-O3 -funroll-loops -Wall -W -Winline $CFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100350 fi
351fi
352
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100353XIPH_GCC_VERSION
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100354
355if test x$ac_cv_c_compiler_gnu = xyes ; then
356 if test x$enable_gcc_werror = "xyes" ; then
Erik de Castro Lopo7c07a0d2012-05-08 20:06:22 +1000357 CFLAGS="-Wall -Wextra -Werror $CFLAGS"
358 CXXFLAGS="-Wall -Wextra -Werror $CXXFLAGS"
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100359 fi
360 fi
361
362
363#@@@
364AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
365AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
366
367AC_CONFIG_FILES([ \
368 Makefile \
369 src/Makefile \
370 src/libFLAC/Makefile \
371 src/libFLAC/flac.pc \
372 src/libFLAC/ia32/Makefile \
373 src/libFLAC/ppc/Makefile \
374 src/libFLAC/ppc/as/Makefile \
375 src/libFLAC/ppc/gas/Makefile \
376 src/libFLAC/include/Makefile \
377 src/libFLAC/include/private/Makefile \
378 src/libFLAC/include/protected/Makefile \
379 src/libFLAC++/Makefile \
380 src/libFLAC++/flac++.pc \
381 src/flac/Makefile \
382 src/metaflac/Makefile \
383 src/monkeys_audio_utilities/Makefile \
384 src/monkeys_audio_utilities/flac_mac/Makefile \
385 src/monkeys_audio_utilities/flac_ren/Makefile \
386 src/plugin_common/Makefile \
Erik de Castro Lopo06ed05e2012-02-01 17:55:50 +1100387 src/plugin_xmms/Makefile \
388 src/share/Makefile \
389 src/share/getopt/Makefile \
390 src/share/grabbag/Makefile \
391 src/share/replaygain_analysis/Makefile \
392 src/share/replaygain_synthesis/Makefile \
393 src/share/replaygain_synthesis/include/Makefile \
394 src/share/replaygain_synthesis/include/private/Makefile \
395 src/share/utf8/Makefile \
396 src/test_grabbag/Makefile \
397 src/test_grabbag/cuesheet/Makefile \
398 src/test_grabbag/picture/Makefile \
399 src/test_libs_common/Makefile \
400 src/test_libFLAC/Makefile \
401 src/test_libFLAC++/Makefile \
402 src/test_seeking/Makefile \
403 src/test_streams/Makefile \
404 src/utils/Makefile \
405 src/utils/flacdiff/Makefile \
406 src/utils/flactimer/Makefile \
407 examples/Makefile \
408 examples/c/Makefile \
409 examples/c/decode/Makefile \
410 examples/c/decode/file/Makefile \
411 examples/c/encode/Makefile \
412 examples/c/encode/file/Makefile \
413 examples/cpp/Makefile \
414 examples/cpp/decode/Makefile \
415 examples/cpp/decode/file/Makefile \
416 examples/cpp/encode/Makefile \
417 examples/cpp/encode/file/Makefile \
418 include/Makefile \
419 include/FLAC/Makefile \
420 include/FLAC++/Makefile \
421 include/share/Makefile \
422 include/share/grabbag/Makefile \
423 include/test_libs_common/Makefile \
424 doc/Makefile \
425 doc/html/Makefile \
426 doc/html/images/Makefile \
427 doc/html/images/hw/Makefile \
428 doc/html/ru/Makefile \
429 m4/Makefile \
430 man/Makefile \
431 test/Makefile \
432 test/cuesheets/Makefile \
433 test/flac-to-flac-metadata-test-files/Makefile \
434 test/metaflac-test-files/Makefile \
435 test/pictures/Makefile \
436 build/Makefile \
437 obj/Makefile \
438 obj/debug/Makefile \
439 obj/debug/bin/Makefile \
440 obj/debug/lib/Makefile \
441 obj/release/Makefile \
442 obj/release/bin/Makefile \
443 obj/release/lib/Makefile \
444])
445AC_OUTPUT
Erik de Castro Lopocaef93e2012-02-26 22:41:44 +1100446
447AC_MSG_RESULT([
448-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
449
450 Configuration summary :
451
452 FLAC version : ........................ ${VERSION}
453
454 Host CPU : ............................ ${host_cpu}
455 Host Vendor : ......................... ${host_vendor}
456 Host OS : ............................. ${host_os}
457])
458
459if test x$ac_cv_c_compiler_gnu = xyes ; then
460 echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
461 echo " GCC version : ......................... ${GCC_VERSION}"
462 fi