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
7b51aafa
Commit
7b51aafa
authored
19 years ago
by
Gisle Vanem
Browse files
Options
Downloads
Patches
Plain Diff
Changes for PellesC compiler under Win32. A bit limited, but
we just love swedish products...
parent
5f487123
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/config-win32.h
+6
-5
6 additions, 5 deletions
lib/config-win32.h
lib/setup.h
+20
-4
20 additions, 4 deletions
lib/setup.h
lib/timeval.h
+1
-1
1 addition, 1 deletion
lib/timeval.h
with
27 additions
and
10 deletions
lib/config-win32.h
+
6
−
5
View file @
7b51aafa
...
...
@@ -87,7 +87,8 @@
#define HAVE_TIME_H 1
/* Define if you have the <unistd.h> header file. */
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__)
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__) || \
defined(__POCC__)
#define HAVE_UNISTD_H 1
#endif
...
...
@@ -181,7 +182,7 @@
#define HAVE_STRSTR 1
/* Define if you have the strtoll function. */
#if defined(__MINGW32__) || defined(__WATCOMC__)
#if defined(__MINGW32__) || defined(__WATCOMC__)
|| defined(__POCC__)
#define HAVE_STRTOLL 1
#endif
...
...
@@ -216,7 +217,7 @@
/* #define size_t unsigned */
/* Define to 'int' if ssize_t is not an available 'typedefed' type */
#if defined(__WATCOMC__) && (__WATCOMC__ >= 1240)
#if
(
defined(__WATCOMC__) && (__WATCOMC__ >= 1240)
) || defined(__POCC__)
#else
#define ssize_t int
#endif
...
...
@@ -242,8 +243,8 @@
#endif
/* Define SIZEOF_CURL_OFF_T as computed by sizeof(curl_off_t) */
/* Borland lacks _lseeki64(), so we don't support >2GB files. */
#ifdef
__BORLANDC__
/* Borland
/PellesC
lacks _lseeki64(), so we don't support >2GB files. */
#if
def
ined(
__BORLANDC__
) || defined(__POCC__)
#define SIZEOF_CURL_OFF_T 4
#else
#define SIZEOF_CURL_OFF_T 8
...
...
This diff is collapsed.
Click to expand it.
lib/setup.h
+
20
−
4
View file @
7b51aafa
...
...
@@ -70,10 +70,10 @@
#endif
/* HAVE_CONFIG_H */
/*
/*
* Include header files for windows builds before redefining anything.
* Use this preproessor block only to include or exclude windows.h,
* winsock2.h, ws2tcpip.h or winsock.h. Any other windows thing belongs
* Use this preproessor block only to include or exclude windows.h,
* winsock2.h, ws2tcpip.h or winsock.h. Any other windows thing belongs
* to any other further and independant block.
*/
...
...
@@ -153,6 +153,21 @@ typedef unsigned char bool;
#include
<curl/stdcheaders.h>
#endif
/*
* PellesC cludge section (yikes);
* - It has 'ssize_t', but it is in <unistd.h>. The way the headers
* on Win32 are included, forces me to include this header here.
* - sys_nerr, EINTR is missing in v4.0 or older.
*/
#ifdef __POCC__
#include
<sys/types.h>
#include
<unistd.h>
#if (__POCC__ <= 400)
#define sys_nerr EILSEQ
/* for strerror.c */
#define EINTR -1
/* for select.c */
#endif
#endif
#if defined(CURLDEBUG) && defined(HAVE_ASSERT_H)
#define curlassert(x) assert(x)
#else
...
...
@@ -181,6 +196,7 @@ typedef unsigned char bool;
#define struct_stat struct stat
#endif
/* Win32 with large file support */
/* Below we define four functions. They should
1. close a socket
2. read from a socket
...
...
@@ -287,7 +303,7 @@ typedef int curl_socket_t;
/* "cl -ML" or "cl -MLd" implies a single-threaded runtime library where
_beginthreadex() is not available */
#if defined(_MSC_VER) && !defined(_MT) && !defined(USE_ARES)
#if
(
defined(_MSC_VER) &&
!defined(__POCC__)) &&
!defined(_MT) && !defined(USE_ARES)
#undef USE_THREADING_GETADDRINFO
#undef USE_THREADING_GETHOSTBYNAME
#define CURL_NO__BEGINTHREADEX
...
...
This diff is collapsed.
Click to expand it.
lib/timeval.h
+
1
−
1
View file @
7b51aafa
...
...
@@ -38,7 +38,7 @@
#ifndef HAVE_GETTIMEOFDAY
#if !defined(_WINSOCKAPI_) && !defined(__MINGW32__) && !defined(_AMIGASF) && \
!defined(__LCC__) && !defined(__WATCOMC__)
!defined(__LCC__) && !defined(__WATCOMC__)
&& !defined(__POCC__)
struct
timeval
{
long
tv_sec
;
long
tv_usec
;
...
...
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