Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 May 2022 09:12:04 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: ebce5896d401 - main - devel/gettext-tools: don't disable openmp
Message-ID:  <202205190912.24J9C4Yg035341@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ebce5896d4015c4700d62f1d028499d70c30f2f7

commit ebce5896d4015c4700d62f1d028499d70c30f2f7
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-05-19 09:07:43 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-05-19 09:07:43 +0000

    devel/gettext-tools: don't disable openmp
    
    OpenMP is gettext was disabled 15 years ago in bfe8a9ab273f573d122fd3ae04fdd85d73d0b6e2
    
    Building with OpenMP left for autodetection works on both powerpc (which
    doesn't have libomp) and on powerpc64 (which does have libomp), so it's ok to
    remove disabling it.
    
    PR:     263634
    Approved by:    antoine
---
 devel/gettext-tools/Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/devel/gettext-tools/Makefile b/devel/gettext-tools/Makefile
index ad69489bc4a8..5bb3c5182ea1 100644
--- a/devel/gettext-tools/Makefile
+++ b/devel/gettext-tools/Makefile
@@ -3,7 +3,7 @@
 # discretion.
 
 PORTNAME=	gettext-tools
-PORTREVISION=	0
+PORTREVISION=	1
 
 COMMENT=	GNU gettext development and translation tools
 
@@ -22,10 +22,10 @@ CPE_PRODUCT=	gettext
 CPE_VENDOR=	gnu
 
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--disable-csharp --disable-java --disable-openmp \
-		--with-included-glib --with-included-libcroco \
-		--with-included-libunistring --with-included-libxml \
-		--without-emacs --without-git ac_cv_lib_rt_sched_yield=no
+CONFIGURE_ARGS=	--disable-csharp --disable-java --with-included-glib \
+		--with-included-libcroco --with-included-libunistring \
+		--with-included-libxml --without-emacs --without-git \
+		ac_cv_lib_rt_sched_yield=no
 INSTALL_TARGET=	install-strip
 TEST_TARGET=	check
 WRKSRC_SUBDIR=	gettext-tools



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205190912.24J9C4Yg035341>