summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2018-04-30 16:13:12 +0200
committerAaron Marcher <me@drkhsh.at>2018-04-30 16:27:07 +0200
commit2ea3d46f1341716daa1370f0f19d1fc571c3e63a (patch)
treeb0a1d2c09b84a8c211091cf6e610dba71dfbbae8 /configure
parent95665e437b8f556db4d5499e189e224e3c6e6a12 (diff)
Makefile: move OS-specific libs to configure script
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