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
414c57d1
Commit
414c57d1
authored
18 years ago
by
Gisle Vanem
Browse files
Options
Downloads
Patches
Plain Diff
Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H and
HAVE_PROCESS_H added for all except scc.
parent
c14a84e6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
lib/config-win32.h
+15
-2
15 additions, 2 deletions
lib/config-win32.h
lib/config-win32ce.h
+4
-1
4 additions, 1 deletion
lib/config-win32ce.h
lib/setup.h
+11
-0
11 additions, 0 deletions
lib/setup.h
lib/share.h
+9
-1
9 additions, 1 deletion
lib/share.h
with
39 additions
and
4 deletions
lib/config-win32.h
+
15
−
2
View file @
414c57d1
...
...
@@ -37,7 +37,9 @@
#define HAVE_IO_H 1
/* Define if you have the <malloc.h> header file. */
#ifndef __SALFORDC__
#define HAVE_MALLOC_H 1
#endif
/* Define if you have the <netdb.h> header file. */
/* #define HAVE_NETDB_H 1 */
...
...
@@ -45,6 +47,11 @@
/* Define if you have the <netinet/in.h> header file. */
/* #define HAVE_NETINET_IN_H 1 */
/* Define if you have the <process.h> header file. */
#ifndef __SALFORDC__
#define HAVE_PROCESS_H 1
#endif
/* Define if you have the <sgtty.h> header file. */
/* #define HAVE_SGTTY_H 1 */
...
...
@@ -98,11 +105,13 @@
/* Define if you have the <winsock.h> header file. */
#define HAVE_WINSOCK_H 1
#ifndef __SALFORDC__
/* Define if you have the <winsock2.h> header file. */
#define HAVE_WINSOCK2_H 1
/* Define if you have the <ws2tcpip.h> header file. */
#define HAVE_WS2TCPIP_H 1
#endif
/* ---------------------------------------------------------------- */
/* OTHER HEADER INFO */
...
...
@@ -246,8 +255,10 @@
#endif
/* Define SIZEOF_CURL_OFF_T as computed by sizeof(curl_off_t) */
/* Borland/PellesC lacks _lseeki64(), so we don't support >2GB files. */
#if defined(__BORLANDC__) || defined(__POCC__)
/* Borland/PellesC/SalfordC lacks _lseeki64(), so we don't support
* >2GB files.
*/
#if defined(__BORLANDC__) || defined(__POCC__) || defined(__SALFORDC__)
#define SIZEOF_CURL_OFF_T 4
#else
#define SIZEOF_CURL_OFF_T 8
...
...
@@ -258,7 +269,9 @@
/* ---------------------------------------------------------------- */
/* Define this if you have struct sockaddr_storage */
#ifndef __SALFORDC__
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
#endif
/* ---------------------------------------------------------------- */
/* COMPILER SPECIFIC */
...
...
This diff is collapsed.
Click to expand it.
lib/config-win32ce.h
+
4
−
1
View file @
414c57d1
...
...
@@ -54,6 +54,9 @@
/* Define if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define if you have the <process.h> header file. */
#define HAVE_PROCESS_H 1
/* Define if you have the <sys/param.h> header file. */
/* #define HAVE_SYS_PARAM_H 1 */
...
...
@@ -277,7 +280,7 @@
#define PACKAGE "curl"
/* ---------------------------------------------------------------- */
/*
WinCE
*/
/*
WinCE
*/
/* ---------------------------------------------------------------- */
#define CURL_DISABLE_FILE 1
...
...
This diff is collapsed.
Click to expand it.
lib/setup.h
+
11
−
0
View file @
414c57d1
...
...
@@ -173,6 +173,17 @@ typedef unsigned char bool;
#endif
#endif
/*
* Salford-C cludge section (mostly borrowed from wxWidgets).
*/
#ifdef __SALFORDC__
#pragma suppress 353
/* Possible nested comments */
#pragma suppress 593
/* Define not used */
#pragma suppress 61
/* enum has no name */
#pragma suppress 106
/* unnamed, unused parameter */
#include
<clib.h>
#endif
#if defined(CURLDEBUG) && defined(HAVE_ASSERT_H)
#define curlassert(x) assert(x)
#else
...
...
This diff is collapsed.
Click to expand it.
lib/share.h
+
9
−
1
View file @
414c57d1
...
...
@@ -28,10 +28,18 @@
#include
<curl/curl.h>
#include
"cookie.h"
/* SalfordC says "A structure member may not be volatile". Hence:
*/
#ifdef __SALFORDC__
#define CURL_VOLATILE
#else
#define CURL_VOLATILE volatile
#endif
/* this struct is libcurl-private, don't export details */
struct
Curl_share
{
unsigned
int
specifier
;
volatile
unsigned
int
dirty
;
CURL_VOLATILE
unsigned
int
dirty
;
curl_lock_function
lockfunc
;
curl_unlock_function
unlockfunc
;
...
...
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