diff options
author | djm <djm> | 2001-01-17 00:23:39 +0000 |
---|---|---|
committer | djm <djm> | 2001-01-17 00:23:39 +0000 |
commit | f149a40b1a6131c885439aced888b70e9c6dde7e (patch) | |
tree | c69f70db5a1f091aba502e772303f92c64e092a4 | |
parent | 7c2c01e412512cb9e0325fcf537e040428e4d375 (diff) | |
download | openssh-f149a40b1a6131c885439aced888b70e9c6dde7e.tar.gz |
- (djm) Add --with-pam to RPM spec files
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | contrib/caldera/openssh.spec | 1 | ||||
-rw-r--r-- | contrib/redhat/openssh.spec | 3 | ||||
-rw-r--r-- | contrib/suse/openssh.spec | 9 |
4 files changed, 11 insertions, 3 deletions
@@ -7,6 +7,7 @@ - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This can cause weird segfaults errors on Solaris - (djm) Avoid warning in PAM code by making read_passphrase arguments const + - (djm) Add --with-pam to RPM spec files 20010115 - (bal) sftp-server.c change to use chmod() if fchmod() does not exist. diff --git a/contrib/caldera/openssh.spec b/contrib/caldera/openssh.spec index 3191c674..d0546f25 100644 --- a/contrib/caldera/openssh.spec +++ b/contrib/caldera/openssh.spec @@ -142,6 +142,7 @@ CFLAGS="$RPM_OPT_FLAGS" \ --prefix=/usr \ --sysconfdir=/etc/ssh \ --libexecdir=%{_libexecdir}/openssh \ + --with-pam \ --with-tcp-wrappers \ --with-ipv4-default \ --with-rsh=/usr/bin/rsh diff --git a/contrib/redhat/openssh.spec b/contrib/redhat/openssh.spec index 7603d087..731fb047 100644 --- a/contrib/redhat/openssh.spec +++ b/contrib/redhat/openssh.spec @@ -142,10 +142,11 @@ This package contains the GNOME passphrase dialog. %configure \ --libexecdir=%{_libexecdir}/openssh \ + --with-pam \ --with-tcp-wrappers \ --with-ipv4-default \ --with-rsh=/usr/bin/rsh \ - --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin + --with-default-path=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin make diff --git a/contrib/suse/openssh.spec b/contrib/suse/openssh.spec index 45786477..04625f64 100644 --- a/contrib/suse/openssh.spec +++ b/contrib/suse/openssh.spec @@ -88,8 +88,13 @@ passphrase dialog. %build CFLAGS="$RPM_OPT_FLAGS" \ -./configure --prefix=/usr --sysconfdir=/etc/ssh --with-gnome-askpass \ - --with-tcp-wrappers --with-ipv4-default --libexecdir=/usr/lib/ssh +./configure --prefix=/usr \ + --sysconfdir=/etc/ssh \ + --with-pam \ + --with-gnome-askpass \ + --with-tcp-wrappers \ + --with-ipv4-default \ + --libexecdir=/usr/lib/ssh make cd contrib |