~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  FLAC - Free Lossless Audio Codec
2
 
#  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 
2
#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3
3
#
4
4
#  This file is part the FLAC project.  FLAC is comprised of several
5
5
#  components distributed under difference licenses.  The codec libraries
19
19
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
20
20
 
21
21
AC_INIT(src/flac/main.c)
22
 
AM_INIT_AUTOMAKE(flac, 1.1.2)
 
22
AM_INIT_AUTOMAKE(flac, 1.1.4)
23
23
 
24
24
# Don't automagically regenerate autoconf/automake generated files unless
25
25
# explicitly requested.  Eases autobuilding -mdz
32
32
sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
33
33
chmod +x libtool-disable-static
34
34
 
 
35
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
 
36
 
35
37
AM_PROG_AS
36
38
AC_PROG_CXX
37
39
AC_PROG_MAKE_SET
38
40
 
 
41
AC_SYS_LARGEFILE
 
42
AC_FUNC_FSEEKO
 
43
 
 
44
#@@@ new name is AC_CONFIG_HEADERS
 
45
AM_CONFIG_HEADER(config.h)
 
46
 
 
47
AC_C_BIGENDIAN
 
48
 
39
49
AC_CHECK_TYPES(socklen_t, [], [])
40
50
 
41
51
dnl check for getopt in standard library
43
53
AC_CHECK_FUNCS(getopt_long, [], [])
44
54
 
45
55
case "$host_cpu" in
46
 
        i*86)   cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
47
 
        powerpc)        cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
48
 
        sparc)  cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
 
56
        i*86)
 
57
                cpu_ia32=true
 
58
                AC_DEFINE(FLAC__CPU_IA32)
 
59
                AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
 
60
                ;;
 
61
        powerpc)
 
62
                cpu_ppc=true
 
63
                AC_DEFINE(FLAC__CPU_PPC)
 
64
                AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
 
65
                ;;
 
66
        sparc)
 
67
                cpu_sparc=true
 
68
                AC_DEFINE(FLAC__CPU_SPARC)
 
69
                AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
 
70
                ;;
49
71
esac
50
 
AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
51
 
AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
52
 
AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
 
72
AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
 
73
AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
 
74
AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
53
75
case "$host" in
54
76
        i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
 
77
        *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
 
78
        *-*-darwin*) OBJ_FORMAT=macho ;;
55
79
        *) OBJ_FORMAT=elf ;;
56
80
esac
57
81
AC_SUBST(OBJ_FORMAT)
58
82
case "$host" in
59
 
        *-pc-linux-gnu) sys_linux=true ; AC_DEFINE(FLAC__SYS_LINUX) ;;
60
 
        *-*-darwin*) sys_darwin=true ; AC_DEFINE(FLAC__SYS_DARWIN) ;;
 
83
        *-pc-linux-gnu)
 
84
                sys_linux=true
 
85
                AC_DEFINE(FLAC__SYS_LINUX)
 
86
                AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
 
87
                ;;
 
88
        *-*-darwin*)
 
89
                sys_darwin=true
 
90
                AC_DEFINE(FLAC__SYS_DARWIN)
 
91
                AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
 
92
                ;;
61
93
esac
62
 
AM_CONDITIONAL(FLaC__SYS_DARWIN, test x$sys_darwin = xtrue)
63
 
AM_CONDITIONAL(FLaC__SYS_LINUX, test x$sys_linux = xtrue)
 
94
AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
 
95
AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
64
96
 
65
 
if test x$cpu_ia32 = xtrue ; then
 
97
if test "x$cpu_ia32" = xtrue ; then
66
98
AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
 
99
AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
67
100
fi
68
101
 
69
 
AC_ARG_ENABLE(asm-optimizations, [  --disable-asm-optimizations    Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
70
 
AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
71
 
if test x$asm_opt = xno ; then
 
102
AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
 
103
AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
 
104
if test "x$asm_opt" = xno ; then
72
105
AC_DEFINE(FLAC__NO_ASM)
 
106
AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
73
107
fi
74
108
 
75
109
AC_ARG_ENABLE(debug,
76
 
[  --enable-debug                 Turn on debugging],
 
110
AC_HELP_STRING([--enable-debug], [Turn on debugging]),
77
111
[case "${enableval}" in
78
112
        yes) debug=true ;;
79
113
        no)  debug=false ;;
80
114
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
81
115
esac],[debug=false])
82
 
AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
 
116
AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
83
117
 
84
118
AC_ARG_ENABLE(sse,
85
 
[  --enable-sse                   Enable SSE support by asserting that the OS supports SSE instructions],
 
119
AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
86
120
[case "${enableval}" in
87
121
        yes) sse_os=true ;;
88
122
        no)  sse_os=false ;;
89
123
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
90
124
esac],[sse_os=false])
91
 
AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
92
 
if test x$sse_os = xtrue ; then
 
125
AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
 
126
if test "x$sse_os" = xtrue ; then
93
127
AC_DEFINE(FLAC__SSE_OS)
 
128
AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
94
129
fi
95
130
 
96
131
AC_ARG_ENABLE(3dnow,
97
 
[  --disable-3dnow                Disable 3DNOW! optimizations],
 
132
AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
98
133
[case "${enableval}" in
99
134
        yes) use_3dnow=true ;;
100
135
        no)  use_3dnow=false ;;
101
136
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
102
137
esac],[use_3dnow=true])
103
 
AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
104
 
if test x$use_3dnow = xtrue ; then
 
138
AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
 
139
if test "x$use_3dnow" = xtrue ; then
105
140
AC_DEFINE(FLAC__USE_3DNOW)
 
141
AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
106
142
fi
107
143
 
108
144
AC_ARG_ENABLE(altivec,
109
 
[  --disable-altivec              Disable Altivec optimizations],
 
145
AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
110
146
[case "${enableval}" in
111
147
        yes) use_altivec=true ;;
112
148
        no)  use_altivec=false ;;
113
149
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
114
150
esac],[use_altivec=true])
115
 
AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue)
116
 
if test x$use_altivec = xtrue ; then
 
151
AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
 
152
if test "x$use_altivec" = xtrue ; then
117
153
AC_DEFINE(FLAC__USE_ALTIVEC)
 
154
AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
118
155
fi
119
156
 
120
 
AC_ARG_ENABLE(local-xmms-plugin,
121
 
[  --enable-local-xmms-plugin     Install XMMS plugin to ~/.xmms/Plugins instead of system location],
 
157
AC_ARG_ENABLE(thorough-tests,
 
158
AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
122
159
[case "${enableval}" in
123
 
        yes) install_xmms_plugin_locally=true ;;
124
 
        no)  install_xmms_plugin_locally=false ;;
125
 
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
126
 
esac],[install_xmms_plugin_locally=false])
127
 
AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test x$install_xmms_plugin_locally = xtrue)
128
 
 
 
160
        yes) thorough_tests=true ;;
 
161
        no)  thorough_tests=false ;;
 
162
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
 
163
esac],[thorough_tests=true])
129
164
AC_ARG_ENABLE(exhaustive-tests,
130
 
[  --enable-exhaustive-tests      Enable exhaustive testing],
 
165
AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
131
166
[case "${enableval}" in
132
167
        yes) exhaustive_tests=true ;;
133
168
        no)  exhaustive_tests=false ;;
134
169
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
135
170
esac],[exhaustive_tests=false])
136
 
AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
137
 
if test x$exhaustive_tests = xtrue ; then
138
 
AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
 
171
if test "x$thorough_tests" = xfalse ; then
 
172
FLAC__TEST_LEVEL=0
 
173
elif test "x$exhaustive_tests" = xfalse ; then
 
174
FLAC__TEST_LEVEL=1
 
175
else
 
176
FLAC__TEST_LEVEL=2
139
177
fi
 
178
AC_SUBST(FLAC__TEST_LEVEL)
140
179
 
141
180
AC_ARG_ENABLE(valgrind-testing,
142
 
[  --enable-valgrind-testing      Run all tests inside Valgrind],
 
181
AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
143
182
[case "${enableval}" in
144
 
        yes) valgrind_testing=true ;;
145
 
        no)  valgrind_testing=false ;;
 
183
        yes) FLAC__TEST_WITH_VALGRIND=yes ;;
 
184
        no)  FLAC__TEST_WITH_VALGRIND=no ;;
146
185
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
147
 
esac],[valgrind_testing=false])
148
 
AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue)
149
 
if test x$valgrind_testing = xtrue ; then
150
 
AC_DEFINE(FLAC__VALGRIND_TESTING)
151
 
fi
 
186
esac],[FLAC__TEST_WITH_VALGRIND=no])
 
187
AC_SUBST(FLAC__TEST_WITH_VALGRIND)
 
188
 
 
189
AC_ARG_ENABLE(doxygen-docs,
 
190
AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
 
191
[case "${enableval}" in
 
192
        yes) enable_doxygen_docs=true ;;
 
193
        no)  enable_doxygen_docs=false ;;
 
