correct the linked libs on OpenBSD

This commit is contained in:
Jonathan Gray 2013-05-05 11:40:57 +10:00
parent 3234d2b141
commit 258c4782c6
1 changed files with 2 additions and 2 deletions

View File

@ -711,7 +711,7 @@ ifeq ($(PLATFORM),openbsd)
SHLIBCFLAGS=-fPIC SHLIBCFLAGS=-fPIC
SHLIBLDFLAGS=-shared $(LDFLAGS) SHLIBLDFLAGS=-shared $(LDFLAGS)
THREAD_LIBS=-pthread THREAD_LIBS=-lpthread
LIBS=-lm LIBS=-lm
CLIENT_LIBS = CLIENT_LIBS =
@ -721,7 +721,7 @@ ifeq ($(PLATFORM),openbsd)
ifeq ($(USE_OPENAL),1) ifeq ($(USE_OPENAL),1)
ifneq ($(USE_OPENAL_DLOPEN),1) ifneq ($(USE_OPENAL_DLOPEN),1)
CLIENT_LIBS += $(THREAD_LIBS) -lossaudio -lopenal CLIENT_LIBS += $(THREAD_LIBS) -lopenal
endif endif
endif endif