Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
7ab1139f
Commit
7ab1139f
authored
15 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
added MSVC6 caveats.
parent
d0552269
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/INSTALL
+17
-0
17 additions, 0 deletions
docs/INSTALL
with
17 additions
and
0 deletions
docs/INSTALL
+
17
−
0
View file @
7ab1139f
...
...
@@ -246,6 +246,23 @@ Win32
See the separate INSTALL.devcpp file for details.
MSVC 6 caveats
--------------
If you use MSVC 6 it is required that you use the MS PSDK:
http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm
The headers and libs provided with MSVC 6 are now more than 10 years old
and not sufficient for a build of libcurl / curl with common features!
Without the PSDK you will run into these issues:
- LDAPv3 is not supported --> breaks compilation
- IPv6 support is incomplete --> breaks compilation
- socklen_t type is missing --> breaks compilation
If you really need to compile without PSDK then you can workaround these
issues by disabling LDAP and IPv6 support, and adding a line:
typedef int socklen_t;
to the winsock2.h header. This is however not recommended, and you should
use the PSDK whenever possible!
MSVC from command line
----------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment