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
0ae6ff9f
Commit
0ae6ff9f
authored
19 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
some minor Makefile fixes for SSL.
parent
8b571fbb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/Makefile.netware
+19
-9
19 additions, 9 deletions
lib/Makefile.netware
src/Makefile.netware
+8
-6
8 additions, 6 deletions
src/Makefile.netware
with
27 additions
and
15 deletions
lib/Makefile.netware
+
19
−
9
View file @
0ae6ff9f
...
...
@@ -13,11 +13,13 @@ NDKBASE = c:/novell
endif
# Edit the path below to point to the base of your Zlib sources.
#ZLIB_PATH = ../../zlib-1.2.2
ifndef
ZLIB_PATH
ZLIB_PATH
=
../../zlib-1.2.3
endif
# Edit the path below to point to the base of your OpenSSL package.
ifndef
OPENSSL_PATH
OPENSSL_PATH
=
../../openssl-0.9.
7g
OPENSSL_PATH
=
../../openssl-0.9.
8
endif
ifndef
INSTDIR
...
...
@@ -116,19 +118,20 @@ ifdef WITH_ARES
INCLUDES
+=
-I
../ares
LIBCARES
=
../ares/libcares.lib
endif
ifdef
ZLIB_PATH
ifdef
WITH_ZLIB
INCLUDES
+=
-I
$(
ZLIB_PATH
)
IMPORTS
=
@
$(
ZLIB_PATH
)
/nw/
z
lib.imp
IMPORTS
=
@
$(
ZLIB_PATH
)
/nw/lib
z
.imp
MODULES
=
libz.nlm
endif
ifdef
SSL
ifdef
WITH_
SSL
INCLUDES
+=
-I
$(
OPENSSL_PATH
)
/outinc_nw_libc
-I
$(
OPENSSL_PATH
)
/outinc_nw_libc/openssl
LIBSSL
=
$(
OPENSSL_PATH
)
/out_nw_libc/crypto.lib
$(
OPENSSL_PATH
)
/out_nw_libc/ssl.lib
IMPORTS
+=
GetProcessSwitchCount RunningProcess
endif
ifeq
($(LIBARCH),LIBC)
INCLUDES
+=
-I
$(
SDK_LIBC
)
/include
-I
$(
SDK_LIBC
)
/include/nks
INCLUDES
+=
-I
$(
SDK_LIBC
)
/include/winsock
#
INCLUDES += -I$(SDK_LIBC)/include/winsock
# INCLUDES += -I$(SDK_LDAP)/libc/inc
CFLAGS
+=
-D_POSIX_SOURCE
# CFLAGS += -D__ANSIC__
...
...
@@ -277,7 +280,7 @@ ifeq ($(LD),nlmconv)
ifdef
WITH_ARES
@echo
$(DL)input
$(LIBCARES)$(DL)
>>
$@
endif
ifdef
SSL
ifdef
WITH_
SSL
@echo
$(DL)input
$(LIBSSL)$(DL)
>>
$@
endif
@echo
$(DL)input
$(OBJL)$(DL)
>>
$@
...
...
@@ -336,6 +339,13 @@ config.h: Makefile.netware
@
echo
$(
DL
)
#define SIZEOF_CURL_OFF_T 4
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define STDC_HEADERS 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define TIME_WITH_SYS_TIME 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_AF_INET6 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_PF_INET6 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_STRUCT_IN6_ADDR 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_STRUCT_SOCKADDR_IN6 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_STRUCT_ADDRINFO 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define SIZEOF_STRUCT_IN6_ADDR 16
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define SIZEOF_STRUCT_IN_ADDR 4
$(
DL
)
>>
$@
ifdef
DISABLE_LDAP
@
echo
$(
DL
)
#define CURL_DISABLE_LDAP 1
$(
DL
)
>>
$@
else
...
...
@@ -355,11 +365,11 @@ endif
ifdef
WITH_ARES
@
echo
$(
DL
)
#define USE_ARES 1
$(
DL
)
>>
$@
endif
ifdef
ZLIB_PATH
ifdef
WITH_ZLIB
@
echo
$(
DL
)
#define HAVE_ZLIB_H 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBZ 1
$(
DL
)
>>
$@
endif
ifdef
SSL
ifdef
WITH_
SSL
@
echo
$(
DL
)
#define USE_SSLEAY 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define USE_OPENSSL 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_OPENSSL_X509_H 1
$(
DL
)
>>
$@
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.netware
+
8
−
6
View file @
0ae6ff9f
...
...
@@ -13,11 +13,13 @@ NDKBASE = c:/novell
endif
# Edit the path below to point to the base of your Zlib sources.
#ZLIB_PATH = ../../zlib-1.2.2
ifndef
ZLIB_PATH
ZLIB_PATH
=
../../zlib-1.2.3
endif
# Edit the path below to point to the base of your OpenSSL package.
ifndef
OPENSSL_PATH
OPENSSL_PATH
=
../../openssl-0.9.
7g
OPENSSL_PATH
=
../../openssl-0.9.
8
endif
ifndef
INSTDIR
...
...
@@ -111,7 +113,7 @@ CURL_LIB = ../lib
INCLUDES
=
-I
$(
CURL_INC
)
-I
$(
CURL_LIB
)
ifdef
ZLIB_PATH
ifdef
WITH_ZLIB
INCLUDES
+=
-I
$(
ZLIB_PATH
)
IMPORTS
+=
@
$(
ZLIB_PATH
)
/nw/zlib.imp
MODULES
+=
libz.nlm
...
...
@@ -119,7 +121,7 @@ endif
ifeq
($(LIBARCH),LIBC)
INCLUDES
+=
-I
$(
SDK_LIBC
)
/include
-I
$(
SDK_LIBC
)
/include/nks
INCLUDES
+=
-I
$(
SDK_LIBC
)
/include/winsock
#
INCLUDES += -I$(SDK_LIBC)/include/winsock
# INCLUDES += -I$(SDK_LDAP)/libc/inc
CFLAGS
+=
-D_POSIX_SOURCE
# CFLAGS += -D__ANSIC__
...
...
@@ -330,11 +332,11 @@ endif
ifdef
WITH_ARES
@
echo
$(
DL
)
#define USE_ARES 1
$(
DL
)
>>
$@
endif
ifdef
ZLIB_PATH
ifdef
WITH_ZLIB
@
echo
$(
DL
)
#define HAVE_ZLIB_H 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBZ 1
$(
DL
)
>>
$@
endif
ifdef
SSL
ifdef
WITH_
SSL
@
echo
$(
DL
)
#define USE_SSLEAY 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_OPENSSL_X509_H 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_OPENSSL_SSL_H 1
$(
DL
)
>>
$@
...
...
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