summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure b/configure
index ee57a7f..2a510c7 100755
--- a/configure
+++ b/configure
@@ -1,3 +1,10 @@
#!/bin/sh
-printf 'OS = %s\n' "$(uname)" > os.mk
+os="$(uname)"
+
+printf 'OS = %s\n' "$os" > os.mk
+
+if [ "$os" = "OpenBSD" ]
+then
+ printf 'OSLIBS = -lossaudio\n' >> os.mk
+fi