X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=c9e27d8d07a7eb596b64e58585a9f059662d027e;hb=c9448599144e9d2ec6c7d6cb60b67a7fcade9f7e;hp=a82a13ad27bc8e9695790d67570f655f1c9b7102;hpb=cf1d58b351c9b05875c7a14b6c2e26afc6694ace;p=pcsx_rearmed.git diff --git a/Makefile.libretro b/Makefile.libretro index a82a13ad..c9e27d8d 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -28,7 +28,11 @@ ifneq ($(GIT_VERSION)," unknown") endif LIBZ := -lz LIBPTHREAD := -lpthread +ifneq ($(findstring Haiku,$(shell uname -s)),) +LIBDL := -lroot -lnetwork +else LIBDL := -ldl +endif MMAP_WIN32=0 EXTRA_LDFLAGS = @@ -36,7 +40,7 @@ EXTRA_LDFLAGS = ifeq ($(platform), unix) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC -ifneq ($(findstring SunOS,$(shell uname -a)),) +ifneq ($(findstring SunOS,$(shell uname -s)),) CC = gcc endif