ports/110631: [patch] ports/security/libgpg-error WITHOUT_NLS broken

Helge Oldach ports-libgpg-error-mar07 at oldach.net
Wed Mar 21 17:20:11 UTC 2007


>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 at 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:



More information about the freebsd-ports-bugs mailing list