aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-11-11 23:13:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-11-11 23:13:06 +0000
commit8e2f57c82e3e9cbd33f5be6cae4d96329c8a360b (patch)
tree88930f33d6b84bc1fb1b81ead991b9cc04e943d8
parentc3323b1902ad1885fe9863e6c2e9aaf62579a5be (diff)
Dan Fandrich: make --disable-dict actually disable dict
-rw-r--r--lib/dict.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/dict.c b/lib/dict.c
index f8e402bcf..baddc40de 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -23,6 +23,8 @@
#include "setup.h"
+#ifndef CURL_DISABLE_DICT
+
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
@@ -222,3 +224,4 @@ CURLcode Curl_dict(struct connectdata *conn)
return CURLE_OK;
}
+#endif /*CURL_DISABLE_DICT*/