diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:15:09 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:15:09 +0000 |
commit | 11463b4b45fa3fe8e3f600d977f1f197dafcd151 (patch) | |
tree | 71afddea0f7fb73d89d98a6297ea8ccd27394ebd /audio/maplay/files | |
parent | 1d90b4b98c03a428fb681d10ef5d33e457f8640e (diff) | |
download | ports-11463b4b45fa3fe8e3f600d977f1f197dafcd151.tar.gz ports-11463b4b45fa3fe8e3f600d977f1f197dafcd151.zip |
Notes
Diffstat (limited to 'audio/maplay/files')
-rw-r--r-- | audio/maplay/files/patch-ad | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/maplay/files/patch-ad b/audio/maplay/files/patch-ad new file mode 100644 index 000000000000..649ef65e8b9d --- /dev/null +++ b/audio/maplay/files/patch-ad @@ -0,0 +1,19 @@ +--- configuration.sh.orig Thu Jun 23 07:14:46 1994 ++++ configuration.sh Sat Sep 18 14:52:25 1999 +@@ -72,6 +72,16 @@ + INCLUDEDIRS= + LIBRARIES= + AUDIO_INCLUDES='#include <sys/audioio.h>' ;; ++ FreeBSD*) ++ COMPILER=g++ ++ if [ `uname -m` = "alpha" ]; then ++ COMPILERFLAGS='-O2 -DLINUX' ++ else ++ COMPILERFLAGS='-O2 -m486 -DLINUX -DDAMN_INTEL_BYTE_ORDER' ++ fi ++ INCLUDEDIRS= ++ LIBRARIES= ++ AUDIO_INCLUDES='#include <machine/soundcard.h>' ;; + Linux*) + COMPILER=g++ + COMPILERFLAGS='-O2 -m486 -funroll-loops -DLINUX -DDAMN_INTEL_BYTE_ORDER' |