diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-05 23:04:43 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-05 23:04:43 +0000 |
commit | 3aa51450c41979004d5f40bca7be0d7fa727d502 (patch) | |
tree | aa7e69953cff107e7c3f063af1f1a97c54cf45dd /projects | |
parent | 8a2dda312cc916e3ec3d0bc99850d9abe5ae6b92 (diff) |
build: Fixed Visual Studio project file generation of strdup.[c|h]
As the curl command-line tool now includes it's own version of strdup(),
for platforms that don't have it, fixed up the git respository Visual
Studio project file generator to not include the version from lib in the
tool project files, rather than having both lib\strdup.[c|h] and
src\tool_strdup.[c|h] present.
Diffstat (limited to 'projects')
-rw-r--r-- | projects/generate.bat | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/projects/generate.bat b/projects/generate.bat index 08560cf7c..a95cc9a36 100644 --- a/projects/generate.bat +++ b/projects/generate.bat @@ -146,7 +146,6 @@ rem for /f "delims=" %%r in ('dir /b ..\src\*.rc') do call :element %1 src "%%r" %3 ) else if "!var!" == "CURL_SRC_X_C_FILES" ( call :element %1 lib "strtoofft.c" %3 - call :element %1 lib "strdup.c" %3 call :element %1 lib "rawstr.c" %3 call :element %1 lib "nonblock.c" %3 call :element %1 lib "warnless.c" %3 @@ -154,7 +153,6 @@ rem call :element %1 lib "config-win32.h" %3 call :element %1 lib "curl_setup.h" %3 call :element %1 lib "strtoofft.h" %3 - call :element %1 lib "strdup.h" %3 call :element %1 lib "rawstr.h" %3 call :element %1 lib "nonblock.h" %3 call :element %1 lib "warnless.h" %3 |