aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.m32
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-08-14 18:39:26 +0000
committerGunter Knauf <gk@gknw.de>2007-08-14 18:39:26 +0000
commit46c92c0b806da041d7a5c6fb64dbcdc474d99b31 (patch)
tree9d381491b366cac853e5c2f4ace74c00c0f4ab7e /src/Makefile.m32
parent7b5d148b1f10891d5d97d29e55e006910bfbaae2 (diff)
added a dependency for libcares if build with ares support;
other minor makefile tweaks.
Diffstat (limited to 'src/Makefile.m32')
-rw-r--r--src/Makefile.m323
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32
index c30a27792..690bc54e2 100644
--- a/src/Makefile.m32
+++ b/src/Makefile.m32
@@ -49,6 +49,9 @@ else
CFLAGS += -DCURL_STATICLIB
endif
ifdef ARES
+ ifndef DYN
+ curl_DEPENDENCIES += $(ARES_LIB)/libcares.a
+ endif
CFLAGS += -DUSE_ARES
curl_LDADD += -L$(ARES_LIB) -lcares
endif