Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Mar 2007 18:19:40 +0100 (CET)
From:      Helge Oldach <ports-libgpg-error-mar07@oldach.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        novel@FreeBSD.org
Subject:   ports/110631: [patch] ports/security/libgpg-error WITHOUT_NLS broken
Message-ID:  <200703211719.l2LHJefa005720@sep.oldach.net>
Resent-Message-ID: <200703211720.l2LHKBPE039509@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         110631
>Category:       ports
>Synopsis:       [patch] ports/security/libgpg-error WITHOUT_NLS broken
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 21 17:20:10 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Helge Oldach
>Release:        FreeBSD 6.2-757 i386
>Organization:
>Environment:

System: FreeBSD localhost 6.2-757 FreeBSD 6.2-757 #0: Thu Mar 15 20:35:30 CET 2007 toor@localhost:/usr/obj/usr/src/sys/HMO i386

>Description:

The WITHOUT_NLS knob for ports/security/libgpg-error is broken. Simply
put, configure should use --disable-nls, not --without-nls. The latter
has the effect that an existing libintl would actually be detected and
used by configure, which is not the intended behaviour.

Trivial fix below.

>How-To-Repeat:

>Fix:

--- Makefile.ctm	Fri Mar  9 09:06:11 2007
+++ Makefile	Wed Mar 21 18:05:48 2007
@@ -22,7 +22,7 @@
 CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
 
 .if defined(WITHOUT_NLS)
-CONFIGURE_ARGS=	--without-nls
+CONFIGURE_ARGS=	--disable-nls
 PLIST_SUB=	NLS="@comment "
 .else
 USE_ICONV=	yes

>Release-Note:
>Audit-Trail:
>Unformatted:



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