diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-05 04:35:51 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-05 04:35:51 +0000 |
commit | 285cf0deb5d75c83f54651562dca4d2a4ab97e8d (patch) | |
tree | 93bad1dc918ed0c2954d1a9b58b018deca6dc103 /x11-toolkits/gnustep-gui | |
parent | 286cbcc88c7b361c4c155aef06b540379570d84d (diff) | |
download | ports-285cf0deb5d75c83f54651562dca4d2a4ab97e8d.tar.gz ports-285cf0deb5d75c83f54651562dca4d2a4ab97e8d.zip |
kill anonther malloc.h problem
Notes
Notes:
svn path=/head/; revision=72552
Diffstat (limited to 'x11-toolkits/gnustep-gui')
-rw-r--r-- | x11-toolkits/gnustep-gui/files/extra-pa_unix_oss.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/x11-toolkits/gnustep-gui/files/extra-pa_unix_oss.c b/x11-toolkits/gnustep-gui/files/extra-pa_unix_oss.c index 4a88b41dee54..526a5e27eac6 100644 --- a/x11-toolkits/gnustep-gui/files/extra-pa_unix_oss.c +++ b/x11-toolkits/gnustep-gui/files/extra-pa_unix_oss.c @@ -1,6 +1,16 @@ --- Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c.orig Wed Oct 2 05:34:54 2002 -+++ Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c Mon Dec 2 09:21:34 2002 -@@ -110,7 +110,11 @@ ++++ Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c Sun Jan 5 05:33:48 2003 +@@ -95,7 +95,9 @@ +
+ #include <stdio.h>
+ #include <stdlib.h>
++#ifndef __FreeBSD__
+ #include <malloc.h>
++#endif
+ #include <memory.h>
+ #include <math.h>
+ #include <sys/ioctl.h>
+@@ -110,7 +112,11 @@ #ifdef __linux__
#include <linux/soundcard.h>
#else
|