mirror of https://github.com/LIJI32/SameBoy.git
Merge pull request #697 from bentley/libdl
Don’t look for libdl on OpenBSD
This commit is contained in:
commit
8b27952680
4
Makefile
4
Makefile
|
@ -282,11 +282,13 @@ sdl: $(BIN)/SDL/xaudio2_9redist.dll
|
|||
endif
|
||||
else
|
||||
LDFLAGS += -lc -lm
|
||||
# libdl is not available as a standalone library in Haiku
|
||||
# libdl is not available as a standalone library in Haiku or OpenBSD
|
||||
ifneq ($(PLATFORM),Haiku)
|
||||
ifneq ($(PLATFORM),OpenBSD)
|
||||
LDFLAGS += -ldl
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(MAKECMDGOALS),_ios)
|
||||
OBJ := build/obj-ios
|
||||
|
|
Loading…
Reference in New Issue