summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Gray <jsg@jsg.id.au>2013-05-05 11:40:57 +1000
committerTim Angus <tim@ngus.net>2013-05-31 23:10:47 +0100
commitafe29c3761945c9e851669430c9d2bca8d6feb92 (patch)
tree1da28d4e0980a2b0df0d5650b4e051efff8bd557 /Makefile
parent76decfebffa5f8525d29074866d4f27d574d6faf (diff)
correct the linked libs on OpenBSD
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index befd65ae..5107ed28 100644
--- a/Makefile
+++ b/Makefile
@@ -699,7 +699,7 @@ ifeq ($(PLATFORM),openbsd)
SHLIBCFLAGS=-fPIC
SHLIBLDFLAGS=-shared $(LDFLAGS)
- THREAD_LIBS=-pthread
+ THREAD_LIBS=-lpthread
LIBS=-lm
CLIENT_LIBS =
@@ -709,7 +709,7 @@ ifeq ($(PLATFORM),openbsd)
ifeq ($(USE_OPENAL),1)
ifneq ($(USE_OPENAL_DLOPEN),1)
- CLIENT_LIBS += $(THREAD_LIBS) -lossaudio -lopenal
+ CLIENT_LIBS += $(THREAD_LIBS) -lopenal
endif
endif