diff options
author | nia <nia@pkgsrc.org> | 2020-10-21 19:39:53 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2020-10-21 19:39:53 +0000 |
commit | 31ca30cb90a0c59fd7c7d8ea534c61c4ca86678a (patch) | |
tree | ad03a6ee5266933018c32c35d6296bd7e2265c0c /textproc/icu/Makefile | |
parent | 5cc341618d9a4a00bd9c2904762af2e32c7bc5c5 (diff) | |
download | pkgsrc-31ca30cb90a0c59fd7c7d8ea534c61c4ca86678a.tar.gz |
icu: bump gcc requirement to gcc 4.9
to resolve an error observed in centos 7 builds
http://lists.busybox.net/pipermail/buildroot/2020-June/284800.html
Diffstat (limited to 'textproc/icu/Makefile')
-rw-r--r-- | textproc/icu/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index 16930c6da21..77f1d0a7a4d 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.133 2020/06/02 08:34:35 adam Exp $ +# $NetBSD: Makefile,v 1.134 2020/10/21 19:39:53 nia Exp $ DISTNAME= icu4c-67_1-src PKGNAME= ${DISTNAME:S/4c//:S/-src//:S/_/./g} @@ -16,13 +16,15 @@ LICENSE= mit WRKSRC= ${WRKDIR}/icu/source USE_LANGUAGES= c99 c++ USE_TOOLS+= gmake pkg-config -GCC_REQD+= 4.8 TEST_TARGET= check UNLIMIT_RESOURCES+= datasize GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-static CONFIGURE_ENV+= U_MAKE=${TOOLS_GMAKE} +# error: 'max_align_t' in namespace 'std' does not name a type +GCC_REQD+= 4.9 + CHECK_SSP_SKIP= lib/libicudata.so* PYTHON_FOR_BUILD_ONLY= tool |