diff options
author | jkoshy <jkoshy@FreeBSD.org> | 1999-01-19 11:48:58 +0800 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 1999-01-19 11:48:58 +0800 |
commit | 8b7b8234cc3f1820c7bd2af056571f63803fb0df (patch) | |
tree | 0e8a6ea0a44e429e3bdfe6eb46cd51a0b7dcb18a /audio | |
parent | 4a8f287e6012f830e20b78fc94e1458452e8091a (diff) | |
download | freebsd-ports-gnome-8b7b8234cc3f1820c7bd2af056571f63803fb0df.tar.gz freebsd-ports-gnome-8b7b8234cc3f1820c7bd2af056571f63803fb0df.tar.zst freebsd-ports-gnome-8b7b8234cc3f1820c7bd2af056571f63803fb0df.zip |
Move $(CFLAGS) to end of line to make user-overrides easier.
Requested by: Sheldon Hearn <axl@iafrica.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123/files/patch-aa | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/audio/mpg123/files/patch-aa b/audio/mpg123/files/patch-aa index dd47b259ada1..d8bfa32b010b 100644 --- a/audio/mpg123/files/patch-aa +++ b/audio/mpg123/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Sun Feb 8 23:53:04 1998 -+++ Makefile Wed Nov 25 07:05:28 1998 ++++ Makefile Tue Jan 19 09:32:21 1999 @@ -21,6 +21,7 @@ @echo "" @echo "make linux-help Linux, more help" @@ -8,26 +8,30 @@ @echo "make solaris Solaris 2.x (tested: 2.5 and 2.5.1) using SparcWorks cc" @echo "make solaris-gcc Solaris 2.x using GNU cc (somewhat slower)" @echo "make sunos SunOS 4.x (tested: 4.1.4)" -@@ -140,8 +141,16 @@ +@@ -140,9 +141,19 @@ freebsd: $(MAKE) CC=cc LDFLAGS= \ OBJECTS='decode_i386.o dct64_i386.o getbits_.o audio_oss.o' \ - CFLAGS='-Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ - -funroll-all-loops -ffast-math -DROT_I386 \ -+ CFLAGS+='$(CFLAGS) -Wall -O2 -ansi -pedantic -fomit-frame-pointer \ +- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ ++ CFLAGS+='-Wall -O2 -ansi -pedantic -fomit-frame-pointer \ + -funroll-all-loops -ffast-math -DROT_I386 -DREAD_MMAP \ -+ -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ ++ -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS \ ++ $(CFLAGS)' \ + mpg123-make + +freebsd-elf: + $(MAKE) CC=cc LDFLAGS= \ + OBJECTS='decode_i386.o dct64_i386.o getbits.o audio_oss.o' \ -+ CFLAGS+='$(CFLAGS) -Wall -O2 -ansi -pedantic -fomit-frame-pointer \ ++ CFLAGS+='-Wall -O2 -ansi -pedantic -fomit-frame-pointer \ + -funroll-all-loops -ffast-math -DROT_I386 -DREAD_MMAP \ - -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ ++ -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS \ ++ $(CFLAGS)' \ mpg123-make -@@ -251,7 +260,7 @@ + solaris: +@@ -251,7 +262,7 @@ @ $(MAKE) BINNAME=mpg123m mpg123 mpg123-make: |