diff options
author | Gunter Knauf <gk@gknw.de> | 2007-01-26 20:00:55 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-01-26 20:00:55 +0000 |
commit | cc021fc20091a98d8f797f856757423dd20df66c (patch) | |
tree | 442bb7bd9710796e9d9bfb8513288b35d3ac36ec /buildconf.bat | |
parent | e6aed927426b7b40864545439104c99285273994 (diff) | |
download | curl-cc021fc20091a98d8f797f856757423dd20df66c.tar.gz |
fix redefine warning when build from CVS.
Diffstat (limited to 'buildconf.bat')
-rw-r--r-- | buildconf.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/buildconf.bat b/buildconf.bat index 1499ca0b1..beecb6f62 100644 --- a/buildconf.bat +++ b/buildconf.bat @@ -5,7 +5,10 @@ REM $Date$ REM create ca-bundle.h
echo /* This file is generated automatically */ >lib\ca-bundle.h
-echo #define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE") >>lib\ca-bundle.h
+echo #ifndef CURL_CA_BUNDLE >>lib\ca-bundle.h +echo #define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE") >>lib\ca-bundle.h +echo #endif >>lib\ca-bundle.h + REM create hugehelp.c
copy src\hugehelp.c.cvs src\hugehelp.c
|