Index: head/benchmarks/siege/Makefile =================================================================== --- head/benchmarks/siege/Makefile (revision 388522) +++ head/benchmarks/siege/Makefile (revision 388523) @@ -1,30 +1,26 @@ # Created by: Mark Pulford # $FreeBSD$ PORTNAME= siege -PORTVERSION= 3.0.9 +PORTVERSION= 3.1.0 CATEGORIES= benchmarks www -MASTER_SITES= http://www.joedog.org/pub/siege/ \ +MASTER_SITES= http://download.joedog.org/siege/ \ http://fossies.org/linux/www/ MAINTAINER= bofh@FreeBSD.org COMMENT= HTTP regression testing and benchmarking utility LICENSE= GPLv2 USES= autoreconf libtool perl5 USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ENV= PERL="${PERL}" CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} --disable-shared \ --sysconfdir=${ETCDIR} - -post-patch: - @${REINPLACE_CMD} -e \ - 's|^\(AC_PROG_SHELL\)|dnl \1|' ${WRKSRC}/configure.ac pre-configure: @${RM} -f ${WRKSRC}/acinclude.m4 @${RM} -f ${WRKSRC}/utils/missing .include Index: head/benchmarks/siege/distinfo =================================================================== --- head/benchmarks/siege/distinfo (revision 388522) +++ head/benchmarks/siege/distinfo (revision 388523) @@ -1,2 +1,2 @@ -SHA256 (siege-3.0.9.tar.gz) = 82376eb466414ef4872a979a372972658df9813778ee8572341d4736ed30cb8f -SIZE (siege-3.0.9.tar.gz) = 524125 +SHA256 (siege-3.1.0.tar.gz) = 518759b3dc384d9960b8aa048ae32d9f04a62b9c248ae796812b6cb76681a514 +SIZE (siege-3.1.0.tar.gz) = 502461 Index: head/benchmarks/siege/files/patch-Makefile.am =================================================================== --- head/benchmarks/siege/files/patch-Makefile.am (nonexistent) +++ head/benchmarks/siege/files/patch-Makefile.am (revision 388523) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2015-06-04 10:45:57 UTC ++++ Makefile.am +@@ -20,6 +20,8 @@ + ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + ## + ++ACLOCAL_AMFLAGS = -I m4 ++ + AUTOMAKE_OPTIONS = foreign no-dependencies + + WARN_CFLAGS = @WARN_CFLAGS@ Property changes on: head/benchmarks/siege/files/patch-Makefile.am ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/siege/files/patch-configure.ac =================================================================== --- head/benchmarks/siege/files/patch-configure.ac (nonexistent) +++ head/benchmarks/siege/files/patch-configure.ac (revision 388523) @@ -0,0 +1,18 @@ +--- configure.ac.orig 2015-06-04 10:43:01 UTC ++++ configure.ac +@@ -7,6 +7,7 @@ dnl + AC_INIT + AC_CONFIG_SRCDIR([src/setup.h]) + AC_CONFIG_HEADERS(include/config.h) ++AC_CONFIG_MACRO_DIRS([m4]) + + dnl + dnl Define the utils directory +@@ -44,7 +45,6 @@ dnl + dnl Program support + dnl + AC_PATH_PROG( PERL, perl, false ) +-AC_PROG_SHELL + AC_PROG_MAKE_SET + AC_PROG_INSTALL + case "$host_os" in Property changes on: head/benchmarks/siege/files/patch-configure.ac ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/siege/files/patch-src-sock.c =================================================================== --- head/benchmarks/siege/files/patch-src-sock.c (revision 388522) +++ head/benchmarks/siege/files/patch-src-sock.c (revision 388523) @@ -1,20 +1,20 @@ ---- src/sock.c.orig 2010-05-17 15:57:59.000000000 +0200 -+++ src/sock.c 2012-05-25 15:55:21.743780806 +0200 -@@ -126,7 +126,7 @@ +--- src/sock.c.orig 2015-06-03 19:01:21 UTC ++++ src/sock.c +@@ -148,7 +148,7 @@ new_socket(CONN *C, const char *hostpara hp = NULL; } } -#elif defined(sun) +#elif defined(sun) || defined(__FreeBSD__) # ifdef HAVE_GETIPNODEBYNAME hp = getipnodebyname(hn, AF_INET, 0, &herrno); # else /* default use gethostbyname_r*/ -@@ -154,7 +154,7 @@ - if(hp == NULL){ return -1; } +@@ -190,7 +190,7 @@ new_socket(CONN *C, const char *hostpara + memset((void*) &cli, 0, sizeof(cli)); memcpy(&cli.sin_addr, hp->h_addr, hp->h_length); -#if defined(sun) +#if defined(sun) || defined(__FreeBSD__) # ifdef HAVE_FREEHOSTENT freehostent(hp); # endif/*HAVE_FREEHOSTENT*/