View | Details | Raw Unified | Return to bug 204054 | Differences between
and this patch

Collapse All | Expand All

(-)www/libevhtp/Makefile (-6 / +8 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	libevhtp
3
PORTNAME=	libevhtp
4
PORTVERSION=	1.2.9
4
PORTVERSION=	1.2.10
5
PORTREVISION=	3
6
CATEGORIES=	www
5
CATEGORIES=	www
7
6
8
MAINTAINER=	ultima1252@gmail.com
7
MAINTAINER=	ultima1252@gmail.com
Lines 15-21 Link Here
15
14
16
USE_GITHUB=	yes
15
USE_GITHUB=	yes
17
GH_ACCOUNT=	ellzey
16
GH_ACCOUNT=	ellzey
18
GH_TAGNAME=	3886506
17
GH_TAGNAME=	ba4c44e
19
18
20
USES=		cmake:outsource
19
USES=		cmake:outsource
21
USE_LDCONFIG=	YES
20
USE_LDCONFIG=	YES
Lines 46-60 Link Here
46
45
47
.include <bsd.port.options.mk>
46
.include <bsd.port.options.mk>
48
47
49
PLIST_FILES=	include/evhtp.h\
48
PLIST_FILES=	include/evhtp.h \
50
		include/evhtp-config.h \
49
		include/evhtp-config.h \
51
		include/evthr.h \
52
		include/htparse.h
50
		include/htparse.h
53
51
54
.if !exists(${LOCALBASE}/include/onigposix.h)
52
.if !exists(${LOCALBASE}/include/onigposix.h) && !${PORT_OPTIONS:MEVHTP_DISABLE_REGEX}
55
PLIST_FILES+=	include/onigposix.h
53
PLIST_FILES+=	include/onigposix.h
56
.endif
54
.endif
57
55
56
.if !${PORT_OPTIONS:MEVHTP_DISABLE_EVTHR}
57
PLIST_FILES+=	include/evthr.h
58
.endif
59
58
.if ${PORT_OPTIONS:MEVHTP_BUILD_SHARED}
60
.if ${PORT_OPTIONS:MEVHTP_BUILD_SHARED}
59
PLIST_FILES+=	lib/libevhtp.so
61
PLIST_FILES+=	lib/libevhtp.so
60
.else
62
.else
(-)www/libevhtp/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ellzey-libevhtp-1.2.9-3886506_GH0.tar.gz) = b012587dfbf3e12fb2939d4f4856f966513c754bd6f0accffff8d8edef3b629d
1
SHA256 (ellzey-libevhtp-1.2.10-ba4c44e_GH0.tar.gz) = d5b022e2a3847ed7344bc7bca7ac7feb6b4a7e877d12452a15a96ba1c760d25a
2
SIZE (ellzey-libevhtp-1.2.9-3886506_GH0.tar.gz) = 360681
2
SIZE (ellzey-libevhtp-1.2.10-ba4c44e_GH0.tar.gz) = 373482
(-)www/libevhtp/files/patch-evhtp.c (-3 / +3 lines)
Lines 1-5 Link Here
1
--- evhtp.c.orig	2014-03-23 11:50:50.000000000 +0000
1
--- evhtp.c.orig	2015-02-24 07:55:55 UTC
2
+++ evhtp.c	2014-09-13 12:37:11.000000000 +0000
2
+++ evhtp.c
3
@@ -7,6 +7,7 @@
3
@@ -7,6 +7,7 @@
4
 #include <strings.h>
4
 #include <strings.h>
5
 #include <inttypes.h>
5
 #include <inttypes.h>
Lines 8-14 Link Here
8
 #include <sys/socket.h>
8
 #include <sys/socket.h>
9
 #include <netinet/in.h>
9
 #include <netinet/in.h>
10
 #include <netinet/tcp.h>
10
 #include <netinet/tcp.h>
11
@@ -2740,7 +2741,14 @@
11
@@ -3170,7 +3171,14 @@ evhtp_bind_sockaddr(evhtp_t * htp, struc
12
 
12
 
13
         sock = evconnlistener_get_fd(htp->server);
13
         sock = evconnlistener_get_fd(htp->server);
14
 
14
 
(-)www/libevhtp/files/patch-evhtp.h (+11 lines)
Line 0 Link Here
1
--- evhtp.h.orig	2015-10-29 19:51:50 UTC
2
+++ evhtp.h
3
@@ -1285,7 +1285,7 @@ EVHTP_EXPORT evhtp_connection_t *
4
 evhtp_connection_new(evbase_t * evbase, const char * addr, uint16_t port);
5
 
6
 #ifndef DISABLE_SSL
7
-evhtp_connection_t * evhtp_connection_ssl_new(evbase_t * evbase, const char * addr, uint16_t port, evhtp_ssl_ctx_t * ctx);
8
+EVHTP_EXPORT evhtp_connection_t * evhtp_connection_ssl_new(evbase_t * evbase, const char * addr, uint16_t port, evhtp_ssl_ctx_t * ctx);
9
 #endif
10
 
11
 

Return to bug 204054