summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-09-14 16:06:42 +0000
committerColin Watson <cjwatson@debian.org>2005-09-14 16:06:42 +0000
commit3e0c7c15dc250ec19d90c0aacf8ebc79b3d170b0 (patch)
treea14d1cc18e339e0e5b3e43c7c0c0da33720997cf
parent50fd091ffec17a610b20f6701273e5ad20f58eb2 (diff)
- Build-depend on libkrb5-dev and configure --with-kerberos5=/usr.
-rw-r--r--debian/README.Debian11
-rw-r--r--debian/changelog1
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules2
4 files changed, 9 insertions, 7 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
index aabaebfe1..6b7ce8691 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -219,12 +219,13 @@ ssh is compiled with support for tcp-wrappers. So if you can no longer
219log into your system, please check that /etc/hosts.allow and /etc/hosts.deny 219log into your system, please check that /etc/hosts.allow and /etc/hosts.deny
220are configured so that ssh is not blocked. 220are configured so that ssh is not blocked.
221 221
222Kerberos Authentication 222Kerberos support
223----------------------- 223----------------
224 224
225ssh is compiled without support for kerberos authentication, and there are 225ssh is now compiled with Kerberos support. Unfortunately, privilege
226no current plans to support this. Thus the KerberosAuthentication and 226separation is incompatible with Kerberos support for SSH protocol 1 and
227KerberosTgtPassing options will not be recognised. 227parts of the support for protocol 2; you may need to run kinit after logging
228in.
228 229
229Interoperability between scp and the ssh.com SSH server 230Interoperability between scp and the ssh.com SSH server
230------------------------------------------------------- 231-------------------------------------------------------
diff --git a/debian/changelog b/debian/changelog
index 5693ef352..5da5c8477 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ openssh (1:4.2p1-2) UNRELEASED; urgency=low
5 - Add GSSAPI key exchange support from 5 - Add GSSAPI key exchange support from
6 http://www.sxw.org.uk/computing/patches/openssh.html (thanks, Stephen 6 http://www.sxw.org.uk/computing/patches/openssh.html (thanks, Stephen
7 Frost). 7 Frost).
8 - Build-depend on libkrb5-dev and configure --with-kerberos5=/usr.
8 9
9 -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:48:57 +0100 10 -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:48:57 +0100
10 11
diff --git a/debian/control b/debian/control
index 3ba6b4606..9785b9f5d 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: openssh
2Section: net 2Section: net
3Priority: standard 3Priority: standard
4Maintainer: Matthew Vernon <matthew@debian.org> 4Maintainer: Matthew Vernon <matthew@debian.org>
5Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev | libz-dev, libssl-dev, libpam0g-dev | libpam-dev, libgnomeui-dev (>= 2.0.0) | libgnome-dev, libedit-dev, groff, debhelper (>= 3), sharutils, libselinux1-dev [alpha amd64 arm hppa i386 ia64 m68k mips mipsel powerpc ppc64 s390 sparc] 5Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev | libz-dev, libssl-dev, libpam0g-dev | libpam-dev, libgnomeui-dev (>= 2.0.0) | libgnome-dev, libedit-dev, groff, debhelper (>= 3), sharutils, libselinux1-dev [alpha amd64 arm hppa i386 ia64 m68k mips mipsel powerpc ppc64 s390 sparc], libkrb5-dev
6Standards-Version: 3.6.2 6Standards-Version: 3.6.2
7Uploaders: Colin Watson <cjwatson@debian.org> 7Uploaders: Colin Watson <cjwatson@debian.org>
8 8
diff --git a/debian/rules b/debian/rules
index 63087d072..74c39731e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -71,7 +71,7 @@ build-deb: build-deb-stamp
71build-deb-stamp: 71build-deb-stamp:
72 dh_testdir 72 dh_testdir
73 mkdir -p build-deb 73 mkdir -p build-deb
74 cd build-deb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin --with-pam --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper --with-libedit $(SELINUX) 74 cd build-deb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin --with-pam --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper --with-libedit --with-kerberos5=/usr $(SELINUX)
75 75
76ifeq ($(DEB_HOST_ARCH_OS),linux) 76ifeq ($(DEB_HOST_ARCH_OS),linux)
77 # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999). 77 # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999).