summaryrefslogtreecommitdiff
path: root/audio/timidity++
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++
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 'audio/timidity++')
-rw-r--r--audio/timidity++/files/patch-ab11
-rw-r--r--audio/timidity++/files/patch-ac11
2 files changed, 22 insertions, 0 deletions
diff --git a/audio/timidity++/files/patch-ab b/audio/timidity++/files/patch-ab
new file mode 100644
index 000000000000..49143651ffb7
--- /dev/null
+++ b/audio/timidity++/files/patch-ab
@@ -0,0 +1,11 @@
+--- timidity/timidity.c.orig Sat Sep 18 15:39:51 1999
++++ timidity/timidity.c Sat Sep 18 15:40:21 1999
+@@ -2444,7 +2444,7 @@
+ {
+ int i;
+ static int drums[] = DEFAULT_DRUMCHANNELS;
+-#if defined(__FreeBSD__)
++#if defined(__FreeBSD__) && !defined(__alpha__)
+ fp_except_t fpexp;
+
+ fpexp = fpgetmask();
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