openbsd-ports/audio/ac3dec/patches/patch-libac3_Makefile_in
jakemsr 419556f518 OSS audio cleanup
- include sys/ioctl.h before soundcard.h
- use /dev/audio, not /dev/dsp
- use a proper value for SNDCTL_DSP_SETFRAGMENT
2007-10-29 07:59:27 +00:00

21 lines
827 B
Plaintext

$OpenBSD: patch-libac3_Makefile_in,v 1.2 2007/10/29 07:59:27 jakemsr Exp $
--- libac3/Makefile.in.orig Wed Mar 29 16:55:28 2000
+++ libac3/Makefile.in Mon Oct 29 00:13:50 2007
@@ -70,8 +70,6 @@ VERSION = @VERSION@
AUTOMAKE_OPTIONS = 1.3 foreign
-CFLAGS = -Wall -Werror -O1 -g
-
noinst_LIBRARIES = libac3.a
libac3_a_SOURCES = bitstream.c decode.c imdct.c coeff.c exponent.c stats.c bit_allocate.c parse.c crc.c debug.c rematrix.c downmix.c dither.c sanity_check.c
@@ -94,6 +92,7 @@ libac3_a_OBJECTS = bitstream.o decode.o imdct.o coeff
stats.o bit_allocate.o parse.o crc.o debug.o rematrix.o downmix.o \
dither.o sanity_check.o
AR = ar
+CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@