aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 09:46:54 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:10 +0200
commitfcaa9c7e96ae1fdca8beef9d8097dcebcae83b7a (patch)
tree749d522282dafc16eaa8cc8ea9761e194045c847
parent5300800ab226d488337ff8e65103564d7ba7b133 (diff)
downloadbusybox-w32-fcaa9c7e96ae1fdca8beef9d8097dcebcae83b7a.tar.gz
busybox-w32-fcaa9c7e96ae1fdca8beef9d8097dcebcae83b7a.tar.bz2
busybox-w32-fcaa9c7e96ae1fdca8beef9d8097dcebcae83b7a.zip
win32: Makefile: support building with network support
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-rw-r--r--Makefile.flags3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.flags b/Makefile.flags
index 920fee322..ea825d333 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -101,6 +101,9 @@ ifeq ($(CONFIG_PLATFORM_MINGW32),y)
101# These defintions are not strictly needed, but they help shut up fnmatch.c warnings 101# These defintions are not strictly needed, but they help shut up fnmatch.c warnings
102CFLAGS += -Iwin32 -DHAVE_STRING_H=1 -DHAVE_CONFIG_H=0 102CFLAGS += -Iwin32 -DHAVE_STRING_H=1 -DHAVE_CONFIG_H=0
103EXEEXT = .exe 103EXEEXT = .exe
104ifeq ($(CONFIG_MING32_NET),y)
105LDLIBS += ws2_32
106endif
104else 107else
105LDLIBS += m crypt 108LDLIBS += m crypt
106endif 109endif