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
a8ff0a21
Commit
a8ff0a21
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Based on feedback from Cory Nelson, I added some preprocessor magic in
*/setup.h and */config-win32.h to build fine with VS2005 on x64.
parent
b8bc6bed
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGES
+4
-0
4 additions, 0 deletions
CHANGES
lib/config-win32.h
+4
-0
4 additions, 0 deletions
lib/config-win32.h
lib/setup.h
+5
-1
5 additions, 1 deletion
lib/setup.h
src/config-win32.h
+4
-0
4 additions, 0 deletions
src/config-win32.h
src/setup.h
+4
-0
4 additions, 0 deletions
src/setup.h
with
21 additions
and
1 deletion
CHANGES
+
4
−
0
View file @
a8ff0a21
...
...
@@ -7,6 +7,10 @@
Changelog
Daniel (25 April 2005)
- Based on feedback from Cory Nelson, I added some preprocessor magic in
*/setup.h and */config-win32.h to build fine with VS2005 on x64.
Daniel (23 April 2005)
- Alex Suykov made the curl tool now assume that uploads using HTTP:// or
HTTPS:// are the only ones that show output and thus motivates a switched
...
...
This diff is collapsed.
Click to expand it.
lib/config-win32.h
+
4
−
0
View file @
a8ff0a21
...
...
@@ -235,6 +235,10 @@
/* lber dynamic library file */
/* #undef DL_LBER_FILE */
/* Defines set for VS2005 to _not_ decprecate a few functions we use. */
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
/* ldap dynamic library file */
#define DL_LDAP_FILE "wldap32.dll"
...
...
This diff is collapsed.
Click to expand it.
lib/setup.h
+
5
−
1
View file @
a8ff0a21
...
...
@@ -33,7 +33,11 @@
#endif
#if !defined(WIN32) && defined(__WIN32__)
/* This should be a good Borland fix. Alexander J. Oss told us! */
/* This should be a good Borland fix. */
#define WIN32
#endif
#if !defined(WIN32) && defined(_WIN32)
/* This works for VS2005 on x64 */
#define WIN32
#endif
...
...
This diff is collapsed.
Click to expand it.
src/config-win32.h
+
4
−
0
View file @
a8ff0a21
...
...
@@ -37,6 +37,10 @@
/* Define if you have the setlocale() function. */
#define HAVE_SETLOCALE 1
/* Defines set for VS2005 to _not_ decprecate a few functions we use. */
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
/*************************************************
* This section is for compiler specific defines.*
*************************************************/
...
...
This diff is collapsed.
Click to expand it.
src/setup.h
+
4
−
0
View file @
a8ff0a21
...
...
@@ -29,6 +29,10 @@
/* Borland fix */
#define WIN32
#endif
#if !defined(WIN32) && defined(_WIN32)
/* This works for VS2005 on x64 */
#define WIN32
#endif
#ifdef HAVE_CONFIG_H
#include
"config.h"
/* the configure script results */
...
...
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