blob: 561fdd80b377d8628f5a8661dcac1893aee5de81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$FreeBSD$
--- configure.in.orig Fri Feb 23 22:13:02 2001
+++ configure.in Mon Mar 26 02:57:28 2001
@@ -22,17 +22,18 @@ AM_CONDITIONAL(DEBUG, test x$debug = xtr
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
AM_CONDITIONAL(XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
-CFLAGS='-I./include -I $(top_srcdir)/include -Wall -W'
+CFLAGS="$CFLAGS -I./include -I \$(top_srcdir)/include"
if test x$debug = xtrue; then
- CFLAGS="$CFLAGS -g -O0 -DDEBUG"
+ CFLAGS="$CFLAGS -g -DDEBUG"
else
- CFLAGS="$CFLAGS -O3 -fomit-frame-pointer -funroll-loops -ffast-math -finline-functions -DNDEBUG"
+ CFLAGS="$CFLAGS -DNDEBUG"
fi
AC_OUTPUT( Makefile \
src/Makefile \
src/libFLAC/Makefile \
src/flac/Makefile \
+ src/metaflac/Makefile \
src/plugin_xmms/Makefile \
src/test_streams/Makefile \
src/test_unit/Makefile \
|