svn commit: r314723 - in head/net/httping: . files
Emanuel Haupt
ehaupt at FreeBSD.org
Wed Mar 20 11:08:12 UTC 2013
Author: ehaupt
Date: Wed Mar 20 11:08:11 2013
New Revision: 314723
URL: http://svnweb.freebsd.org/changeset/ports/314723
Log:
Update to 2.0
Added:
head/net/httping/files/patch-mssl.c (contents, props changed)
Modified:
head/net/httping/Makefile
head/net/httping/distinfo
head/net/httping/files/patch-Makefile
Modified: head/net/httping/Makefile
==============================================================================
--- head/net/httping/Makefile Wed Mar 20 09:40:32 2013 (r314722)
+++ head/net/httping/Makefile Wed Mar 20 11:08:11 2013 (r314723)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= httping
-PORTVERSION= 1.6
+PORTVERSION= 2.0
CATEGORIES= net
MASTER_SITES= http://www.vanheusden.com/httping/ \
CRITICAL
@@ -17,8 +17,6 @@ MAKE_JOBS_SAFE= yes
MAN1= httping.1
PLIST_FILES= bin/httping
-CFLAGS+= -D_GNU_SOURCE
-
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
Modified: head/net/httping/distinfo
==============================================================================
--- head/net/httping/distinfo Wed Mar 20 09:40:32 2013 (r314722)
+++ head/net/httping/distinfo Wed Mar 20 11:08:11 2013 (r314723)
@@ -1,2 +1,2 @@
-SHA256 (httping-1.6.tgz) = ac98e013a0b476804e2f6df8f8fb3d889646633d3b326d8355a5592d27477534
-SIZE (httping-1.6.tgz) = 18429
+SHA256 (httping-2.0.tgz) = 9fcb1fef706d12149ce88dec5a3e03888d1386a80017324104453130eaeffbe0
+SIZE (httping-2.0.tgz) = 22375
Modified: head/net/httping/files/patch-Makefile
==============================================================================
--- head/net/httping/files/patch-Makefile Wed Mar 20 09:40:32 2013 (r314722)
+++ head/net/httping/files/patch-Makefile Wed Mar 20 11:08:11 2013 (r314723)
@@ -1,15 +1,12 @@
---- ./Makefile.orig 2012-10-18 14:26:39.000000000 +0200
-+++ ./Makefile 2012-10-18 14:27:54.000000000 +0200
-@@ -16,13 +16,11 @@
+--- ./Makefile.orig 2013-03-19 20:10:16.000000000 +0100
++++ ./Makefile 2013-03-20 11:56:23.000000000 +0100
+@@ -18,12 +18,11 @@
- TARGET=httping
-
--DEBUG=yes
--WFLAGS=-Wall -W
+ DEBUG=yes
+ WFLAGS=-Wall -W
-OFLAGS=-O3
--CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\"
-+DEBUG=no
-+CFLAGS+=-DVERSION=\"$(VERSION)\"
+ CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\"
+ LDFLAGS=-lm
PACKAGE=$(TARGET)-$(VERSION)
-PREFIX=/usr
@@ -17,3 +14,15 @@
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man
DOCDIR=$(PREFIX)/share/doc/$(TARGET)
+@@ -59,11 +58,6 @@
+ CFLAGS+=-DTCP_TFO
+ endif
+
+-ifeq ($(DEBUG),yes)
+-CFLAGS+=-D_DEBUG -ggdb
+-LDFLAGS+=-g
+-endif
+-
+ ifeq ($(ARM),yes)
+ CC=arm-linux-gcc
+ endif
Added: head/net/httping/files/patch-mssl.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/httping/files/patch-mssl.c Wed Mar 20 11:08:11 2013 (r314723)
@@ -0,0 +1,13 @@
+--- ./mssl.c.orig 2013-03-19 20:10:16.000000000 +0100
++++ ./mssl.c 2013-03-20 11:55:44.000000000 +0100
+@@ -165,8 +165,10 @@
+
+ SSL_CTX *ctx = SSL_CTX_new(meth);
+
++#ifdef SSL_OP_NO_COMPRESSION
+ if (!ask_compression)
+ SSL_CTX_set_options(ctx, SSL_OP_NO_COMPRESSION);
++#endif
+
+ return ctx;
+ }
More information about the svn-ports-head
mailing list