Date: Thu, 1 Aug 2019 21:24:41 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507832 - head/science/libkml Message-ID: <201908012124.x71LOfDM090331@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Thu Aug 1 21:24:41 2019 New Revision: 507832 URL: https://svnweb.freebsd.org/changeset/ports/507832 Log: science/libkml: fix build with GCC architectures Typedef redefinitions were introduced in C11. Approved by: mentors (implicit approval) Modified: head/science/libkml/Makefile Modified: head/science/libkml/Makefile ============================================================================== --- head/science/libkml/Makefile Thu Aug 1 21:05:34 2019 (r507831) +++ head/science/libkml/Makefile Thu Aug 1 21:24:41 2019 (r507832) @@ -12,8 +12,6 @@ COMMENT= Reference implementation of OGC KML 2.2 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= fails to compile: iomem_simple.h: redefinition of typedef 'open_file_func' - BUILD_DEPENDS= boost-libs>=1.44.0:devel/boost-libs \ googletest>=1.7.0:devel/googletest \ minizip>=1.2.8:archivers/minizip @@ -28,7 +26,7 @@ OPTIONS_DEFINE= EXAMPLES CMAKE_OFF= WITH_JAVA WITH_PYTHON WITH_SWIG USE_CXXSTD= gnu++98 USE_LDCONFIG= yes -USES= cmake pathfix +USES= cmake compiler:c11 pathfix USE_GITHUB= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908012124.x71LOfDM090331>