aboutsummaryrefslogtreecommitdiffstats
path: root/devel/gettext
diff options
context:
space:
mode:
authorade <ade@FreeBSD.org>2007-04-08 13:53:10 +0800
committerade <ade@FreeBSD.org>2007-04-08 13:53:10 +0800
commit9d8c5709bb9285eea465d91d4a824d627cf20c40 (patch)
tree61b33c83412f0343249f55095adb0df7d33c81ce /devel/gettext
parentd86ae137a1503d4a374c426a85d97e066a6290bc (diff)
downloadfreebsd-ports-gnome-9d8c5709bb9285eea465d91d4a824d627cf20c40.tar.gz
freebsd-ports-gnome-9d8c5709bb9285eea465d91d4a824d627cf20c40.tar.zst
freebsd-ports-gnome-9d8c5709bb9285eea465d91d4a824d627cf20c40.zip
Unconditionally disable threading, it is apparently causing some
edge cases to fail, and the previous version of gettext was unthreaded, so we're not losing anything. Note that if you've already rebuilt gettext to 0.16.1, you only need to upgrade gettext, and not everything that depends on it. Thanks to those that reported the issue, and both gnome@ and kde@ for confirming that this change does not cause any issues there.
Diffstat (limited to 'devel/gettext')
-rw-r--r--devel/gettext/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/gettext/Makefile b/devel/gettext/Makefile
index 3941089ff7b1..8a5c6c9a5e2c 100644
--- a/devel/gettext/Makefile
+++ b/devel/gettext/Makefile
@@ -7,6 +7,7 @@
PORTNAME= gettext
PORTVERSION= 0.16.1
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= gettext
@@ -27,8 +28,8 @@ CONFIGURE_ENV= ACLOCAL="${TRUE}" \
CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
EMACS="no"
-CONFIGURE_ARGS= --disable-csharp --mandir=${PREFIX}/man \
- --infodir=${PREFIX}/info
+CONFIGURE_ARGS= --disable-csharp --disable-threads \
+ --mandir=${PREFIX}/man --infodir=${PREFIX}/info
USE_LDCONFIG= yes
PLIST_SUB= VERSION=${PORTVERSION}