some existing COMPILER lines with arch restrictions etc. In the usual case this is now using "COMPILER = base-clang ports-gcc base-gcc" on ports with c++ libraries in WANTLIB. This is basically intended to be a noop on architectures using clang as the system compiler, but help with other architectures where we currently have many ports knocked out due to building with an unsuitable compiler - - some ports require c++11/newer so the GCC version in base that is used on these archirtectures is too old. - some ports have conflicts where an executable is built with one compiler (e.g. gcc from base) but a library dependency is built with a different one (e.g. gcc from ports), resulted in mixing incompatible libraries in the same address space. devel/gmp is intentionally skipped as it's on the path to building gcc - the c++ library there is unused in ports (and not built by default upstream) so intending to disable building gmpcxx in a future commit.
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.19 2018/10/24 14:28:09 sthen Exp $
|
|
|
|
# as error: ``operation combines symbols in different segments''
|
|
# (known toolchain problem)
|
|
NOT_FOR_ARCHS= m88k
|
|
|
|
COMMENT= XML-RPC C/C++ client-server implementation
|
|
CATEGORIES= net devel textproc
|
|
|
|
V= 1.39.12
|
|
DISTNAME= xmlrpc-c-${V}
|
|
FIX_EXTRACT_PERMISSIONS=Yes
|
|
REVISION= 0
|
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
.for i in xmlrpc_util xmlrpc_abyss xmlrpc_xmlparse xmlrpc_xmltok \
|
|
xmlrpc xmlrpc_server xmlrpc_server_abyss xmlrpc_client \
|
|
xmlrpc_server_cgi xmlrpc_util++ xmlrpc_abyss++ \
|
|
xmlrpc_xmlparse++ xmlrpc_xmltok++ xmlrpc++ xmlrpc_server++ \
|
|
xmlrpc_server_abyss++ xmlrpc_server_pstream++ xmlrpc_client++ \
|
|
xmlrpc_server_cgi++ xmlrpc_cpp xmlrpc_packetsocket
|
|
SHARED_LIBS += $i 2.0
|
|
.endfor
|
|
|
|
HOMEPAGE= http://xmlrpc-c.sourceforge.net/
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xmlrpc-c/}
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} crypto curl m nghttp2 ssl z
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
LIB_DEPENDS= net/curl
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
USE_GMAKE= Yes
|
|
|
|
MAKE_ENV= COPTS="${CFLAGS}" \
|
|
LIB_MAJ=${LIBxmlrpc_VERSION:R} \
|
|
LIB_MIN=${LIBxmlrpc_VERSION:E}
|
|
|
|
# we don't have libwww for now, this guards against picking it up
|
|
# if somebody ports it
|
|
CONFIGURE_ARGS+= --disable-libwww-client
|
|
|
|
# flavor ?
|
|
CONFIGURE_ARGS+= --disable-libxml2-backend
|
|
|
|
MAKE_FILE= GNUmakefile
|
|
|
|
# XXX known failure for "make test" fails if anything is bound to port 8080
|
|
|
|
.include <bsd.port.mk>
|