Skip to content

Commit 2bd9418

Browse files
committed
Some minor makefile tweaks.
1 parent 4b8013a commit 2bd9418

File tree

4 files changed

+15
-22
lines changed

4 files changed

+15
-22
lines changed

nw/Makefile.netware

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
## Makefile for building libssh2 (NetWare version - gnu make)
44
## Use: make -f Makefile.netware [help|all|clean|dev|devclean|dist|distclean|lib|nlm|objclean]
55
##
6-
## Comments to: Guenter Knauf <[email protected]>
7-
##
8-
## $Id: Makefile.netware,v 1.14 2009/04/09 03:13:51 gknauf Exp $
6+
## Comments to: Guenter Knauf http://www.gknw.net/phpbb
97
#
108
#########################################################################
119

@@ -21,7 +19,7 @@ endif
2119

2220
# Edit the path below to point to the base of your OpenSSL package.
2321
ifndef OPENSSL_PATH
24-
OPENSSL_PATH = ../../openssl-0.9.8n
22+
OPENSSL_PATH = ../../openssl-0.9.8o
2523
endif
2624

2725
# Edit the path below to point to your Distribution folder.
@@ -81,9 +79,9 @@ endif
8179
CP = cp -afv
8280
# RM = rm -f
8381
# Here you can find a native Win32 binary of the original awk:
84-
# http://www.gknw.net/development/prgtools/awk.zip
82+
# http://www.gknw.net/development/prgtools/awk-20070501.zip
8583
AWK = awk
86-
# if you want to mark the target as MTSAFE you will need a tool for
84+
# If you want to mark the target as MTSAFE you will need a tool for
8785
# generating the xdc data for the linker; here's a minimal tool:
8886
# http://www.gknw.net/development/prgtools/mkxdc.zip
8987
MPKXDC = mkxdc
@@ -507,6 +505,7 @@ endif
507505
@echo $(DL) libssh2_channel_write_ex,$(DL) >> $@
508506
@echo $(DL) libssh2_hostkey_hash,$(DL) >> $@
509507
@echo $(DL) libssh2_scp_recv,$(DL) >> $@
508+
@echo $(DL) libssh2_scp_send64,$(DL) >> $@
510509
@echo $(DL) libssh2_scp_send_ex,$(DL) >> $@
511510
@echo $(DL) libssh2_knownhost_add,$(DL) >> $@
512511
@echo $(DL) libssh2_knownhost_check,$(DL) >> $@

nw/test/Makefile.netware

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
## Makefile for building libssh2 (NetWare version - gnu make)
44
## Use: make -f Makefile.netware
55
##
6-
## Comments to: Guenter Knauf <[email protected]>
7-
##
8-
## $Id: Makefile.netware,v 1.10 2009/04/09 03:13:52 gknauf Exp $
6+
## Comments to: Guenter Knauf http://www.gknw.net/phpbb
97
#
108
#########################################################################
119

@@ -21,7 +19,7 @@ endif
2119

2220
# Edit the path below to point to the base of your OpenSSL package.
2321
ifndef OPENSSL_PATH
24-
OPENSSL_PATH = ../../../openssl-0.9.8n
22+
OPENSSL_PATH = ../../../openssl-0.9.8o
2523
endif
2624

2725
# Edit the var below to enable static linking of libssh2 and libz
@@ -75,9 +73,9 @@ endif
7573
CP = cp -afv
7674
# RM = rm -f
7775
# Here you can find a native Win32 binary of the original awk:
78-
# http://www.gknw.net/development/prgtools/awk.zip
76+
# http://www.gknw.net/development/prgtools/awk-20070501.zip
7977
AWK = awk
80-
# if you want to mark the target as MTSAFE you will need a tool for
78+
# If you want to mark the target as MTSAFE you will need a tool for
8179
# generating the xdc data for the linker; here's a minimal tool:
8280
# http://www.gknw.net/development/prgtools/mkxdc.zip
8381
MPKXDC = mkxdc

win32/Makefile.win32

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
## Makefile for building libssh2 (Win32 version - gnu make)
44
## Use: make -f Makefile.win32 [help|all|clean|dev|devclean|dist|distclean|dll|objclean]
55
##
6-
## Comments to: Guenter Knauf <[email protected]>
7-
##
8-
## $Id: Makefile.win32,v 1.11 2009/04/09 03:13:52 gknauf Exp $
6+
## Comments to: Guenter Knauf http://www.gknw.net/phpbb
97
#
108
#########################################################################
119

@@ -18,7 +16,7 @@ WITH_ZLIB = 1
1816

1917
# Edit the path below to point to the base of your OpenSSL package.
2018
ifndef OPENSSL_PATH
21-
OPENSSL_PATH = ../../openssl-0.9.8n
19+
OPENSSL_PATH = ../../openssl-0.9.8o
2220
endif
2321

2422
# Edit the path below to point to your Distribution folder.
@@ -68,7 +66,7 @@ endif
6866
CP = cp -afv
6967
# RM = rm -f
7068
# Here you can find a native Win32 binary of the original awk:
71-
# http://www.gknw.net/development/prgtools/awk.zip
69+
# http://www.gknw.net/development/prgtools/awk-20070501.zip
7270
AWK = awk
7371
ZIP = zip -qzr9
7472

win32/test/Makefile.win32

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
## Makefile for building libssh2 samples (Win32 version - gnu make)
44
## Use: make -f Makefile.win32 [help]
55
##
6-
## Comments to: Guenter Knauf <[email protected]>
7-
##
8-
## $Id: Makefile.win32,v 1.8 2009/04/09 03:14:05 gknauf Exp $
6+
## Comments to: Guenter Knauf http://www.gknw.net/phpbb
97
#
108
#########################################################################
119

@@ -16,7 +14,7 @@ endif
1614

1715
# Edit the path below to point to the base of your OpenSSL package.
1816
ifndef OPENSSL_PATH
19-
OPENSSL_PATH = ../../../openssl-0.9.8n
17+
OPENSSL_PATH = ../../../openssl-0.9.8o
2018
endif
2119

2220
# Edit the var below to enable static linking of libssh2 and libz
@@ -56,7 +54,7 @@ endif
5654
CP = cp -afv
5755
# RM = rm -f
5856
# Here you can find a native Win32 binary of the original awk:
59-
# http://www.gknw.net/development/prgtools/awk.zip
57+
# http://www.gknw.net/development/prgtools/awk-20070501.zip
6058
AWK = awk
6159
ZIP = zip -qzr9
6260

0 commit comments

Comments
 (0)