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
74e5beab
Commit
74e5beab
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Doug Kaufman's set of patches to make curl build fine on DJGPP again using
configure.
parent
b41765f4
No related branches found
No related tags found
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
CHANGES
+7
-0
7 additions, 0 deletions
CHANGES
RELEASE-NOTES
+2
-1
2 additions, 1 deletion
RELEASE-NOTES
configure.ac
+13
-2
13 additions, 2 deletions
configure.ac
lib/setup.h
+3
-0
3 additions, 0 deletions
lib/setup.h
lib/transfer.c
+1
-1
1 addition, 1 deletion
lib/transfer.c
src/setup.h
+2
-0
2 additions, 0 deletions
src/setup.h
with
28 additions
and
4 deletions
CHANGES
+
7
−
0
View file @
74e5beab
...
...
@@ -8,6 +8,13 @@
Daniel (24 November 2005)
- Doug Kaufman provided a set of patches to make curl build fine on DJGPP
again using configure.
- Yang Tse provided a whole series of patches to clear up compiler warnings on
MSVC 6.
Daniel (17 November 2005)
- I extended a patch from David Shaw to make libcurl _always_ provide an error
string in the given error buffer to address the flaw mention on 21 sep 2005.
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
2
−
1
View file @
74e5beab
...
...
@@ -19,6 +19,7 @@ This release includes the following changes:
This release includes the following bugfixes:
o builds fine on DJGPP
o CURLOPT_ERRORBUFFER is now always filled in on errors
o curl outputs error on bad --limit-rate units
o fixed libcurl's use of poll() on cygwin
...
...
@@ -52,6 +53,6 @@ advice from friends like these:
Dave Dribin, Bradford Bruce, Temprimus, Ofer, Dima Barsky, Amol Pattekar, Jaz
Fresh, tommink[at]post.pl, Gisle Vanem, Nis Jorgensen, Vilmos Nebehaj,
Dmitry Bartsevich, David Lang, Eugene Kotlyarov, Jan Kunder, Yang Tse,
Quagmire, Albert Chin, David Shaw
Quagmire, Albert Chin, David Shaw
, Doug Kaufman
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
configure.ac
+
13
−
2
View file @
74e5beab
...
...
@@ -1504,6 +1504,13 @@ dnl Checks for library functions.
dnl AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL
dnl AC_FUNC_VPRINTF
case $host in
*msdosdjgpp)
ac_cv_func_pipe=no
skipcheck_pipe=yes
AC_MSG_NOTICE([skip check for pipe on msdosdjgpp])
;;
esac
AC_CHECK_FUNCS( strtoll \
socket \
select \
...
...
@@ -1541,7 +1548,8 @@ AC_CHECK_FUNCS( strtoll \
dnl if found
[],
dnl if not found, $ac_func is the name we check for
func="$ac_func"
func="$ac_func"
if test "skipcheck_$func" != "yes"; then
AC_MSG_CHECKING([deeper for $func])
AC_TRY_LINK( [],
[ $func ();],
...
...
@@ -1551,7 +1559,7 @@ dnl if not found, $ac_func is the name we check for
AC_DEFINE_UNQUOTED($def, 1, [If you have $func]),
AC_MSG_RESULT(but still no)
)
fi
)
dnl For some reason, the check above doesn't properly detect select() with
...
...
@@ -1589,6 +1597,9 @@ AC_CHECK_DECL(basename, ,
#ifdef HAVE_LIBGEN_H
#include <libgen.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
)
AC_MSG_CHECKING([if we are Mac OS X (to disable poll)])
...
...
This diff is collapsed.
Click to expand it.
lib/setup.h
+
3
−
0
View file @
74e5beab
...
...
@@ -200,6 +200,7 @@ typedef unsigned char bool;
#define sread(x,y,z) read_s(x,y,z)
#define swrite(x,y,z) write_s(x,y,z)
#define select(n,r,w,x,t) select_s(n,r,w,x,t)
#define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
#define IOCTL_3_ARGS
#include
<tcp.h>
#ifdef word
...
...
@@ -229,7 +230,9 @@ typedef unsigned char bool;
#endif
#define DIR_CHAR "/"
#ifndef DOT_CHAR
#define DOT_CHAR "."
#endif
#ifdef DJGPP
#undef DOT_CHAR
...
...
This diff is collapsed.
Click to expand it.
lib/transfer.c
+
1
−
1
View file @
74e5beab
...
...
@@ -214,7 +214,7 @@ CURLcode Curl_readrewind(struct connectdata *conn)
if
(
data
->
set
.
ioctl
)
{
curlioerr
err
;
err
=
data
->
set
.
ioctl
(
data
,
CURLIOCMD_RESTARTREAD
,
err
=
(
data
->
set
.
ioctl
)
(
data
,
CURLIOCMD_RESTARTREAD
,
data
->
set
.
ioctl_client
);
infof
(
data
,
"the ioctl callback returned %d
\n
"
,
(
int
)
err
);
...
...
This diff is collapsed.
Click to expand it.
src/setup.h
+
2
−
0
View file @
74e5beab
...
...
@@ -103,7 +103,9 @@ int fileno( FILE *stream);
#ifdef word
#undef word
#endif
#ifndef HAVE_LIMITS_H
#define HAVE_LIMITS_H
/* we have limits.h */
#endif
#define DIR_CHAR "/"
#define DOT_CHAR "_"
#else
...
...
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