From: Gunter Knauf Date: Fri, 26 Jan 2007 20:00:55 +0000 (+0000) Subject: fix redefine warning when build from CVS. X-Git-Tag: curl-7_16_1~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc021fc20091a98d8f797f856757423dd20df66c;p=thirdparty%2Fcurl.git fix redefine warning when build from CVS. --- diff --git a/buildconf.bat b/buildconf.bat index 1499ca0b13..beecb6f621 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