From: <abe...@us...> - 2017-07-17 14:53:20
|
Revision: 8450 http://sourceforge.net/p/astlinux/code/8450 Author: abelbeck Date: 2017-07-17 14:53:18 +0000 (Mon, 17 Jul 2017) Log Message: ----------- stunnel, version bump to 5.42, autoreconf of stunnel is now broken but our configure.ac patch is not needed since /dev/urandom is hard-coded in the source as a default entropy source Modified Paths: -------------- branches/1.0/package/stunnel/stunnel.mk Removed Paths: ------------- branches/1.0/package/stunnel/stunnel-configure.patch Deleted: branches/1.0/package/stunnel/stunnel-configure.patch =================================================================== --- branches/1.0/package/stunnel/stunnel-configure.patch 2017-07-17 12:32:06 UTC (rev 8449) +++ branches/1.0/package/stunnel/stunnel-configure.patch 2017-07-17 14:53:18 UTC (rev 8450) @@ -1,23 +0,0 @@ ---- stunnel-5.01/configure.ac.orig 2014-04-11 10:43:39.000000000 -0500 -+++ stunnel-5.01/configure.ac 2014-04-11 10:49:05.000000000 -0500 -@@ -132,7 +132,8 @@ - AC_CHECK_FILE("/dev/ptc", AC_DEFINE([HAVE_DEV_PTS_AND_PTC], [1], - [Define to 1 if you have '/dev/ptc' device.])) - else -- AC_MSG_WARN([cross-compilation: assuming /dev/ptmx and /dev/ptc are not available]) -+ AC_DEFINE([HAVE_DEV_PTMX], [1], [Define to 1 if you have '/dev/ptmx' device.]) -+ AC_MSG_WARN([cross-compilation: assuming /dev/ptmx is available]) - fi - - AC_MSG_NOTICE([**************************************** entropy sources]) -@@ -161,7 +162,9 @@ - AC_DEFINE_UNQUOTED([RANDOM_FILE], ["$RANDOM_FILE"], [Random file path]) - fi - else -- AC_MSG_WARN([cross-compilation: assuming entropy sources are not available]) -+ RANDOM_FILE="/dev/urandom" -+ AC_DEFINE_UNQUOTED([RANDOM_FILE], ["$RANDOM_FILE"], [Random file path]) -+ AC_MSG_WARN([cross-compilation: assuming entropy source /dev/urandom is available]) - fi - - AC_MSG_NOTICE([**************************************** default group]) Modified: branches/1.0/package/stunnel/stunnel.mk =================================================================== --- branches/1.0/package/stunnel/stunnel.mk 2017-07-17 12:32:06 UTC (rev 8449) +++ branches/1.0/package/stunnel/stunnel.mk 2017-07-17 14:53:18 UTC (rev 8450) @@ -4,14 +4,11 @@ # ############################################################# -STUNNEL_VERSION = 5.40 +STUNNEL_VERSION = 5.42 STUNNEL_SITE = http://www.usenix.org.uk/mirrors/stunnel/archive/5.x STUNNEL_DEPENDENCIES = openssl -# We're patching configure.ac -STUNNEL_AUTORECONF = YES - -STUNNEL_CONF_OPT += \ +STUNNEL_CONF_OPT = \ --with-ssl=$(STAGING_DIR)/usr \ --localstatedir=/var \ --disable-libwrap \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |