summaryrefslogtreecommitdiff
path: root/audio/timidity++/files/patch-ac
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-09-20 02:34:31 +0000
committerSteve Price <steve@FreeBSD.org>1999-09-20 02:34:31 +0000
commit7f4fed562eac9675c1bd24bdbd1de21b43e2a9de (patch)
treec74079e37744fa9d7a6154940287da2e4f87c9ff /audio/timidity++/files/patch-ac
parentRemove '-m486' from CFLAGS so this compile on FreeBSD/Alpha. (diff)
Get this port to compile on FreeBSD/Alpha.
Notes
Notes: svn path=/head/; revision=21812
Diffstat (limited to '')
-rw-r--r--audio/timidity++/files/patch-ac11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/timidity++/files/patch-ac b/audio/timidity++/files/patch-ac
new file mode 100644
index 000000000000..1303806452e3
--- /dev/null
+++ b/audio/timidity++/files/patch-ac
@@ -0,0 +1,11 @@
+--- timidity/timidity.h.orig Sat Sep 18 15:42:24 1999
++++ timidity/timidity.h Sat Sep 18 15:42:51 1999
+@@ -434,7 +434,7 @@
+ #ifdef LITTLE_ENDIAN
+ #define LE_SHORT(x) (x)
+ #define LE_LONG(x) (x)
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) && !defined(__alpha__)
+ #define BE_SHORT(x) __byte_swap_word(x)
+ #define BE_LONG(x) __byte_swap_long(x)
+ #else