summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-03-05 11:20:40 +1100
committerDamien Miller <djm@mindrot.org>2005-03-05 11:20:40 +1100
commit7ffa367a936566e35b04a8371d3e961f29429eae (patch)
tree1c27705c1685600b54532c1854d259f950ae718c
parentf8f3016f9e959e5f1220ccdcd8f5d1c48b6bdb25 (diff)
- (djm) [contrib/cygwin/README] Improve Cygwin build documentation. Patch
from vinschen at redhat.com
-rw-r--r--ChangeLog6
-rw-r--r--contrib/cygwin/README25
2 files changed, 22 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 416a4ea9..9224971c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20050305
+ - (djm) [contrib/cygwin/README] Improve Cygwin build documentation. Patch
+ from vinschen at redhat.com
+
20050302
- (djm) OpenBSD CVS sync:
- jmc@cvs.openbsd.org 2005/03/01 14:47:58
@@ -2266,4 +2270,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.3688 2005/03/03 05:49:56 tim Exp $
+$Id: ChangeLog,v 1.3689 2005/03/05 00:20:40 djm Exp $
diff --git a/contrib/cygwin/README b/contrib/cygwin/README
index 5a9b1ce0..3dd45014 100644
--- a/contrib/cygwin/README
+++ b/contrib/cygwin/README
@@ -195,28 +195,37 @@ configure are used for the Cygwin binary distribution:
--prefix=/usr \
--sysconfdir=/etc \
- --libexecdir='$(sbindir)' \
+ --libexecdir='${sbindir}' \
--localstatedir=/var \
- --datadir='$(prefix)/share' \
- --mandir='$(datadir)/man' \
+ --datadir='${prefix}/share' \
+ --mandir='${datadir}/man' \
+ --infodir='${datadir}/info'
--with-tcp-wrappers
If you want to create a Cygwin package, equivalent to the one
in the Cygwin binary distribution, install like this:
mkdir /tmp/cygwin-ssh
- cd $(builddir)
+ cd ${builddir}
make install DESTDIR=/tmp/cygwin-ssh
- cd $(srcdir)/contrib/cygwin
+ cd ${srcdir}/contrib/cygwin
make cygwin-postinstall DESTDIR=/tmp/cygwin-ssh
cd /tmp/cygwin-ssh
find * \! -type d | tar cvjfT my-openssh.tar.bz2 -
-
-You must have installed the zlib, the openssl-devel and the minires-devel
-packages to be able to build OpenSSH!
+
+You must have installed the following packages to be able to build OpenSSH:
+
+- zlib
+- openssl-devel
+- minires-devel
+
+If you want to build with --with-tcp-wrappers, you also need the package
+
+- tcp_wrappers
Please send requests, error reports etc. to cygwin@cygwin.com.
+
Have fun,
Corinna Vinschen