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
5f829456
Commit
5f829456
authored
14 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
Added support for axTLS to NetWare build.
parent
a834e004
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
+20
-0
20 additions, 0 deletions
lib/Makefile.netware
src/Makefile.netware
+19
-0
19 additions, 0 deletions
src/Makefile.netware
with
39 additions
and
0 deletions
lib/Makefile.netware
+
20
−
0
View file @
5f829456
...
...
@@ -27,6 +27,11 @@ ifndef LIBSSH2_PATH
LIBSSH2_PATH
=
../../libssh2-1.2.7
endif
# Edit the path below to point to the base of your axTLS package.
ifndef
AXTLS_PATH
AXTLS_PATH
=
../../axTLS-1.2.7
endif
# Edit the path below to point to the base of your libidn package.
ifndef
LIBIDN_PATH
LIBIDN_PATH
=
../../libidn-1.18
...
...
@@ -195,6 +200,17 @@ ifdef WITH_SSL
LDLIBS
+=
$(
OPENSSL_PATH
)
/out_nw_
$(
LIBARCH_L
)
/crypto.
$(
LIBEXT
)
IMPORTS
+=
GetProcessSwitchCount RunningProcess
INSTDEP
+=
ca-bundle.crt
else
ifdef
WITH_AXTLS
INCLUDES
+=
-I
$(
AXTLS_PATH
)
/inc
ifdef
LINK_STATIC
LDLIBS
+=
$(
AXTLS_PATH
)
/lib/libaxtls.
$(
LIBEXT
)
else
MODULES
+=
libaxtls.nlm
IMPORTS
+=
$(
AXTLS_PATH
)
/lib/libaxtls.imp
endif
INSTDEP
+=
ca-bundle.crt
endif
endif
ifdef
WITH_ZLIB
INCLUDES
+=
-I
$(
ZLIB_PATH
)
...
...
@@ -563,6 +579,10 @@ ifdef WITH_SSL
@
echo
$(
DL
)
#define HAVE_LIBSSL 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBCRYPTO 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define OPENSSL_NO_KRB5 1
$(
DL
)
>>
$@
else
ifdef
WITH_AXTLS
@
echo
$(
DL
)
#define USE_AXTLS 1
$(
DL
)
>>
$@
endif
endif
ifdef
WITH_SSH2
@
echo
$(
DL
)
#define USE_LIBSSH2 1
$(
DL
)
>>
$@
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.netware
+
19
−
0
View file @
5f829456
...
...
@@ -27,6 +27,11 @@ ifndef LIBSSH2_PATH
LIBSSH2_PATH
=
../../libssh2-1.2.7
endif
# Edit the path below to point to the base of your axTLS package.
ifndef
AXTLS_PATH
AXTLS_PATH
=
../../axTLS-1.2.7
endif
# Edit the path below to point to the base of your libidn package.
ifndef
LIBIDN_PATH
LIBIDN_PATH
=
../../libidn-1.18
...
...
@@ -196,6 +201,16 @@ ifdef WITH_SSL
LDLIBS
+=
$(
OPENSSL_PATH
)
/out_nw_
$(
LIBARCH_L
)
/ssl.
$(
LIBEXT
)
LDLIBS
+=
$(
OPENSSL_PATH
)
/out_nw_
$(
LIBARCH_L
)
/crypto.
$(
LIBEXT
)
IMPORTS
+=
GetProcessSwitchCount RunningProcess
else
ifdef
WITH_AXTLS
INCLUDES
+=
-I
$(
AXTLS_PATH
)
/inc
ifdef
LINK_STATIC
LDLIBS
+=
$(
AXTLS_PATH
)
/lib/libaxtls.
$(
LIBEXT
)
else
MODULES
+=
libaxtls.nlm
IMPORTS
+=
$(
AXTLS_PATH
)
/lib/libaxtls.imp
endif
endif
endif
ifdef
WITH_ZLIB
INCLUDES
+=
-I
$(
ZLIB_PATH
)
...
...
@@ -557,6 +572,10 @@ ifdef WITH_SSL
@
echo
$(
DL
)
#define HAVE_LIBSSL 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define HAVE_LIBCRYPTO 1
$(
DL
)
>>
$@
@
echo
$(
DL
)
#define OPENSSL_NO_KRB5 1
$(
DL
)
>>
$@
else
ifdef
WITH_AXTLS
@
echo
$(
DL
)
#define USE_AXTLS 1
$(
DL
)
>>
$@
endif
endif
ifdef
WITH_SSH2
@
echo
$(
DL
)
#define USE_LIBSSH2 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