1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Fixed the order of CONFIGURE_ARGS so, that disabling NLS actually work.

As it's not default setting no revision bump is required.
This commit is contained in:
Timur I. Bakeyev 2009-02-20 14:47:24 +00:00
parent f63ffb2887
commit b9f49abb5c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228707
2 changed files with 24 additions and 16 deletions

View File

@ -22,14 +22,6 @@ CONFLICTS= neon26-[0-9]*
USE_AUTOTOOLS= libtool:15
USE_LDCONFIG= yes
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.ifndef WITHOUT_OPENSSL
USE_OPENSSL= yes
.endif
@ -42,6 +34,18 @@ CONFIGURE_ARGS= --with-ssl \
--with-expat \
--with-libs=${LOCALBASE}:${PREFIX}
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.if defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+=--without-gssapi
.endif
MAN1= neon-config.1
MAN3= ne_add_request_header.3 ne_addr_resolve.3 ne_buffer.3 \
ne_buffer_append.3 ne_buffer_clear.3 ne_buffer_create.3 \

View File

@ -22,14 +22,6 @@ CONFLICTS= neon26-[0-9]*
USE_AUTOTOOLS= libtool:15
USE_LDCONFIG= yes
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.ifndef WITHOUT_OPENSSL
USE_OPENSSL= yes
.endif
@ -42,6 +34,18 @@ CONFIGURE_ARGS= --with-ssl \
--with-expat \
--with-libs=${LOCALBASE}:${PREFIX}
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.if defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+=--without-gssapi
.endif
MAN1= neon-config.1
MAN3= ne_add_request_header.3 ne_addr_resolve.3 ne_buffer.3 \
ne_buffer_append.3 ne_buffer_clear.3 ne_buffer_create.3 \