diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-06 10:22:41 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-06 10:22:41 +0000 |
commit | 062ed8d36fcff34f0d3051dd7687377d27558a32 (patch) | |
tree | 35173dab2afafdac2c12b688bfc1f1397a7b8cfb /net/net6 | |
parent | 00787ee8ab577b8449043d2c735d6136daf31f74 (diff) | |
download | ports-062ed8d36fcff34f0d3051dd7687377d27558a32.tar.gz ports-062ed8d36fcff34f0d3051dd7687377d27558a32.zip |
Notes
Diffstat (limited to 'net/net6')
-rw-r--r-- | net/net6/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/net6/Makefile b/net/net6/Makefile index f4010d49aee6..ed8141b54b65 100644 --- a/net/net6/Makefile +++ b/net/net6/Makefile @@ -20,14 +20,16 @@ USE_AUTOTOOLS= libtool MAKE_JOBS_SAFE= yes USE_LDCONFIG= yes -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.else +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " .endif .include <bsd.port.mk> |