diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 11:13:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 11:13:01 +0000 |
commit | 08ef208fb78fb2eabc5cec08c23e74e251eac898 (patch) | |
tree | c52fa36be6197717f9ab12031a623091d785b51c /lib/file.c | |
parent | 8c45e2a6415a3a12231b88cd2791141ec809d163 (diff) | |
download | curl-08ef208fb78fb2eabc5cec08c23e74e251eac898.tar.gz |
added disable-[protocol] support, largely provided by Miklos Nemeth
Diffstat (limited to 'lib/file.c')
-rw-r--r-- | lib/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/file.c b/lib/file.c index 4515d9d94..b3ab757fd 100644 --- a/lib/file.c +++ b/lib/file.c @@ -23,6 +23,7 @@ #include "setup.h" +#ifndef CURL_DISABLE_FILE /* -- WIN32 approved -- */ #include <stdio.h> #include <string.h> @@ -204,3 +205,4 @@ CURLcode Curl_file(struct connectdata *conn) * vim600: fdm=marker * vim: et sw=2 ts=2 sts=2 tw=78 */ +#endif |