aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-22 16:43:37 -0700
committerChris Robinson <[email protected]>2011-06-22 16:43:37 -0700
commitbc6e3879d43e1ebbad32114d54af5feb6bf3d358 (patch)
tree3169537a5ea95c3d69015258a37af06826b11e4d
parent3dcfd0dc98a1090f783a10d32f058d18f93dcc06 (diff)
Properly handle the PortAudio lib in OpenBSD
-rw-r--r--Alc/portaudio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/portaudio.c b/Alc/portaudio.c
index 86ae4c64..08bc0065 100644
--- a/Alc/portaudio.c
+++ b/Alc/portaudio.c
@@ -67,6 +67,8 @@ void *pa_load(void)
# define PALIB "portaudio.dll"
#elif defined(__APPLE__) && defined(__MACH__)
# define PALIB "libportaudio.2.dylib"
+#elif defined(__OpenBSD__)
+# define PALIB "libportaudio.so"
#else
# define PALIB "libportaudio.so.2"
#endif