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
4b27fae0
Commit
4b27fae0
authored
18 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
enabled build with libssh2.
parent
10a13eba
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.m32
+13
-5
13 additions, 5 deletions
lib/Makefile.m32
src/Makefile.m32
+13
-8
13 additions, 8 deletions
src/Makefile.m32
with
26 additions
and
13 deletions
lib/Makefile.m32
+
13
−
5
View file @
4b27fae0
...
...
@@ -2,18 +2,21 @@
# $Id$
#
## Makefile for building libcurl.a with MingW32 (GCC-3.2) and
## optionally OpenSSL (0.9.
7
)
## optionally OpenSSL (0.9.
8
)
##
## Use: make -f Makefile.m32
## Use: make -f Makefile.m32
[SSL=1] [SSH2=1] [DYN=1]
##
## Comments to: Troy Engel <tengel@sonic.net> or
## Joern Hartroth <hartroth@acm.org>
ifndef
OPENSSL_PATH
OPENSSL_PATH
=
../../openssl-0.9.7d
OPENSSL_PATH
=
../../openssl-0.9.8d
endif
ifndef
LIBSSH2_PATH
LIBSSH2_PATH
=
../../libssh2-0.14
endif
ifndef
ZLIB_PATH
ZLIB_PATH
=
../../zlib-1.2.
1
ZLIB_PATH
=
../../zlib-1.2.
3
endif
CC
=
gcc
...
...
@@ -27,12 +30,17 @@ STRIP = strip -g
INCLUDES
=
-I
.
-I
../include
CFLAGS
=
-g
-O2
-DMINGW32
-DBUILDING_LIBCURL
-DHAVE_LONGLONG
ifdef
SSH2
INCLUDES
+=
-I
"
$(
LIBSSH2_PATH
)
/include"
-I
"
$(
LIBSSH2_PATH
)
/win32"
CFLAGS
+=
-DUSE_LIBSSH2
-DHAVE_LIBSSH2_H
DLL_LIBS
+=
-L
$(
LIBSSH2_PATH
)
/win32
-lssh2
endif
ifdef
SSL
INCLUDES
+=
-I
"
$(
OPENSSL_PATH
)
/outinc"
-I
"
$(
OPENSSL_PATH
)
/outinc/openssl"
CFLAGS
+=
-DUSE_SSLEAY
-DUSE_OPENSSL
-DHAVE_OPENSSL_ENGINE_H
-DHAVE_OPENSSL_PKCS12_H
\
-DHAVE_ENGINE_LOAD_BUILTIN_ENGINES
-DOPENSSL_NO_KRB5
\
-DCURL_CA_BUNDLE
=
'getenv("CURL_CA_BUNDLE")'
DLL_LIBS
=
-L
$(
OPENSSL_PATH
)
/out
-leay32
-lssl32
DLL_LIBS
+
=
-L
$(
OPENSSL_PATH
)
/out
-leay32
-lssl32
endif
ifdef
ZLIB
INCLUDES
+=
-I
"
$(
ZLIB_PATH
)
"
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.m32
+
13
−
8
View file @
4b27fae0
...
...
@@ -2,18 +2,21 @@
# $Id$
#
## Makefile for building curl.exe with MingW32 (GCC-3.2) and
## optionally OpenSSL (0.9.
7
)
## optionally OpenSSL (0.9.
8
)
##
## Use: make -f Makefile.m32 [SSL=1] [DYN=1]
## Use: make -f Makefile.m32 [SSL=1]
[SSH2=1]
[DYN=1]
##
## Comments to: Troy Engel <tengel@sonic.net> or
## Joern Hartroth <hartroth@acm.org>
ifndef
OPENSSL_PATH
OPENSSL_PATH
=
../../openssl-0.9.7d
OPENSSL_PATH
=
../../openssl-0.9.8d
endif
ifndef
LIBSSH2_PATH
LIBSSH2_PATH
=
../../libssh2-0.14
endif
ifndef
ZLIB_PATH
ZLIB_PATH
=
../../zlib-1.2.
1
ZLIB_PATH
=
../../zlib-1.2.
3
endif
CC
=
gcc
...
...
@@ -29,9 +32,6 @@ STRIP = strip -s
INCLUDES
=
-I
.
-I
..
-I
../include
-I
../lib
-I
$(
ZLIB_PATH
)
CFLAGS
=
-g
-O2
-DMINGW32
ifdef
SSL
CFLAGS
+=
-DUSE_SSLEAY
-DHAVE_OPENSSL_ENGINE_H
endif
LDFLAGS
=
COMPILE
=
$(
CC
)
$(
INCLUDES
)
$(
CFLAGS
)
LINK
=
$(
CC
)
$(
CFLAGS
)
$(
LDFLAGS
)
-o
$@
...
...
@@ -45,10 +45,15 @@ else
curl_LDADD
=
-L
../lib
-lcurl
COMPILE
+=
-DCURL_STATICLIB
endif
curl_LDADD
+=
-lwsock32
-lws2_32
-lwinmm
-L
$(
ZLIB_PATH
)
-lz
ifdef
SSH2
CFLAGS
+=
-DUSE_LIBSSH2
-DHAVE_LIBSSH2_H
curl_LDADD
+=
-L
$(
LIBSSH2_PATH
)
/win32
-lssh2
endif
ifdef
SSL
CFLAGS
+=
-DUSE_SSLEAY
-DHAVE_OPENSSL_ENGINE_H
curl_LDADD
+=
-L
$(
OPENSSL_PATH
)
/out
-leay32
-lssl32
endif
curl_LDADD
+=
-lwsock32
-lws2_32
-lwinmm
-L
$(
ZLIB_PATH
)
-lz
# Makefile.inc provides the CSOURCES and HHEADERS defines
include
Makefile.inc
...
...
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