summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorrin <rin@pkgsrc.org>2021-07-07 05:57:30 +0000
committerrin <rin@pkgsrc.org>2021-07-07 05:57:30 +0000
commitaa3a979237f373558262e4898924190a84d97ffa (patch)
treee3984c1a05d1186aae801c7edac5976736afdec8 /devel
parent5c75e5e20c5c1278e5fe69ae2207745ec178ba19 (diff)
downloadpkgsrc-aa3a979237f373558262e4898924190a84d97ffa.tar.gz
devel/gettext-tools: Remove hack for GCC 9 and 10 on alpha. Revision++.
Root cause was in NetBSD and already fixed. See port-alpha/56153.
Diffstat (limited to 'devel')
-rw-r--r--devel/gettext-tools/Makefile4
-rw-r--r--devel/gettext-tools/hacks.mk17
2 files changed, 2 insertions, 19 deletions
diff --git a/devel/gettext-tools/Makefile b/devel/gettext-tools/Makefile
index 9a10a5797cf..0294a5b7c6f 100644
--- a/devel/gettext-tools/Makefile
+++ b/devel/gettext-tools/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.42 2021/05/07 13:01:58 rin Exp $
+# $NetBSD: Makefile,v 1.43 2021/07/07 05:57:30 rin Exp $
.include "../../devel/gettext/Makefile.common"
PKGNAME= ${DISTNAME:S/-/-tools-/}
COMMENT= Tools for providing messages in different languages
-PKGREVISION= 2
+PKGREVISION= 3
DISTINFO_FILE= ${.CURDIR}/../../devel/gettext/distinfo
PATCHDIR= ${.CURDIR}/../../devel/gettext/patches
diff --git a/devel/gettext-tools/hacks.mk b/devel/gettext-tools/hacks.mk
deleted file mode 100644
index f1227b02824..00000000000
--- a/devel/gettext-tools/hacks.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD: hacks.mk,v 1.1 2021/05/07 13:01:58 rin Exp $
-
-.if !defined(GETTEXT_TOOLS_HACKS_MK)
-GETTEXT_TOOLS_HACKS_MK= defined
-
-.include "../../mk/compiler.mk"
-
-# GCC 10 and 9 miscompile this for alpha, which results in SIGSEGV for
-# ``env LANG=en_US.UTF-8 /usr/pkg/bin/xgettext --version''.
-.if ${MACHINE_ARCH} == "alpha" && \
- (!empty(CC_VERSION:Mgcc-10.*) || !empty(CC_VERSION:Mgcc-9.*))
-PKG_HACKS+= optimisation
-CFLAGS+= -O0
-CXXFLAGS+= -O0
-.endif
-
-.endif