summaryrefslogtreecommitdiff
path: root/lib/Makefile.vc6
Commit message (Collapse)AuthorAgeFilesLines
* VC: remove the makefile.vc6 build infraDaniel Stenberg2017-01-231-691/+0
| | | | | | The winbuild/ build files is now the single MSVC makefile build choice. Closes #1215
* Curl_rand: fixed and moved to rand.cDaniel Stenberg2016-11-141-0/+1
| | | | | | | | | | | | | Now Curl_rand() is made to fail if it cannot get the necessary random level. Changed the proto of Curl_rand() slightly to provide a number of ints at once. Moved out from vtls, since it isn't a TLS function and vtls provides Curl_ssl_random() for this to use. Discussion: https://curl.haxx.se/mail/lib-2016-11/0119.html
* msvc: removed a straggling reference to strequal.cDan Fandrich2016-11-021-1/+0
| | | | Follow-up to 502acba2
* strcase: fix the remaining rawstr usersDaniel Stenberg2016-10-311-1/+1
|
* Makefile.vc: link with crypt32.lib for winssl buildsDaniel Stenberg2016-06-221-2/+3
| | | | | | Necessary since 6cabd78531f Fixes #853
* vc: fix the build for schannel certinfo supportDaniel Stenberg2016-06-221-0/+1
| | | | | Broken since 6cabd785, which adds use of the Curl_extract_certinfo function from the x509asn1.c file.
* loadlibrary: Only load system DLLs from the system directorySteve Holme2016-05-301-1/+2
| | | | | | | | Inspiration provided by: Daniel Stenberg and Ray Satiro Bug: https://curl.haxx.se/docs/adv_20160530.html Ref: Windows DLL hijacking with curl, CVE-2016-4802
* http_ntlm: Renamed from curl_ntlm.[c|h]Steve Holme2016-03-271-1/+1
| | | | | | | | | | | Renamed the header and source files for this module as they are HTTP specific and as such, they should use the naming convention as other HTTP authentication source files do - this revert commit 260ee6b7bf. Note: We could also rename curl_ntlm_wb.[c|h], however, the Winbind code needs separating from the HTTP protocol and migrating into the vauth directory, thus adding support for Winbind to the SASL based protocols such as IMAP, POP3 and SMTP.
* http_negotiate: Combine GSS-API and SSPI source filesSteve Holme2016-03-261-1/+0
| | | | | | | As the GSS-API and SSPI based source files are no longer library/API specific, following the extraction of that authentication code to the vauth directory, combine these files rather than maintain two separate versions.
* vauth: Moved the Negotiate authentication code to the new vauth directorySteve Holme2016-03-261-0/+1
| | | | Part 2 of 2 - Moved the GSS-API based Negotiate authentication code.
* vauth: Moved the Negotiate authentication code to the new vauth directorySteve Holme2016-03-261-0/+1
| | | | Part 1 of 2 - Moved the SSPI based Negotiate authentication code.
* build: Corrected typos from commit 70e56939aaSteve Holme2016-03-251-1/+1
|
* vauth: Moved the OAuth 2.0 authentication code to the new vauth directorySteve Holme2016-03-251-0/+1
|
* vauth: Moved the NTLM authentication code to the new vauth directorySteve Holme2016-03-251-2/+2
|
* vauth: Moved the Kerberos V5 authentication code to the new vauth directorySteve Holme2016-03-251-1/+2
|
* vauth: Moved the DIGEST authentication code to the new vauth directorySteve Holme2016-03-251-0/+2
|
* vauth: Moved the CRAM-MD5 authentication code to the new vauth directorySteve Holme2016-03-251-0/+1
|
* vauth: Moved the ClearText authentication code to the new vauth directorySteve Holme2016-03-251-0/+1
|
* vauth: Moved Curl_sasl_build_spn() to create the initial vauth source filesSteve Holme2016-03-251-0/+1
|
* build: Updated all makefiles and project files for the new vauth directorySteve Holme2016-03-251-0/+3
| | | | | | Updated the makefiles and Visual Studio project files to support moving the authentication code to the new lib/vauth directory that was started in commit 0d04e859e1.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* build: removed bundles.c from make filesDan Fandrich2015-05-141-1/+0
| | | | This file was removed in commit fd137786
* build: update depedency versions, urls, example makefilesViktor Szakats2015-04-301-4/+4
| | | | | | | - update default versions of dependencies (except for rare/old platforms) - update urls - sync examples makefiles with main ones - remove line ending space
* openssl: remove all uses of USE_SSLEAYDaniel Stenberg2015-03-051-1/+1
| | | | | | | SSLeay was the name of the library that was subsequently turned into OpenSSL many moons ago (1999). curl does not work with the old SSLeay library since years. This is now reflected by only using USE_OPENSSL in code that depends on OpenSSL.
* Makefile.vc6: Corrected typos in rename of darwinssl.objSteve Holme2015-02-161-1/+1
|
* By request, change the name of "curl_darwinssl.[ch]" to "darwinssl.[ch]"Nick Zitzmann2015-02-151-1/+1
|
* schannel: Removed curl_ prefix from source filesSteve Holme2015-02-071-1/+1
| | | | | Removed the curl_ prefix from the schannel source files as discussed with Marc and Daniel at FOSDEM.
* des: Added Curl_des_set_odd_parity()Steve Holme2015-01-281-1/+2
| | | | | Added Curl_des_set_odd_parity() for use when cryptography engines don't include this functionality.
* endian: Fixed Linux compilation issuesSteve Holme2014-12-311-1/+1
| | | | | Having files named endian.[c|h] seemed to cause issues under Linux so renamed them both to have the curl_ prefix in the filenames.
* endian: Introduced endian moduleSteve Holme2014-12-311-0/+1
| | | | | To allow the little endian functions, currently used in two of the NTLM source files, to be used by other modules such as the SMB module.
* build: updated dependencies in makefiles.Guenter Knauf2014-12-051-1/+1
|
* sasl_gssapi: Introduced GSS-API based SASL moduleSteve Holme2014-12-021-0/+1
| | | | | Added the initial version of curl_sasl_gssapi.c and updated the project files in preparation for adding GSS-API based Kerberos V5 support.
* smb: Added initial source files for SMBBill Nagel2014-11-291-0/+1
| | | | | Added the initial source files and updated the relevant project files in order to support SMB/CIFS.
* Makefile.vc6: Added support for WinIDNSteve Holme2014-11-081-0/+4
|
* vtls: remove QsoSSLPatrick Monnerat2014-10-131-1/+0
|
* Makefile.vc6: Added curl_sasl_sspi.cSteve Holme2014-04-061-0/+1
|
* Makefile: Added missing WinSSL and x64 configurationsSteve Holme2014-01-051-0/+12
|
* Makefile.vc6: follow up fix for 11e8066 and 92b9ae5Marc Hoersken2014-01-031-2/+2
|
* Updated copyright year for recent changesSteve Holme2014-01-021-1/+1
|
* Trial to fix the nmake Makefile for vtls files.Guenter Knauf2014-01-021-0/+3
|
* Removed reference to krb4.c.Guenter Knauf2013-08-311-1/+0
|
* Added winssl-zlib target to VC builds.Guenter Knauf2013-07-081-17/+30
|
* Synced Makefile.vc6 with recent changes.Guenter Knauf2013-07-081-1/+1
| | | | Issue posted to the list by malinowsky AT FTW DOT at.
* Updated zlib version in build files.Guenter Knauf2013-05-111-1/+1
|
* Makefile.vc6: add missing filesYang Tse2013-03-141-0/+14
|
* Updated dependency libs.Guenter Knauf2013-02-091-1/+1
|
* msvc: move Makefile.msvc.names into winbuild/Daniel Stenberg2013-02-061-2/+2
| | | | In an attempt to clear up misc files from the root dir
* Updated dependency libs.Guenter Knauf2013-01-281-1/+1
|
* Revert changes relative to lib/*.[ch] recent renamingYang Tse2013-01-061-81/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts renaming and usage of lib/*.h header files done 28-12-2012, reverting 2 commits: f871de0... build: make use of 76 lib/*.h renamed files ffd8e12... build: rename 76 lib/*.h files This also reverts removal of redundant include guard (redundant thanks to changes in above commits) done 2-12-2013, reverting 1 commit: c087374... curl_setup.h: remove redundant include guard This also reverts renaming and usage of lib/*.c source files done 3-12-2013, reverting 3 commits: 13606bb... build: make use of 93 lib/*.c renamed files 5b6e792... build: rename 93 lib/*.c files 7d83dff... build: commit 13606bbfde follow-up 1 Start of related discussion thread: http://curl.haxx.se/mail/lib-2013-01/0012.html Asking for confirmation on pushing this revertion commit: http://curl.haxx.se/mail/lib-2013-01/0048.html Confirmation summary: http://curl.haxx.se/mail/lib-2013-01/0079.html NOTICE: The list of 2 files that have been modified by other intermixed commits, while renamed, and also by at least one of the 6 commits this one reverts follows below. These 2 files will exhibit a hole in history unless git's '--follow' option is used when viewing logs. lib/curl_imap.h lib/curl_smtp.h
* build: make use of 93 lib/*.c renamed filesYang Tse2013-01-031-81/+81
| | | | | | 93 *.c source files renamed to use our standard naming scheme. This change affects 77 files in libcurl's source tree.