]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Updated openssh to 5.0p1.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 18 Jun 2008 21:34:06 +0000 (21:34 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 18 Jun 2008 21:34:06 +0000 (21:34 +0000)
We also now link to the shared openssl (libcrypto).
That's not the best way but it is pic :D

lfs/openssh

index 6d443dfd1ec1fd169fb53ad09bcd5ce5e47a58a8..b02ade5bb035aae272075a125987f2b696beaa87 100644 (file)
@@ -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)