diff options
author | Will Andrews <will@FreeBSD.org> | 2000-06-07 16:06:47 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-06-07 16:06:47 +0000 |
commit | 20b9259c7d59d6b77c372ad275fdf3c9f03d1834 (patch) | |
tree | 0471a2db4cc6e4e8f99f4c7374227a4c003c3047 /audio/lame | |
parent | e2548f2fb4641ac820dd1e273a5a2600d90a702a (diff) | |
download | ports-20b9259c7d59d6b77c372ad275fdf3c9f03d1834.tar.gz ports-20b9259c7d59d6b77c372ad275fdf3c9f03d1834.zip |
Fix improper #ifdef.
PR: 19024
Submitted by: Alexander Langer <alex@big.endian.de>
Notes
Notes:
svn path=/head/; revision=29313
Diffstat (limited to 'audio/lame')
-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 */ |