diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:34:31 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:34:31 +0000 |
commit | 7f4fed562eac9675c1bd24bdbd1de21b43e2a9de (patch) | |
tree | c74079e37744fa9d7a6154940287da2e4f87c9ff /audio/timidity++ | |
parent | ce08f5fc7a9308d6e78e95c5892309a07eb329e9 (diff) | |
download | ports-7f4fed562eac9675c1bd24bdbd1de21b43e2a9de.tar.gz ports-7f4fed562eac9675c1bd24bdbd1de21b43e2a9de.zip |
Notes
Diffstat (limited to 'audio/timidity++')
-rw-r--r-- | audio/timidity++/files/patch-ab | 11 | ||||
-rw-r--r-- | audio/timidity++/files/patch-ac | 11 |
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 |