summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--contrib/caldera/openssh.spec1
-rw-r--r--contrib/redhat/openssh.spec3
-rw-r--r--contrib/suse/openssh.spec9
4 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 49014534e..f3edcd44f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
7 - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This 7 - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
8 can cause weird segfaults errors on Solaris 8 can cause weird segfaults errors on Solaris
9 - (djm) Avoid warning in PAM code by making read_passphrase arguments const 9 - (djm) Avoid warning in PAM code by making read_passphrase arguments const
10 - (djm) Add --with-pam to RPM spec files
10 11
1120010115 1220010115
12 - (bal) sftp-server.c change to use chmod() if fchmod() does not exist. 13 - (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 3191c6744..d0546f256 100644
--- a/contrib/caldera/openssh.spec
+++ b/contrib/caldera/openssh.spec
@@ -142,6 +142,7 @@ CFLAGS="$RPM_OPT_FLAGS" \
142 --prefix=/usr \ 142 --prefix=/usr \
143 --sysconfdir=/etc/ssh \ 143 --sysconfdir=/etc/ssh \
144 --libexecdir=%{_libexecdir}/openssh \ 144 --libexecdir=%{_libexecdir}/openssh \
145 --with-pam \
145 --with-tcp-wrappers \ 146 --with-tcp-wrappers \
146 --with-ipv4-default \ 147 --with-ipv4-default \
147 --with-rsh=/usr/bin/rsh 148 --with-rsh=/usr/bin/rsh
diff --git a/contrib/redhat/openssh.spec b/contrib/redhat/openssh.spec
index 7603d0874..731fb0474 100644
--- a/contrib/redhat/openssh.spec
+++ b/contrib/redhat/openssh.spec
@@ -142,10 +142,11 @@ This package contains the GNOME passphrase dialog.
142 142
143%configure \ 143%configure \
144 --libexecdir=%{_libexecdir}/openssh \ 144 --libexecdir=%{_libexecdir}/openssh \
145 --with-pam \
145 --with-tcp-wrappers \ 146 --with-tcp-wrappers \
146 --with-ipv4-default \ 147 --with-ipv4-default \
147 --with-rsh=/usr/bin/rsh \ 148 --with-rsh=/usr/bin/rsh \
148 --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin 149 --with-default-path=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
149 150
150make 151make
151 152
diff --git a/contrib/suse/openssh.spec b/contrib/suse/openssh.spec
index 457864772..04625f64e 100644
--- a/contrib/suse/openssh.spec
+++ b/contrib/suse/openssh.spec
@@ -88,8 +88,13 @@ passphrase dialog.
88 88
89%build 89%build
90CFLAGS="$RPM_OPT_FLAGS" \ 90CFLAGS="$RPM_OPT_FLAGS" \
91./configure --prefix=/usr --sysconfdir=/etc/ssh --with-gnome-askpass \ 91./configure --prefix=/usr \
92 --with-tcp-wrappers --with-ipv4-default --libexecdir=/usr/lib/ssh 92 --sysconfdir=/etc/ssh \
93 --with-pam \
94 --with-gnome-askpass \
95 --with-tcp-wrappers \
96 --with-ipv4-default \
97 --libexecdir=/usr/lib/ssh
93make 98make
94 99
95cd contrib 100cd contrib