[Freeswitch-svn] [commit] r2922 - freeswitch/trunk/libs
Freeswitch SVN
mikej at freeswitch.org
Sun Oct 1 18:50:31 EDT 2006
Author: mikej
Date: Sun Oct 1 18:50:31 2006
New Revision: 2922
Modified:
freeswitch/trunk/libs/portaudio.build.sh
Log:
fix portaudio build on OpenBSD take 3
Modified: freeswitch/trunk/libs/portaudio.build.sh
==============================================================================
--- freeswitch/trunk/libs/portaudio.build.sh (original)
+++ freeswitch/trunk/libs/portaudio.build.sh Sun Oct 1 18:50:31 2006
@@ -27,12 +27,14 @@
#ifdef __linux__
#include <linux/soundcard.h>
-+#elif defined(__FreeBSD__) || defined( __NetBSD__)
++#elif defined(__FreeBSD__) || defined(__NetBSD__)
+#include <sys/soundcard.h>
-+#elif defined( __OpenBSD__)
-+#include <soundcard.h>
#else
++#if defined(__OpenBSD__)
++#include <soundcard.h>
++#else
#include <machine/soundcard.h> /* JH20010905 */
++#endif
#endif
__EOF__
More information about the Freeswitch-svn
mailing list