diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 09:46:54 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-20 19:14:10 +0200 |
commit | fcaa9c7e96ae1fdca8beef9d8097dcebcae83b7a (patch) | |
tree | 749d522282dafc16eaa8cc8ea9761e194045c847 | |
parent | 5300800ab226d488337ff8e65103564d7ba7b133 (diff) | |
download | busybox-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.flags | 3 |
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 |
102 | CFLAGS += -Iwin32 -DHAVE_STRING_H=1 -DHAVE_CONFIG_H=0 | 102 | CFLAGS += -Iwin32 -DHAVE_STRING_H=1 -DHAVE_CONFIG_H=0 |
103 | EXEEXT = .exe | 103 | EXEEXT = .exe |
104 | ifeq ($(CONFIG_MING32_NET),y) | ||
105 | LDLIBS += ws2_32 | ||
106 | endif | ||
104 | else | 107 | else |
105 | LDLIBS += m crypt | 108 | LDLIBS += m crypt |
106 | endif | 109 | endif |