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
45b25779
Commit
45b25779
authored
18 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
added variadic macro stuff.
parent
d58c7a8b
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
ares/Makefile.netware
+8
-0
8 additions, 0 deletions
ares/Makefile.netware
lib/Makefile.netware
+8
-0
8 additions, 0 deletions
lib/Makefile.netware
src/Makefile.netware
+8
-1
8 additions, 1 deletion
src/Makefile.netware
with
24 additions
and
1 deletion
ares/Makefile.netware
+
8
−
0
View file @
45b25779
...
...
@@ -258,6 +258,9 @@ config.h: Makefile.netware
@
echo
$(
DL
)
**
Do not edit this file - it is created by make!
$(
DL
)
>>
$@
@
echo
$(
DL
)
**
All your changes will be lost!!
$(
DL
)
>>
$@
@
echo
$(
DL
)
*
/
$(
DL
)
>>
$@
@
echo
$(
DL
)
#ifndef NETWARE
$(
DL
)
>>
$@
@
echo
$(
DL
)
#error This
$(
notdir
$@
)
is created
for
NetWare platform!
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define OS "i586-pc-NetWare"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define VERSION "
$(
LIBCARES_VERSION_STR
)
"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define PACKAGE_BUGREPORT "
a suitable curl mailing list
=>
http://curl.haxx.se/mail/
"
$(
DL
)
>>
$@
...
...
@@ -335,6 +338,11 @@ else
@
echo
$(
DL
)
#define HAVE_SYS_SOCKIO_H 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_NETDB_H 1
$(
DL
)
>>
$@
endif
@
echo
$(
DL
)
#ifdef __GNUC__
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_GCC 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#else
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_C99 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
ifdef
OLD_NOVELLSDK
@
echo
$(
DL
)
#define socklen_t int
$(
DL
)
>>
$@
endif
...
...
This diff is collapsed.
Click to expand it.
lib/Makefile.netware
+
8
−
0
View file @
45b25779
...
...
@@ -324,6 +324,9 @@ config.h: Makefile.netware
@
echo
$(
DL
)
**
Do not edit this file - it is created by make!
$(
DL
)
>>
$@
@
echo
$(
DL
)
**
All your changes will be lost!!
$(
DL
)
>>
$@
@
echo
$(
DL
)
*
/
$(
DL
)
>>
$@
@
echo
$(
DL
)
#ifndef NETWARE
$(
DL
)
>>
$@
@
echo
$(
DL
)
#error This
$(
notdir
$@
)
is created
for
NetWare platform!
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define OS "i586-pc-NetWare"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define VERSION "
$(
LIBCURL_VERSION_STR
)
"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define PACKAGE_BUGREPORT "
a suitable curl mailing list
=>
http://curl.haxx.se/mail/
"
$(
DL
)
>>
$@
...
...
@@ -431,6 +434,11 @@ ifdef WITH_SSH2
@
echo
$(
DL
)
#define USE_LIBSSH2 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBSSH2_H 1
$(
DL
)
>>
$@
endif
@
echo
$(
DL
)
#ifdef __GNUC__
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_GCC 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#else
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_C99 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
ifdef
OLD_NOVELLSDK
@
echo
$(
DL
)
#define socklen_t int
$(
DL
)
>>
$@
endif
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.netware
+
8
−
1
View file @
45b25779
...
...
@@ -300,7 +300,6 @@ ifdef IMPORTS
endif
ifeq
($(LD),nlmconv)
@echo
$(DL)input
$(OBJS)$(DL)
>>
$@
@echo
$(DL)input
$(OBJX)$(DL)
>>
$@
@echo
$(DL)input
$(PRELUDE)$(DL)
>>
$@
ifdef
LDLIBS
@echo
$(DL)input
$(LDLIBS)$(DL)
>>
$@
...
...
@@ -314,6 +313,9 @@ config.h: Makefile.netware
@
echo
$(
DL
)
**
Do not edit this file - it is created by make!
$(
DL
)
>>
$@
@
echo
$(
DL
)
**
All your changes will be lost!!
$(
DL
)
>>
$@
@
echo
$(
DL
)
*
/
$(
DL
)
>>
$@
@
echo
$(
DL
)
#ifndef NETWARE
$(
DL
)
>>
$@
@
echo
$(
DL
)
#error This
$(
notdir
$@
)
is created
for
NetWare platform!
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define OS "i586-pc-NetWare"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define VERSION "
$(
LIBCURL_VERSION_STR
)
"
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define PACKAGE_BUGREPORT "
a suitable curl mailing list
=>
http://curl.haxx.se/mail/
"
$(
DL
)
>>
$@
...
...
@@ -412,6 +414,11 @@ ifdef WITH_SSH2
@
echo
$(
DL
)
#define USE_LIBSSH2 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBSSH2_H 1
$(
DL
)
>>
$@
endif
@
echo
$(
DL
)
#ifdef __GNUC__
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_GCC 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#else
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_VARIADIC_MACROS_C99 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#endif
$(
DL
)
>>
$@
ifdef
OLD_NOVELLSDK
@
echo
$(
DL
)
#define socklen_t int
$(
DL
)
>>
$@
endif
...
...
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