diff options
author | timur <timur@FreeBSD.org> | 2009-02-20 22:47:24 +0800 |
---|---|---|
committer | timur <timur@FreeBSD.org> | 2009-02-20 22:47:24 +0800 |
commit | 76d4f210e6bed22f0cbb2e0e437d0fd5769ab3e9 (patch) | |
tree | 25243b488a30373447770f55a223e8a07b46c183 /www | |
parent | 2f31a744cac94282a49bfc19025e4ed3a9cbd361 (diff) | |
download | freebsd-ports-gnome-76d4f210e6bed22f0cbb2e0e437d0fd5769ab3e9.tar.gz freebsd-ports-gnome-76d4f210e6bed22f0cbb2e0e437d0fd5769ab3e9.tar.zst freebsd-ports-gnome-76d4f210e6bed22f0cbb2e0e437d0fd5769ab3e9.zip |
Fixed the order of CONFIGURE_ARGS so, that disabling NLS actually work.
As it's not default setting no revision bump is required.
Diffstat (limited to 'www')
-rw-r--r-- | www/neon28/Makefile | 20 | ||||
-rw-r--r-- | www/neon29/Makefile | 20 |
2 files changed, 24 insertions, 16 deletions
diff --git a/www/neon28/Makefile b/www/neon28/Makefile index bd5132d87038..1bb0fb7c1067 100644 --- a/www/neon28/Makefile +++ b/www/neon28/Makefile @@ -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 \ diff --git a/www/neon29/Makefile b/www/neon29/Makefile index bd5132d87038..1bb0fb7c1067 100644 --- a/www/neon29/Makefile +++ b/www/neon29/Makefile @@ -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 \ |