X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fopenssh;h=9e61bd156ce8903b46fde11deb793b2a213fb84a;hp=1245b57d9c1b594c12f89a38040c514108b3d5c2;hb=a91ca65e82da80139f0e0675def755561ec7d478;hpb=70df830214c97a68fcb7e89ae0d7df58c35590be diff --git a/lfs/openssh b/lfs/openssh index 1245b57d9c..9e61bd156c 100644 --- a/lfs/openssh +++ b/lfs/openssh @@ -24,7 +24,7 @@ include Config -VER = 4.3p2 +VER = 4.7p1 THISAPP = openssh-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 7e9880ac20a9b9db0d3fea30a9ff3d46 +$(DL_FILE)_MD5 = 50a800fd2c6def9e9a53068837e87b91 install : $(TARGET) @@ -70,6 +70,9 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) +ifeq "$(PADLOCK)" "1" + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssh-4.7p1-padlock.patch +endif cd $(DIR_APP) && sed -i "s/lkrb5 -ldes/lkrb5/" configure cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc/ssh \ --libexecdir=/usr/lib/openssh --with-md5-passwords \ @@ -89,7 +92,5 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) -e 's/^#\?X11Forwarding .*$$/X11Forwarding no/' \ -e 's/^#\?AllowTcpForwarding .*$$/AllowTcpForwarding no/' \ /etc/ssh/sshd_config - touch /var/ipfire/remote/enablessh - chown nobody:nobody /var/ipfire/remote/enablessh @rm -rf $(DIR_APP) @$(POSTBUILD)