194
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
 
195
esac],[enable_doxygen_docs=true])
 
196
if test "x$enable_doxygen_docs" != xfalse ; then
 
197
        AC_CHECK_PROGS(DOXYGEN, doxygen)
 
198
fi
 
199
AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
 
200
 
 
201
AC_ARG_ENABLE(local-xmms-plugin,
 
202
AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
 
203
[case "${enableval}" in
 
204
        yes) install_xmms_plugin_locally=true ;;
 
205
        no)  install_xmms_plugin_locally=false ;;
 
206
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
 
207
esac],[install_xmms_plugin_locally=false])
 
208
AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
 
209
 
 
210
AC_ARG_ENABLE(xmms-plugin,
 
211
AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
 
212
[case "${enableval}" in
 
213
        yes) enable_xmms_plugin=true ;;
 
214
        no)  enable_xmms_plugin=false ;;
 
215
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
 
216
esac],[enable_xmms_plugin=true])
 
217
if test "x$enable_xmms_plugin" != xfalse ; then
 
218
        AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
 
219
fi
 
220
AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
152
221
 
153
222
dnl check for ogg library
154
 
XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
155
 
AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
156
 
if test x$have_ogg = xyes ; then
 
223
AC_ARG_ENABLE([ogg],
 
224
        AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
 
225
        [ want_ogg=$enableval ], [ want_ogg=yes ] )
 
226
 
 
227
if test "x$want_ogg" != "xno"; then
 
228
        XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
 
229
fi
 
230
 
 
231
AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
 
232
if test "x$have_ogg" = xyes ; then
157
233
AC_DEFINE(FLAC__HAS_OGG)
 
234
AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
158
235
fi
159
236
 
160
 
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
161
 
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
162
 
 
163
237
dnl check for i18n(internationalization); these are from libiconv/gettext
164
238
AM_ICONV
165
239
AM_LANGINFO_CODESET
166
240
 
167
 
AC_CHECK_PROGS(DOXYGEN, doxygen)
168
 
AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
169
 
if test -n "$DOXYGEN" ; then
170
 
AC_DEFINE(FLAC__HAS_DOXYGEN)
171
 
fi
172
 
 
173
241
AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
174
242
AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
175
243
if test -n "$DOCBOOK_TO_MAN" ; then
176
244
AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
 
245
AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
177
246
fi
178
247
 
179
248
# only matters for x86
181
250
AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
182
251
if test -n "$NASM" ; then
183
252
AC_DEFINE(FLAC__HAS_NASM)
 
253
AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
184
254
fi
185
255
 
186
256
# only matters for PowerPC
187
 
AC_CHECK_PROGS(AS, as)
188
 
AC_CHECK_PROGS(GAS, gas)
189
 
AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS")
190
 
AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS")
191
 
if test -n "$AS" ; then
 
257
AC_CHECK_PROGS(AS, as, as)
 
258
AC_CHECK_PROGS(GAS, gas, gas)
 
259
 
 
260
# try -v (apple as) and --version (gas) at the same time
 
261
test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
 
262
 
 
263
AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
 
264
AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
 
265
if test "$AS" = "as" ; then
192
266
AC_DEFINE(FLAC__HAS_AS)
 
267
AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
193
268
fi
194
 
if test -n "$GAS" ; then
 
269
if test "$AS" = "gas" ; then
195
270
# funniest. macro. ever.
196
271
AC_DEFINE(FLAC__HAS_GAS)
 
272
AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
197
273
fi
198
274
 
199
275
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
200
 
if test x$debug = xtrue; then
201
 
        OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
 
276
if test "x$debug" = xtrue; then
 
277
        OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -DDEBUG"
202
278
else
203
 
        OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
204
 
        if test x$GCC = xyes; then
205
 
                OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
 
279
        OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -DNDEBUG"
 
280
        if test "x$GCC" = xyes; then
 
281
                OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
206
282
        fi
207
283
fi
208
284
CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
209
285
CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
210
286
 
211
 
#@@@@@@
 
287
#@@@
212
288
AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
213
289
AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
214
290
 
215
 
AM_CONFIG_HEADER(config.h)
216
 
AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA,  [define to align allocated memory on 32-byte boundaries])
217
 
AH_TEMPLATE(FLAC__CPU_IA32,  [define if building for ia32/i386])
218
 
AH_TEMPLATE(FLAC__CPU_PPC,  [define if building for PowerPC])
219
 
AH_TEMPLATE(FLAC__CPU_SPARC,  [define if building for SPARC])
220
 
