]> granicus.if.org Git - curl/commitdiff
Dan Fandrich: make --disable-dict actually disable dict
authorDaniel Stenberg <daniel@haxx.se>
Thu, 11 Nov 2004 23:13:06 +0000 (23:13 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 11 Nov 2004 23:13:06 +0000 (23:13 +0000)
lib/dict.c

index f8e402bcfb7c25c4af31ae21e59e98d259dc3ab5..baddc40dee9f53b3540d5f38021213d5e4e3f9db 100644 (file)
@@ -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*/