From: Michael Tremer Date: Wed, 18 Jun 2008 21:34:06 +0000 (+0000) Subject: Updated openssh to 5.0p1. X-Git-Tag: v3.0-alpha1~937 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1949c82060fe096ff6eeca74fb88abeb29fed8b;p=ipfire-3.x.git Updated openssh to 5.0p1. We also now link to the shared openssl (libcrypto). That's not the best way but it is pic :D --- diff --git a/lfs/openssh b/lfs/openssh index 6d443dfd1..b02ade5bb 100644 --- a/lfs/openssh +++ b/lfs/openssh @@ -25,7 +25,7 @@ include Config PKG_NAME = openssh -VER = 4.7p1 +VER = 5.0p1 THISAPP = $(PKG_NAME)-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -55,16 +55,17 @@ $(TARGET) : @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) install -v -m700 -d /var/lib/sshd chown -v root:sys /var/lib/sshd - cd $(DIR_APP) && sed -i 's@-lcrypto@/usr/lib/libcrypto.a -ldl@' configure cd $(DIR_APP) && sed -i 's@ -ldes@@' configure - cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc/ssh \ + cd $(DIR_APP) && ./configure --prefix=/usr \ + --sysconfdir=/etc/ssh \ --datadir=/usr/share/sshd \ - --libexecdir=/usr/lib/openssh --with-md5-passwords \ - --with-privsep-path=/var/lib/sshd \ - --with-pam + --libexecdir=/usr/lib/openssh \ + --with-md5-passwords \ + --with-privsep-path=/var/lib/sshd \ + --with-pam cd $(DIR_APP) && make $(PARALLELISMFLAGS) cd $(DIR_APP) && make install - sed 's@d/login@d/sshd@g' /etc/pam.d/login > /etc/pam.d/sshd + sed 's@d/login@d/sshd@g' /etc/pam.d/login > /etc/pam.d/sshd chmod 644 /etc/pam.d/sshd @rm -rf $(DIR_APP) @$(POSTBUILD)