aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authornotaz2015-01-03 02:22:14 +0200
committernotaz2015-01-03 02:25:30 +0200
commit003cfc63c69b3e900de768317354dfb80bbf6a55 (patch)
treeaf0c284d996d5969731337244b18b55facea5e08 /Makefile.libretro
parent3aba41853f8dc014ff61e05e8a2c616d89f88715 (diff)
downloadpcsx_rearmed-003cfc63c69b3e900de768317354dfb80bbf6a55.tar.gz
pcsx_rearmed-003cfc63c69b3e900de768317354dfb80bbf6a55.tar.bz2
pcsx_rearmed-003cfc63c69b3e900de768317354dfb80bbf6a55.zip
mingw build fixes
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index ae95639..d566e23 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -172,7 +172,9 @@ else
endif
CFLAGS += -fPIC
-ifneq ($(platform),qnx)
+ifeq ($(platform),win)
+ MAIN_LDLIBS += -lws2_32
+else ifneq ($(platform),qnx)
LDLIBS += -lpthread
MAIN_LDLIBS += -ldl
endif