View | Details | Raw Unified | Return to bug 153648
Collapse All | Expand All

(-)net/xmlrpc-c-devel/Makefile (-1 / +15 lines)
Lines 17-23 COMMENT= XML-RPC library for C and C++ Link Here
17
17
18
OPTIONS=	DEBUG "Compile with debugging information" off \
18
OPTIONS=	DEBUG "Compile with debugging information" off \
19
		CURL "Compile with curl support" on \
19
		CURL "Compile with curl support" on \
20
		LIBWWW "Compile with libwww support" on
20
		LIBWWW "Compile with libwww support" on \
21
		TOOLS "Compile tools" on
21
22
22
CONFLICTS=	xmlrpc-epi-0.* xmlrpc-c-[0-9]*
23
CONFLICTS=	xmlrpc-epi-0.* xmlrpc-c-[0-9]*
23
24
Lines 33-38 MAKE_ARGS= LIBTOOL="${LIBTOOL}" \ Link Here
33
MAKE_JOBS_UNSAFE=	yes
34
MAKE_JOBS_UNSAFE=	yes
34
USE_LDCONFIG=	yes
35
USE_LDCONFIG=	yes
35
36
37
MAN1=		xml-rpc-api2txt.1 xml-rpc-api2cpp.1
38
36
LICENSE=	BSD
39
LICENSE=	BSD
37
40
38
.include <bsd.port.pre.mk>
41
.include <bsd.port.pre.mk>
Lines 55-61 CONFIGURE_ARGS+= --enable-libwww-client Link Here
55
CONFIGURE_ARGS+=	--disable-libwww-client
58
CONFIGURE_ARGS+=	--disable-libwww-client
56
.endif
59
.endif
57
60
61
.if defined(WITH_TOOLS)
62
CONFIGURE_ARGS+=	--enable-tools
63
PLIST_SUB+=	TOOLS=""
64
.else
65
CONFIGURE_ARGS+=	--disable-tools
66
PLIST_SUB+=	TOOLS="@comment "
67
.endif
68
58
.if defined(WITHOUT_LIBWWW) && defined(WITHOUT_CURL)
69
.if defined(WITHOUT_LIBWWW) && defined(WITHOUT_CURL)
70
. if defined(WITH_TOOLS)
71
IGNORE=		${PORTNAME} tools require either curl or libwww support
72
. endif
59
PLIST_SUB+=	CLIENT="@comment "
73
PLIST_SUB+=	CLIENT="@comment "
60
.else
74
.else
61
PLIST_SUB+=	CLIENT=""
75
PLIST_SUB+=	CLIENT=""
(-)net/xmlrpc-c-devel/pkg-plist (+6 lines)
Lines 1-4 Link Here
1
%%TOOLS%%bin/xml-rpc-api2cpp
2
%%TOOLS%%bin/xml-rpc-api2txt
3
%%TOOLS%%bin/xmlrpc
1
bin/xmlrpc-c-config
4
bin/xmlrpc-c-config
5
%%TOOLS%%bin/xmlrpc_cpp_proxy
6
%%TOOLS%%bin/xmlrpc_pstream
7
%%TOOLS%%bin/xmlrpc_transport
2
include/XmlRpcCpp.h
8
include/XmlRpcCpp.h
3
include/xmlrpc-c/abyss.h
9
include/xmlrpc-c/abyss.h
4
include/xmlrpc-c/abyss_unixsock.h
10
include/xmlrpc-c/abyss_unixsock.h
(-)net/xmlrpc-c-devel/files/patch-tools-xmlrpc_pstream-xmlrpc_pstream.cpp (+11 lines)
Added Link Here
1
--- tools/xmlrpc_pstream/xmlrpc_pstream.cpp~
2
+++ tools/xmlrpc_pstream/xmlrpc_pstream.cpp
3
@@ -15,8 +15,6 @@
4
 #include "xmlrpc-c/girerr.hpp"
5
 using girerr::throwf;
6
 
7
-#include <features.h>  // for __BEGIN_DECLS
8
-
9
 __BEGIN_DECLS
10
 #include "dumpvalue.h"  /* An internal Xmlrpc-c header file ! */
11
 __END_DECLS

Return to bug 153648