diff options
author | will <will@FreeBSD.org> | 2000-06-08 00:06:47 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-06-08 00:06:47 +0800 |
commit | ec91d671731109c71c3c348738dc0f1f8af84d59 (patch) | |
tree | 8d5638ce98914db02cbc0de5abbdff985c4b84d5 /audio | |
parent | 137a2e15d57176d36ff618830876748b2203c40a (diff) | |
download | freebsd-ports-gnome-ec91d671731109c71c3c348738dc0f1f8af84d59.tar.gz freebsd-ports-gnome-ec91d671731109c71c3c348738dc0f1f8af84d59.tar.zst freebsd-ports-gnome-ec91d671731109c71c3c348738dc0f1f8af84d59.zip |
Fix improper #ifdef.
PR: 19024
Submitted by: Alexander Langer <alex@big.endian.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/lame/files/patch-ab | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/lame/files/patch-ab b/audio/lame/files/patch-ab index f176e88302ad..9271d2fc2780 100644 --- a/audio/lame/files/patch-ab +++ b/audio/lame/files/patch-ab @@ -5,7 +5,7 @@ * Disable floating point exepctions */ -#ifdef __FreeBSD__ -+#ifdef __FreeBSD__ && !defined(__alpha__) ++#if defined(__FreeBSD__) && !defined(__alpha__) # include <floatingpoint.h> { /* seet floating point mask to the Linux default */ |