diff options
author | notaz | 2015-01-03 02:22:14 +0200 |
---|---|---|
committer | notaz | 2015-01-03 02:25:30 +0200 |
commit | 003cfc63c69b3e900de768317354dfb80bbf6a55 (patch) | |
tree | af0c284d996d5969731337244b18b55facea5e08 /Makefile.libretro | |
parent | 3aba41853f8dc014ff61e05e8a2c616d89f88715 (diff) | |
download | pcsx_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.libretro | 4 |
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 |