AH_TEMPLATE(FLAC__SYS_DARWIN,  [define if building for Darwin / MacOS X])
221
 
AH_TEMPLATE(FLAC__SYS_LINUX,  [define if building for Linux])
222
 
AH_TEMPLATE(FLAC__EXHAUSTIVE_TESTS,  [define to run even more tests])
223
 
AH_TEMPLATE(FLAC__VALGRIND_TESTING,  [define to enable use of Valgrind in testers])
224
 
AH_TEMPLATE(FLAC__HAS_DOXYGEN,  [define if you have Doxygen])
225
 
AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN,  [define if you have docbook-to-man or docbook2man])
226
 
AH_TEMPLATE(FLAC__HAS_NASM,  [define if you are compiling for x86 and have the NASM assembler])
227
 
AH_TEMPLATE(FLAC__HAS_AS,  [define if you are compiling for PowerPC and have the 'as' assembler])
228
 
AH_TEMPLATE(FLAC__HAS_GAS,  [define if you are compiling for PowerPC and have the 'gas' assembler])
229
 
AH_TEMPLATE(FLAC__HAS_OGG,  [define if you have the ogg library])
230
 
AH_TEMPLATE(FLAC__NO_ASM,  [define to disable use of assembly code])
231
 
AH_TEMPLATE(FLAC__SSE_OS,  [define if your operating system supports SSE instructions])
232
 
AH_TEMPLATE(FLAC__USE_3DNOW,  [define to enable use of 3Dnow! instructions])
233
 
AH_TEMPLATE(FLAC__USE_ALTIVEC,  [define to enable use of Altivec instructions])
234
 
 
235
 
AC_OUTPUT( \
 
291
AC_CONFIG_FILES([ \
236
292
        Makefile \
237
293
        src/Makefile \
238
294
        src/libFLAC/Makefile \
 
295
        src/libFLAC/flac.pc \
239
296
        src/libFLAC/ia32/Makefile \
240
297
        src/libFLAC/ppc/Makefile \
241
298
        src/libFLAC/ppc/as/Makefile \
244
301
        src/libFLAC/include/private/Makefile \
245
302
        src/libFLAC/include/protected/Makefile \
246
303
        src/libFLAC++/Makefile \
247
 
        src/libOggFLAC/Makefile \
248
 
        src/libOggFLAC/include/Makefile \
249
 
        src/libOggFLAC/include/private/Makefile \
250
 
        src/libOggFLAC/include/protected/Makefile \
251
 
        src/libOggFLAC++/Makefile \
 
304
        src/libFLAC++/flac++.pc \
252
305
        src/flac/Makefile \
253
306
        src/metaflac/Makefile \
254
307
        src/monkeys_audio_utilities/Makefile \
269
322
        src/share/utf8/Makefile \
270
323
        src/test_grabbag/Makefile \
271
324
        src/test_grabbag/cuesheet/Makefile \
 
325
        src/test_grabbag/picture/Makefile \
 
326
        src/test_libs_common/Makefile \
272
327
        src/test_libFLAC/Makefile \
273
328
        src/test_libFLAC++/Makefile \
274
 
        src/test_libOggFLAC/Makefile \
275
 
        src/test_libOggFLAC++/Makefile \
276
329
        src/test_seeking/Makefile \
277
330
        src/test_streams/Makefile \
278
331
        include/Makefile \
279
332
        include/FLAC/Makefile \
280
333
        include/FLAC++/Makefile \
281
 
        include/OggFLAC/Makefile \
282
 
        include/OggFLAC++/Makefile \
283
334
        include/share/Makefile \
284
335
        include/share/grabbag/Makefile \
 
336
        include/test_libs_common/Makefile \
285
337
        doc/Makefile \
286
338
        doc/html/Makefile \
287
339
        doc/html/images/Makefile \
 
340
        doc/html/images/hw/Makefile \
288
341
        doc/html/ru/Makefile \
 
342
        m4/Makefile \
289
343
        man/Makefile \
290
344
        test/Makefile \
291
345
        test/cuesheets/Makefile \
 
346
        test/flac-to-flac-metadata-test-files/Makefile \
 
347
        test/metaflac-test-files/Makefile \
 
348
        test/pictures/Makefile \
292
349
        build/Makefile \
293
350
        obj/Makefile \
294
351
        obj/debug/Makefile \
298
355
        obj/release/bin/Makefile \
299
356
        obj/release/lib/Makefile \
300
357
        flac.pbproj/Makefile \
301
 
)
 
358
])
 
359
AC_OUTPUT