openbsd-ports/audio/flac/patches/patch-configure_in
naddy 433823ab2a Import of flac 0.8.
flac is a free lossless audio codec.  It does not compete with
MP3/OggVorbis, which are lossy compression schemes.  Instead, flac
can be considered an equivalent to gzip/bzip2, optimized for audio
recordings (wav files).
2001-03-28 12:27:20 +00:00

27 lines
986 B
Plaintext

$OpenBSD: patch-configure_in,v 1.1.1.1 2001/03/28 12:27:20 naddy Exp $
--- configure.in.orig Fri Feb 23 22:13:02 2001
+++ configure.in Mon Mar 26 02:56:38 2001
@@ -22,11 +22,11 @@ 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 \
@@ -34,6 +34,7 @@ AC_OUTPUT( Makefile \
src/libFLAC/Makefile \
src/flac/Makefile \
src/plugin_xmms/Makefile \
+ src/metaflac/Makefile \
src/test_streams/Makefile \
src/test_unit/Makefile \
test/Makefile \