net/iodine: upgrade to version 0.7.0

This is compatible to 0.6.0-rc1 client and servers and fixes an
authentication bypass bug (CVE-2014-4168).

Signed-off-by: Uwe Kleine-König <uwe+openwrt@kleine-koenig.org>
This commit is contained in:
Uwe Kleine-König 2014-07-07 10:37:53 +02:00
parent f22fc16043
commit 7d5784fc51
2 changed files with 17 additions and 15 deletions

View File

@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=iodine PKG_NAME:=iodine
PKG_VERSION:=0.6.0-rc1 PKG_VERSION:=0.7.0
PKG_RELEASE:=5 PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://code.kryo.se/iodine/ PKG_SOURCE_URL:=http://code.kryo.se/iodine/
PKG_MD5SUM:=a15bb4faba020d217016fde6e231074a PKG_MD5SUM:=fdbf3b81cd69caf5230d76a8b039fd99
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk

View File

@ -1,22 +1,24 @@
--- a/src/osflags --- iodine-0.7.0.orig/src/osflags
+++ b/src/osflags +++ iodine-0.7.0/src/osflags
@@ -16,9 +16,6 @@ link) @@ -16,12 +16,6 @@ link)
windows32) windows32)
echo '-lws2_32 -liphlpapi'; echo '-lws2_32 -liphlpapi';
;; ;;
- Linux) - Linux)
- [ -e /usr/include/selinux/selinux.h ] && echo '-lselinux'; - FLAGS="";
- [ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -lselinux";
- [ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -lsystemd-daemon";
- echo $FLAGS;
- ;; - ;;
esac esac
;; ;;
cflags) cflags)
@@ -26,9 +23,6 @@ cflags) @@ -34,8 +28,6 @@ cflags)
BeOS) ;;
echo '-Dsocklen_t=int'; Linux)
FLAGS="-D_GNU_SOURCE"
- [ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -DHAVE_SETCON";
- [ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -DHAVE_SYSTEMD";
echo $FLAGS;
;; ;;
- Linux)
- [ -e /usr/include/selinux/selinux.h ] && echo '-DHAVE_SETCON';
- ;;
esac esac
;;
*)