From cc8fad9a7fa6397d7b16eb52f8d6fa689eceff94 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 13 Feb 2013 17:02:38 +0100 Subject: move msvc IDE related files to 'vs' directory tree Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist. --- Makefile.am | 26 +-- docs/INSTALL | 8 +- vc/.gitignore | 5 - vc/t/.gitattributes | 1 - vc/t/.gitignore | 7 - vc/t/README | 8 - vc/t/lib/.gitattributes | 1 - vc/t/lib/.gitignore | 5 - vc/t/lib/vc6_libcurl_dsp.foot | 10 - vc/t/lib/vc6_libcurl_dsp.head | 147 ------------- vc/t/lib/vc8_libcurl_prj.foot | 7 - vc/t/lib/vc8_libcurl_prj.head | 101 --------- vc/t/src/.gitattributes | 1 - vc/t/src/.gitignore | 5 - vc/vc6/.gitattributes | 1 - vc/vc6/.gitignore | 7 - vc/vc6/lib/.gitattributes | 1 - vc/vc6/lib/.gitignore | 4 - vc/vc6/lib/vc6libcurl.dsw | 29 --- vc/vc6/src/.gitattributes | 1 - vc/vc6/src/.gitignore | 5 - vc/vc6/src/vc6curltool.dsp | 498 ------------------------------------------ vc/vc6/src/vc6curltool.dsw | 29 --- vc/vc6/vc6curl.dsw | 44 ---- vc/vc8/.gitattributes | 1 - vc/vc8/.gitignore | 7 - vc/vc8/lib/.gitattributes | 1 - vc/vc8/lib/.gitignore | 4 - vc/vc8/src/.gitattributes | 1 - vc/vc8/src/.gitignore | 5 - vs/.gitignore | 5 + vs/t/.gitattributes | 1 + vs/t/.gitignore | 7 + vs/t/README | 8 + vs/t/lib/.gitattributes | 1 + vs/t/lib/.gitignore | 5 + vs/t/lib/vc6_libcurl_dsp.foot | 10 + vs/t/lib/vc6_libcurl_dsp.head | 147 +++++++++++++ vs/t/lib/vc8_libcurl_prj.foot | 7 + vs/t/lib/vc8_libcurl_prj.head | 101 +++++++++ vs/t/src/.gitattributes | 1 + vs/t/src/.gitignore | 5 + vs/vc6/.gitattributes | 1 + vs/vc6/.gitignore | 7 + vs/vc6/lib/.gitattributes | 1 + vs/vc6/lib/.gitignore | 4 + vs/vc6/lib/vc6libcurl.dsw | 29 +++ vs/vc6/src/.gitattributes | 1 + vs/vc6/src/.gitignore | 5 + vs/vc6/src/vc6curltool.dsp | 498 ++++++++++++++++++++++++++++++++++++++++++ vs/vc6/src/vc6curltool.dsw | 29 +++ vs/vc6/vc6curl.dsw | 44 ++++ vs/vc8/.gitattributes | 1 + vs/vc8/.gitignore | 7 + vs/vc8/lib/.gitattributes | 1 + vs/vc8/lib/.gitignore | 4 + vs/vc8/src/.gitattributes | 1 + vs/vc8/src/.gitignore | 5 + 58 files changed, 953 insertions(+), 953 deletions(-) delete mode 100644 vc/.gitignore delete mode 100644 vc/t/.gitattributes delete mode 100644 vc/t/.gitignore delete mode 100644 vc/t/README delete mode 100644 vc/t/lib/.gitattributes delete mode 100644 vc/t/lib/.gitignore delete mode 100644 vc/t/lib/vc6_libcurl_dsp.foot delete mode 100644 vc/t/lib/vc6_libcurl_dsp.head delete mode 100644 vc/t/lib/vc8_libcurl_prj.foot delete mode 100644 vc/t/lib/vc8_libcurl_prj.head delete mode 100644 vc/t/src/.gitattributes delete mode 100644 vc/t/src/.gitignore delete mode 100644 vc/vc6/.gitattributes delete mode 100644 vc/vc6/.gitignore delete mode 100644 vc/vc6/lib/.gitattributes delete mode 100644 vc/vc6/lib/.gitignore delete mode 100644 vc/vc6/lib/vc6libcurl.dsw delete mode 100644 vc/vc6/src/.gitattributes delete mode 100644 vc/vc6/src/.gitignore delete mode 100644 vc/vc6/src/vc6curltool.dsp delete mode 100644 vc/vc6/src/vc6curltool.dsw delete mode 100644 vc/vc6/vc6curl.dsw delete mode 100644 vc/vc8/.gitattributes delete mode 100644 vc/vc8/.gitignore delete mode 100644 vc/vc8/lib/.gitattributes delete mode 100644 vc/vc8/lib/.gitignore delete mode 100644 vc/vc8/src/.gitattributes delete mode 100644 vc/vc8/src/.gitignore create mode 100644 vs/.gitignore create mode 100644 vs/t/.gitattributes create mode 100644 vs/t/.gitignore create mode 100644 vs/t/README create mode 100644 vs/t/lib/.gitattributes create mode 100644 vs/t/lib/.gitignore create mode 100644 vs/t/lib/vc6_libcurl_dsp.foot create mode 100644 vs/t/lib/vc6_libcurl_dsp.head create mode 100644 vs/t/lib/vc8_libcurl_prj.foot create mode 100644 vs/t/lib/vc8_libcurl_prj.head create mode 100644 vs/t/src/.gitattributes create mode 100644 vs/t/src/.gitignore create mode 100644 vs/vc6/.gitattributes create mode 100644 vs/vc6/.gitignore create mode 100644 vs/vc6/lib/.gitattributes create mode 100644 vs/vc6/lib/.gitignore create mode 100644 vs/vc6/lib/vc6libcurl.dsw create mode 100644 vs/vc6/src/.gitattributes create mode 100644 vs/vc6/src/.gitignore create mode 100644 vs/vc6/src/vc6curltool.dsp create mode 100644 vs/vc6/src/vc6curltool.dsw create mode 100644 vs/vc6/vc6curl.dsw create mode 100644 vs/vc8/.gitattributes create mode 100644 vs/vc8/.gitignore create mode 100644 vs/vc8/lib/.gitattributes create mode 100644 vs/vc8/lib/.gitignore create mode 100644 vs/vc8/src/.gitattributes create mode 100644 vs/vc8/src/.gitignore diff --git a/Makefile.am b/Makefile.am index 6c582c772..608bd110a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,22 +30,22 @@ CMake/CurlTests.c CMake/FindOpenSSL.cmake CMake/FindZLIB.cmake \ CMake/OtherTests.cmake CMake/Platforms/WindowsCache.cmake \ CMake/Utilities.cmake include/curl/curlbuild.h.cmake -VC6LIBDSP = vc/vc6/lib/vc6libcurl.dsp -VC6LIBDSPHEAD = vc/t/lib/vc6_libcurl_dsp.head -VC6LIBDSPFOOT = vc/t/lib/vc6_libcurl_dsp.foot +VC6LIBDSP = vs/vc6/lib/vc6libcurl.dsp +VC6LIBDSPHEAD = vs/t/lib/vc6_libcurl_dsp.head +VC6LIBDSPFOOT = vs/t/lib/vc6_libcurl_dsp.foot -VC8LIBPRJ = vc/vc8/lib/vc8libcurl.vcproj -VC8LIBPRJHEAD = vc/t/lib/vc8_libcurl_prj.head -VC8LIBPRJFOOT = vc/t/lib/vc8_libcurl_prj.foot +VC8LIBPRJ = vs/vc8/lib/vc8libcurl.vcproj +VC8LIBPRJHEAD = vs/t/lib/vc8_libcurl_prj.head +VC8LIBPRJFOOT = vs/t/lib/vc8_libcurl_prj.foot VC_DIST = \ - vc/t/README \ + vs/t/README \ $(VC6LIBDSP) $(VC6LIBDSPHEAD) $(VC6LIBDSPFOOT) \ $(VC8LIBPRJ) $(VC8LIBPRJHEAD) $(VC8LIBPRJFOOT) \ - vc/vc6/vc6curl.dsw \ - vc/vc6/lib/vc6libcurl.dsw \ - vc/vc6/src/vc6curltool.dsw \ - vc/vc6/src/vc6curltool.dsp + vs/vc6/vc6curl.dsw \ + vs/vc6/lib/vc6libcurl.dsw \ + vs/vc6/src/vc6curltool.dsw \ + vs/vc6/src/vc6curltool.dsp VC6LIBDSP_DEPS = $(VC6LIBDSPHEAD) $(VC6LIBDSPFOOT) \ Makefile.am lib/Makefile.inc @@ -206,7 +206,7 @@ vc6-ide: $(VC6LIBDSP): $(VC6LIBDSP_DEPS) @(echo "generating '$(VC6LIBDSP)'"; \ \ - for dir in 'vc' 'vc/vc6' 'vc/vc6/lib'; do \ + for dir in 'vs' 'vs/vc6' 'vs/vc6/lib'; do \ test -d "$$dir" || mkdir "$$dir" || exit 1; \ done; \ \ @@ -252,7 +252,7 @@ vc8-ide: $(VC8LIBPRJ): $(VC8LIBPRJ_DEPS) @(echo "generating '$(VC8LIBPRJ)'"; \ \ - for dir in 'vc' 'vc/vc8' 'vc/vc8/lib'; do \ + for dir in 'vs' 'vs/vc8' 'vs/vc8/lib'; do \ test -d "$$dir" || mkdir "$$dir" || exit 1; \ done; \ \ diff --git a/docs/INSTALL b/docs/INSTALL index 9e3c226a4..737128b36 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -359,7 +359,7 @@ Win32 source distribution archive to allow proper building of the two included projects, the libcurl library and the curl tool. - 1) Open the vc6curl.dsw workspace with MSVC6's IDE. + 1) Open the vs/vc6/vc6curl.dsw workspace with MSVC6's IDE. 2) Select 'Build' from top menu. 3) Select 'Batch Build' from dropdown menu. 4) Make sure that the eight project configurations are 'checked'. @@ -367,12 +367,12 @@ Win32 6) Once the eight project configurations are built you are done. Dynamic and static libcurl libraries are built in debug and release flavours, - and can be located each one in its own subdirectory, DLL-Debug, DLL-Release, - LIB-Debug and LIB-Release, all of them below the 'lib' subdirectory. + and can be located each one in its own subdirectory, dll-debug, dll-release, + lib-debug and lib-release, all of them below the 'vs/vc6/lib' subdirectory. In the same way four curl executables are created, each using its respective library. The resulting curl executables are located in its own subdirectory, - DLL-Debug, DLL-Release, LIB-Debug and LIB-Release, below the 'src' subdir. + dll-debug, dll-release, lib-debug and lib-release, below 'vs/vc6/src' subdir. These reference VC++ 6.0 configurations are generated using the dynamic CRT. diff --git a/vc/.gitignore b/vc/.gitignore deleted file mode 100644 index 95f9f5692..000000000 --- a/vc/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!.gitignore -!t -!vc6 -!vc8 diff --git a/vc/t/.gitattributes b/vc/t/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/t/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/t/.gitignore b/vc/t/.gitignore deleted file mode 100644 index e3ebe8050..000000000 --- a/vc/t/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -* -!.gitattributes -!.gitignore -!README -!lib -!src -!tests diff --git a/vc/t/README b/vc/t/README deleted file mode 100644 index 75b04782c..000000000 --- a/vc/t/README +++ /dev/null @@ -1,8 +0,0 @@ -Note: - -Files located in subdirectory 'vc/t' and below are 'templates' used for -the generation of msvc IDE workspace and project files, distributed in -subdirectories 'vc/vc6' and 'vc/vc8'. - -All these template files use UNIX line endings intentionally, in order -to allow proper file generation. Don't convert these to crlf line-ends. diff --git a/vc/t/lib/.gitattributes b/vc/t/lib/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/t/lib/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/t/lib/.gitignore b/vc/t/lib/.gitignore deleted file mode 100644 index 595d4d850..000000000 --- a/vc/t/lib/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!.gitattributes -!.gitignore -!*.foot -!*.head diff --git a/vc/t/lib/vc6_libcurl_dsp.foot b/vc/t/lib/vc6_libcurl_dsp.foot deleted file mode 100644 index fd10e8e49..000000000 --- a/vc/t/lib/vc6_libcurl_dsp.foot +++ /dev/null @@ -1,10 +0,0 @@ -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\..\lib\libcurl.rc -# End Source File -# End Group -# End Target -# End Project diff --git a/vc/t/lib/vc6_libcurl_dsp.head b/vc/t/lib/vc6_libcurl_dsp.head deleted file mode 100644 index 06fb88dee..000000000 --- a/vc/t/lib/vc6_libcurl_dsp.head +++ /dev/null @@ -1,147 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libcurl" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=libcurl - Win32 LIB Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "vc6libcurl.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "vc6libcurl.mak" CFG="libcurl - Win32 LIB Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libcurl - Win32 DLL Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libcurl - Win32 DLL Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libcurl - Win32 LIB Debug" (based on "Win32 (x86) Static Library") -!MESSAGE "libcurl - Win32 LIB Release" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" - -!IF "$(CFG)" == "libcurl - Win32 DLL Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "dll-debug" -# PROP BASE Intermediate_Dir "dll-debug/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "dll-debug" -# PROP Intermediate_Dir "dll-debug/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -CPP=cl.exe -# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /FD /GZ /c -MTL=midl.exe -# ADD BASE MTL /nologo /D "_DEBUG" /win32 -# ADD MTL /nologo /D "_DEBUG" /win32 -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /incremental:no /debug /machine:I386 /out:"dll-debug/libcurld.dll" /implib:"dll-debug/libcurld_imp.lib" /pdbtype:con /fixed:no -# ADD LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /incremental:no /debug /machine:I386 /out:"dll-debug/libcurld.dll" /implib:"dll-debug/libcurld_imp.lib" /pdbtype:con /fixed:no - -!ELSEIF "$(CFG)" == "libcurl - Win32 DLL Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "dll-release" -# PROP BASE Intermediate_Dir "dll-release/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "dll-release" -# PROP Intermediate_Dir "dll-release/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -CPP=cl.exe -# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /FD /c -# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /FD /c -MTL=midl.exe -# ADD BASE MTL /nologo /D "NDEBUG" /win32 -# ADD MTL /nologo /D "NDEBUG" /win32 -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /pdb:none /machine:I386 /out:"dll-release/libcurl.dll" /implib:"dll-release/libcurl_imp.lib" /fixed:no /release /incremental:no -# ADD LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /pdb:none /machine:I386 /out:"dll-release/libcurl.dll" /implib:"dll-release/libcurl_imp.lib" /fixed:no /release /incremental:no - -!ELSEIF "$(CFG)" == "libcurl - Win32 LIB Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "lib-debug" -# PROP BASE Intermediate_Dir "lib-debug/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "lib-debug" -# PROP Intermediate_Dir "lib-debug/obj" -# PROP Target_Dir "" -CPP=cl.exe -# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /GZ /c -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo /out:"lib-debug/libcurld.lib" /machine:I386 -# ADD LIB32 /nologo /out:"lib-debug/libcurld.lib" /machine:I386 - -!ELSEIF "$(CFG)" == "libcurl - Win32 LIB Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "lib-release" -# PROP BASE Intermediate_Dir "lib-release/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "lib-release" -# PROP Intermediate_Dir "lib-release/obj" -# PROP Target_Dir "" -CPP=cl.exe -# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /c -# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /c -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo /out:"lib-release/libcurl.lib" /machine:I386 -# ADD LIB32 /nologo /out:"lib-release/libcurl.lib" /machine:I386 - -!ENDIF - -# Begin Target - -# Name "libcurl - Win32 DLL Debug" -# Name "libcurl - Win32 DLL Release" -# Name "libcurl - Win32 LIB Debug" -# Name "libcurl - Win32 LIB Release" diff --git a/vc/t/lib/vc8_libcurl_prj.foot b/vc/t/lib/vc8_libcurl_prj.foot deleted file mode 100644 index 862ef4227..000000000 --- a/vc/t/lib/vc8_libcurl_prj.foot +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/vc/t/lib/vc8_libcurl_prj.head b/vc/t/lib/vc8_libcurl_prj.head deleted file mode 100644 index 761468892..000000000 --- a/vc/t/lib/vc8_libcurl_prj.head +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vc/t/src/.gitattributes b/vc/t/src/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/t/src/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/t/src/.gitignore b/vc/t/src/.gitignore deleted file mode 100644 index 595d4d850..000000000 --- a/vc/t/src/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!.gitattributes -!.gitignore -!*.foot -!*.head diff --git a/vc/vc6/.gitattributes b/vc/vc6/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc6/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc6/.gitignore b/vc/vc6/.gitignore deleted file mode 100644 index 79f1177e5..000000000 --- a/vc/vc6/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -* -!.gitattributes -!.gitignore -!lib -!src -!tests -!vc6curl.dsw diff --git a/vc/vc6/lib/.gitattributes b/vc/vc6/lib/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc6/lib/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc6/lib/.gitignore b/vc/vc6/lib/.gitignore deleted file mode 100644 index 7832007ba..000000000 --- a/vc/vc6/lib/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -!.gitattributes -!.gitignore -!vc6libcurl.dsw diff --git a/vc/vc6/lib/vc6libcurl.dsw b/vc/vc6/lib/vc6libcurl.dsw deleted file mode 100644 index 1fa8814a6..000000000 --- a/vc/vc6/lib/vc6libcurl.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "libcurl"=".\vc6libcurl.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/vc/vc6/src/.gitattributes b/vc/vc6/src/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc6/src/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc6/src/.gitignore b/vc/vc6/src/.gitignore deleted file mode 100644 index 030326912..000000000 --- a/vc/vc6/src/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!.gitattributes -!.gitignore -!vc6curltool.dsp -!vc6curltool.dsw diff --git a/vc/vc6/src/vc6curltool.dsp b/vc/vc6/src/vc6curltool.dsp deleted file mode 100644 index 131b71649..000000000 --- a/vc/vc6/src/vc6curltool.dsp +++ /dev/null @@ -1,498 +0,0 @@ -# Microsoft Developer Studio Project File - Name="curltool" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=curltool - Win32 using libcurl LIB Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "vc6curltool.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "vc6curltool.mak" CFG="curltool - Win32 using libcurl LIB Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "curltool - Win32 using libcurl DLL Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "curltool - Win32 using libcurl DLL Release" (based on "Win32 (x86) Console Application") -!MESSAGE "curltool - Win32 using libcurl LIB Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "curltool - Win32 using libcurl LIB Release" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "curltool - Win32 using libcurl DLL Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "dll-debug" -# PROP BASE Intermediate_Dir "dll-debug/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "dll-debug" -# PROP Intermediate_Dir "dll-debug/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /FD /GZ /c -# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 libcurld_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"dll-debug/curl.exe" /pdbtype:con /libpath:"..\lib\dll-debug" /fixed:no -# ADD LINK32 libcurld_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"dll-debug/curl.exe" /pdbtype:con /libpath:"..\lib\dll-debug" /fixed:no - -!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl DLL Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "dll-release" -# PROP BASE Intermediate_Dir "dll-release/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "dll-release" -# PROP Intermediate_Dir "dll-release/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /FD /c -# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /FD /c -# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" -# ADD RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 libcurl_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"dll-release/curl.exe" /libpath:"..\lib\dll-release" /fixed:no -# ADD LINK32 libcurl_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"dll-release/curl.exe" /libpath:"..\lib\dll-release" /fixed:no - -!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl LIB Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "lib-debug" -# PROP BASE Intermediate_Dir "lib-debug/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "lib-debug" -# PROP Intermediate_Dir "lib-debug/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "CURL_STATICLIB" /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "CURL_STATICLIB" /FD /GZ /c -# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 libcurld.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"lib-debug/curl.exe" /pdbtype:con /libpath:"..\lib\lib-debug" /fixed:no -# ADD LINK32 libcurld.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"lib-debug/curl.exe" /pdbtype:con /libpath:"..\lib\lib-debug" /fixed:no - -!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl LIB Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "lib-release" -# PROP BASE Intermediate_Dir "lib-release/obj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "lib-release" -# PROP Intermediate_Dir "lib-release/obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /D "CURL_STATICLIB" /FD /c -# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /D "CURL_STATICLIB" /FD /c -# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" -# ADD RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 libcurl.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"lib-release/curl.exe" /libpath:"..\lib\lib-release" /fixed:no -# ADD LINK32 libcurl.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"lib-release/curl.exe" /libpath:"..\lib\lib-release" /fixed:no - -!ENDIF - -# Begin Target - -# Name "curltool - Win32 using libcurl DLL Debug" -# Name "curltool - Win32 using libcurl DLL Release" -# Name "curltool - Win32 using libcurl LIB Debug" -# Name "curltool - Win32 using libcurl LIB Release" -# Begin Group "Source Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\..\lib\nonblock.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\lib\rawstr.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\lib\strtoofft.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_binmode.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_bname.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_dbg.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_hdr.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_prg.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_rea.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_see.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_wrt.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cfgable.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_convert.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_dirhie.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_doswin.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_easysrc.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_formparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_getparam.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_getpass.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_help.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_helpers.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_homedir.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_hugehelp.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_libinfo.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_main.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_metalink.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_mfiles.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_msgs.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_operate.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_operhlp.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_panykey.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_paramhlp.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_parsecfg.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_setopt.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_sleep.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_urlglob.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_util.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_vms.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_writeenv.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_writeout.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_xattr.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE="..\..\..\lib\config-win32.h" -# End Source File -# Begin Source File - -SOURCE=..\..\..\lib\nonblock.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\lib\rawstr.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\lib\strtoofft.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_binmode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_bname.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_dbg.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_hdr.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_prg.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_rea.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_see.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cb_wrt.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_cfgable.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_convert.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_dirhie.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_doswin.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_easysrc.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_formparse.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_getparam.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_getpass.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_help.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_helpers.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_homedir.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_hugehelp.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_libinfo.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_main.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_metalink.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_mfiles.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_msgs.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_operate.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_operhlp.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_panykey.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_paramhlp.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_parsecfg.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_sdecls.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_setopt.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_setup.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_sleep.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_urlglob.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_util.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_version.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_vms.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_writeenv.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_writeout.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\tool_xattr.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\..\src\curl.rc -# End Source File -# End Group -# End Target -# End Project diff --git a/vc/vc6/src/vc6curltool.dsw b/vc/vc6/src/vc6curltool.dsw deleted file mode 100644 index b92638a89..000000000 --- a/vc/vc6/src/vc6curltool.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "curltool"=".\vc6curltool.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/vc/vc6/vc6curl.dsw b/vc/vc6/vc6curl.dsw deleted file mode 100644 index 859edd5e1..000000000 --- a/vc/vc6/vc6curl.dsw +++ /dev/null @@ -1,44 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "libcurl"=".\lib\vc6libcurl.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "curltool"=".\src\vc6curltool.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libcurl - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/vc/vc8/.gitattributes b/vc/vc8/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc8/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc8/.gitignore b/vc/vc8/.gitignore deleted file mode 100644 index 68e2ba073..000000000 --- a/vc/vc8/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -* -!.gitattributes -!.gitignore -!lib -!src -!tests -!vc8curl.sln diff --git a/vc/vc8/lib/.gitattributes b/vc/vc8/lib/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc8/lib/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc8/lib/.gitignore b/vc/vc8/lib/.gitignore deleted file mode 100644 index 4f5c670ba..000000000 --- a/vc/vc8/lib/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -!.gitattributes -!.gitignore -!vc8libcurl.sln diff --git a/vc/vc8/src/.gitattributes b/vc/vc8/src/.gitattributes deleted file mode 100644 index aecf25037..000000000 --- a/vc/vc8/src/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* -crlf diff --git a/vc/vc8/src/.gitignore b/vc/vc8/src/.gitignore deleted file mode 100644 index 7fae07f4e..000000000 --- a/vc/vc8/src/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!.gitattributes -!.gitignore -!vc8curltool.sln -!vc8curltool.vcproj diff --git a/vs/.gitignore b/vs/.gitignore new file mode 100644 index 000000000..95f9f5692 --- /dev/null +++ b/vs/.gitignore @@ -0,0 +1,5 @@ +* +!.gitignore +!t +!vc6 +!vc8 diff --git a/vs/t/.gitattributes b/vs/t/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/t/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/t/.gitignore b/vs/t/.gitignore new file mode 100644 index 000000000..e3ebe8050 --- /dev/null +++ b/vs/t/.gitignore @@ -0,0 +1,7 @@ +* +!.gitattributes +!.gitignore +!README +!lib +!src +!tests diff --git a/vs/t/README b/vs/t/README new file mode 100644 index 000000000..69ebd2701 --- /dev/null +++ b/vs/t/README @@ -0,0 +1,8 @@ +Note: + +Files located in subdirectory 'vs/t' and below are 'templates' used for +the generation of msvc IDE workspace and project files, distributed in +subdirectories 'vs/vc6' and 'vs/vc8'. + +All these template files use UNIX line endings intentionally, in order +to allow proper file generation. Don't convert these to crlf line-ends. diff --git a/vs/t/lib/.gitattributes b/vs/t/lib/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/t/lib/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/t/lib/.gitignore b/vs/t/lib/.gitignore new file mode 100644 index 000000000..595d4d850 --- /dev/null +++ b/vs/t/lib/.gitignore @@ -0,0 +1,5 @@ +* +!.gitattributes +!.gitignore +!*.foot +!*.head diff --git a/vs/t/lib/vc6_libcurl_dsp.foot b/vs/t/lib/vc6_libcurl_dsp.foot new file mode 100644 index 000000000..fd10e8e49 --- /dev/null +++ b/vs/t/lib/vc6_libcurl_dsp.foot @@ -0,0 +1,10 @@ +# Begin Group "Resource Files" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\..\..\lib\libcurl.rc +# End Source File +# End Group +# End Target +# End Project diff --git a/vs/t/lib/vc6_libcurl_dsp.head b/vs/t/lib/vc6_libcurl_dsp.head new file mode 100644 index 000000000..06fb88dee --- /dev/null +++ b/vs/t/lib/vc6_libcurl_dsp.head @@ -0,0 +1,147 @@ +# Microsoft Developer Studio Project File - Name="libcurl" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=libcurl - Win32 LIB Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "vc6libcurl.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "vc6libcurl.mak" CFG="libcurl - Win32 LIB Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libcurl - Win32 DLL Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "libcurl - Win32 DLL Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "libcurl - Win32 LIB Debug" (based on "Win32 (x86) Static Library") +!MESSAGE "libcurl - Win32 LIB Release" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" + +!IF "$(CFG)" == "libcurl - Win32 DLL Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "dll-debug" +# PROP BASE Intermediate_Dir "dll-debug/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "dll-debug" +# PROP Intermediate_Dir "dll-debug/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /FD /GZ /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /win32 +# ADD MTL /nologo /D "_DEBUG" /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /incremental:no /debug /machine:I386 /out:"dll-debug/libcurld.dll" /implib:"dll-debug/libcurld_imp.lib" /pdbtype:con /fixed:no +# ADD LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /incremental:no /debug /machine:I386 /out:"dll-debug/libcurld.dll" /implib:"dll-debug/libcurld_imp.lib" /pdbtype:con /fixed:no + +!ELSEIF "$(CFG)" == "libcurl - Win32 DLL Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "dll-release" +# PROP BASE Intermediate_Dir "dll-release/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "dll-release" +# PROP Intermediate_Dir "dll-release/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /FD /c +# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /FD /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /win32 +# ADD MTL /nologo /D "NDEBUG" /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /pdb:none /machine:I386 /out:"dll-release/libcurl.dll" /implib:"dll-release/libcurl_imp.lib" /fixed:no /release /incremental:no +# ADD LINK32 wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /dll /pdb:none /machine:I386 /out:"dll-release/libcurl.dll" /implib:"dll-release/libcurl_imp.lib" /fixed:no /release /incremental:no + +!ELSEIF "$(CFG)" == "libcurl - Win32 LIB Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "lib-debug" +# PROP BASE Intermediate_Dir "lib-debug/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "lib-debug" +# PROP Intermediate_Dir "lib-debug/obj" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /GZ /c +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo /out:"lib-debug/libcurld.lib" /machine:I386 +# ADD LIB32 /nologo /out:"lib-debug/libcurld.lib" /machine:I386 + +!ELSEIF "$(CFG)" == "libcurl - Win32 LIB Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "lib-release" +# PROP BASE Intermediate_Dir "lib-release/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "lib-release" +# PROP Intermediate_Dir "lib-release/obj" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /c +# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "BUILDING_LIBCURL" /D "CURL_STATICLIB" /FD /c +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo /out:"lib-release/libcurl.lib" /machine:I386 +# ADD LIB32 /nologo /out:"lib-release/libcurl.lib" /machine:I386 + +!ENDIF + +# Begin Target + +# Name "libcurl - Win32 DLL Debug" +# Name "libcurl - Win32 DLL Release" +# Name "libcurl - Win32 LIB Debug" +# Name "libcurl - Win32 LIB Release" diff --git a/vs/t/lib/vc8_libcurl_prj.foot b/vs/t/lib/vc8_libcurl_prj.foot new file mode 100644 index 000000000..862ef4227 --- /dev/null +++ b/vs/t/lib/vc8_libcurl_prj.foot @@ -0,0 +1,7 @@ + + + + + + + diff --git a/vs/t/lib/vc8_libcurl_prj.head b/vs/t/lib/vc8_libcurl_prj.head new file mode 100644 index 000000000..761468892 --- /dev/null +++ b/vs/t/lib/vc8_libcurl_prj.head @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vs/t/src/.gitattributes b/vs/t/src/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/t/src/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/t/src/.gitignore b/vs/t/src/.gitignore new file mode 100644 index 000000000..595d4d850 --- /dev/null +++ b/vs/t/src/.gitignore @@ -0,0 +1,5 @@ +* +!.gitattributes +!.gitignore +!*.foot +!*.head diff --git a/vs/vc6/.gitattributes b/vs/vc6/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc6/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc6/.gitignore b/vs/vc6/.gitignore new file mode 100644 index 000000000..79f1177e5 --- /dev/null +++ b/vs/vc6/.gitignore @@ -0,0 +1,7 @@ +* +!.gitattributes +!.gitignore +!lib +!src +!tests +!vc6curl.dsw diff --git a/vs/vc6/lib/.gitattributes b/vs/vc6/lib/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc6/lib/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc6/lib/.gitignore b/vs/vc6/lib/.gitignore new file mode 100644 index 000000000..7832007ba --- /dev/null +++ b/vs/vc6/lib/.gitignore @@ -0,0 +1,4 @@ +* +!.gitattributes +!.gitignore +!vc6libcurl.dsw diff --git a/vs/vc6/lib/vc6libcurl.dsw b/vs/vc6/lib/vc6libcurl.dsw new file mode 100644 index 000000000..1fa8814a6 --- /dev/null +++ b/vs/vc6/lib/vc6libcurl.dsw @@ -0,0 +1,29 @@ +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "libcurl"=".\vc6libcurl.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/vs/vc6/src/.gitattributes b/vs/vc6/src/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc6/src/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc6/src/.gitignore b/vs/vc6/src/.gitignore new file mode 100644 index 000000000..030326912 --- /dev/null +++ b/vs/vc6/src/.gitignore @@ -0,0 +1,5 @@ +* +!.gitattributes +!.gitignore +!vc6curltool.dsp +!vc6curltool.dsw diff --git a/vs/vc6/src/vc6curltool.dsp b/vs/vc6/src/vc6curltool.dsp new file mode 100644 index 000000000..131b71649 --- /dev/null +++ b/vs/vc6/src/vc6curltool.dsp @@ -0,0 +1,498 @@ +# Microsoft Developer Studio Project File - Name="curltool" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=curltool - Win32 using libcurl LIB Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "vc6curltool.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "vc6curltool.mak" CFG="curltool - Win32 using libcurl LIB Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "curltool - Win32 using libcurl DLL Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "curltool - Win32 using libcurl DLL Release" (based on "Win32 (x86) Console Application") +!MESSAGE "curltool - Win32 using libcurl LIB Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "curltool - Win32 using libcurl LIB Release" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "curltool - Win32 using libcurl DLL Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "dll-debug" +# PROP BASE Intermediate_Dir "dll-debug/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "dll-debug" +# PROP Intermediate_Dir "dll-debug/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /FD /GZ /c +# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 libcurld_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"dll-debug/curl.exe" /pdbtype:con /libpath:"..\lib\dll-debug" /fixed:no +# ADD LINK32 libcurld_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"dll-debug/curl.exe" /pdbtype:con /libpath:"..\lib\dll-debug" /fixed:no + +!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl DLL Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "dll-release" +# PROP BASE Intermediate_Dir "dll-release/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "dll-release" +# PROP Intermediate_Dir "dll-release/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /FD /c +# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /FD /c +# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" +# ADD RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 libcurl_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"dll-release/curl.exe" /libpath:"..\lib\dll-release" /fixed:no +# ADD LINK32 libcurl_imp.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"dll-release/curl.exe" /libpath:"..\lib\dll-release" /fixed:no + +!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl LIB Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "lib-debug" +# PROP BASE Intermediate_Dir "lib-debug/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "lib-debug" +# PROP Intermediate_Dir "lib-debug/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "CURL_STATICLIB" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /EHsc /Zi /Od /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "CURL_STATICLIB" /FD /GZ /c +# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\..\include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 libcurld.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"lib-debug/curl.exe" /pdbtype:con /libpath:"..\lib\lib-debug" /fixed:no +# ADD LINK32 libcurld.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"lib-debug/curl.exe" /pdbtype:con /libpath:"..\lib\lib-debug" /fixed:no + +!ELSEIF "$(CFG)" == "curltool - Win32 using libcurl LIB Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "lib-release" +# PROP BASE Intermediate_Dir "lib-release/obj" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "lib-release" +# PROP Intermediate_Dir "lib-release/obj" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /D "CURL_STATICLIB" /FD /c +# ADD CPP /nologo /MD /W3 /EHsc /O2 /I "..\..\..\lib" /I "..\..\..\include" /I "..\..\..\src" /D "_CONSOLE" /D "WIN32" /D "NDEBUG" /D "CURL_STATICLIB" /FD /c +# ADD BASE RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" +# ADD RSC /l 0x409 /i "..\..\..\include" /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 libcurl.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"lib-release/curl.exe" /libpath:"..\lib\lib-release" /fixed:no +# ADD LINK32 libcurl.lib wldap32.lib ws2_32.lib advapi32.lib kernel32.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"lib-release/curl.exe" /libpath:"..\lib\lib-release" /fixed:no + +!ENDIF + +# Begin Target + +# Name "curltool - Win32 using libcurl DLL Debug" +# Name "curltool - Win32 using libcurl DLL Release" +# Name "curltool - Win32 using libcurl LIB Debug" +# Name "curltool - Win32 using libcurl LIB Release" +# Begin Group "Source Files" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\..\..\lib\nonblock.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\lib\rawstr.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\lib\strtoofft.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_binmode.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_bname.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_dbg.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_hdr.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_prg.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_rea.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_see.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_wrt.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cfgable.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_convert.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_dirhie.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_doswin.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_easysrc.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_formparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_getparam.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_getpass.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_help.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_helpers.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_homedir.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_hugehelp.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_libinfo.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_main.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_metalink.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_mfiles.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_msgs.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_operate.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_operhlp.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_panykey.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_paramhlp.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_parsecfg.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_setopt.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_sleep.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_urlglob.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_util.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_vms.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_writeenv.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_writeout.c +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_xattr.c +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE="..\..\..\lib\config-win32.h" +# End Source File +# Begin Source File + +SOURCE=..\..\..\lib\nonblock.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\lib\rawstr.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\lib\strtoofft.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_binmode.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_bname.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_dbg.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_hdr.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_prg.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_rea.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_see.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cb_wrt.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_cfgable.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_convert.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_dirhie.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_doswin.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_easysrc.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_formparse.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_getparam.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_getpass.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_help.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_helpers.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_homedir.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_hugehelp.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_libinfo.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_main.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_metalink.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_mfiles.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_msgs.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_operate.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_operhlp.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_panykey.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_paramhlp.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_parsecfg.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_sdecls.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_setopt.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_setup.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_sleep.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_urlglob.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_util.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_version.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_vms.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_writeenv.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_writeout.h +# End Source File +# Begin Source File + +SOURCE=..\..\..\src\tool_xattr.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\..\..\src\curl.rc +# End Source File +# End Group +# End Target +# End Project diff --git a/vs/vc6/src/vc6curltool.dsw b/vs/vc6/src/vc6curltool.dsw new file mode 100644 index 000000000..b92638a89 --- /dev/null +++ b/vs/vc6/src/vc6curltool.dsw @@ -0,0 +1,29 @@ +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "curltool"=".\vc6curltool.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/vs/vc6/vc6curl.dsw b/vs/vc6/vc6curl.dsw new file mode 100644 index 000000000..859edd5e1 --- /dev/null +++ b/vs/vc6/vc6curl.dsw @@ -0,0 +1,44 @@ +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "libcurl"=".\lib\vc6libcurl.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "curltool"=".\src\vc6curltool.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name libcurl + End Project Dependency +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/vs/vc8/.gitattributes b/vs/vc8/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc8/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc8/.gitignore b/vs/vc8/.gitignore new file mode 100644 index 000000000..68e2ba073 --- /dev/null +++ b/vs/vc8/.gitignore @@ -0,0 +1,7 @@ +* +!.gitattributes +!.gitignore +!lib +!src +!tests +!vc8curl.sln diff --git a/vs/vc8/lib/.gitattributes b/vs/vc8/lib/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc8/lib/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc8/lib/.gitignore b/vs/vc8/lib/.gitignore new file mode 100644 index 000000000..4f5c670ba --- /dev/null +++ b/vs/vc8/lib/.gitignore @@ -0,0 +1,4 @@ +* +!.gitattributes +!.gitignore +!vc8libcurl.sln diff --git a/vs/vc8/src/.gitattributes b/vs/vc8/src/.gitattributes new file mode 100644 index 000000000..aecf25037 --- /dev/null +++ b/vs/vc8/src/.gitattributes @@ -0,0 +1 @@ +* -crlf diff --git a/vs/vc8/src/.gitignore b/vs/vc8/src/.gitignore new file mode 100644 index 000000000..7fae07f4e --- /dev/null +++ b/vs/vc8/src/.gitignore @@ -0,0 +1,5 @@ +* +!.gitattributes +!.gitignore +!vc8curltool.sln +!vc8curltool.vcproj -- cgit v1.2.3