diff options
author | rillig <rillig> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 23:55:01 +0000 |
commit | 3dae8fea14cb07876cbc876f030a3b37361f56b8 (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /chat/unrealircd | |
parent | b235a79d8801c0bedb11aebddf494c6cd5c60968 (diff) | |
download | pkgsrc-3dae8fea14cb07876cbc876f030a3b37361f56b8.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'chat/unrealircd')
-rw-r--r-- | chat/unrealircd/Makefile | 16 | ||||
-rw-r--r-- | chat/unrealircd/options.mk | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/chat/unrealircd/Makefile b/chat/unrealircd/Makefile index 5334bde0697..024f601f4e8 100644 --- a/chat/unrealircd/Makefile +++ b/chat/unrealircd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/12/01 18:09:37 adrianp Exp $ +# $NetBSD: Makefile,v 1.5 2005/12/05 23:55:03 rillig Exp $ DISTNAME= Unreal3.2.3 PKGNAME= unrealircd-3.2.3 @@ -25,17 +25,17 @@ BUILDLINK_DEPENDS.tre+= tre-${TRE_NEEDED} CONFIGURE_ENV+= tre_version=${TRE_NEEDED:Q} CONFIGURE_ENV+= TRELIBS="-L${PREFIX}/lib -ltre" -CONFIGURE_ARGS+= --with-dpath=${UIRCD_HOME} +CONFIGURE_ARGS+= --with-dpath=${UIRCD_HOME:Q} CONFIGURE_ARGS+= --with-spath=${PREFIX}/sbin/ircd CONFIGURE_ARGS+= --with-permissions=0660 CONFIGURE_ARGS+= --enable-dynamic-linking -CONFIGURE_ARGS+= --with-hostname=${UIRCD_HOST} -CONFIGURE_ARGS+= --with-listen=${UIRCD_LISTEN} -CONFIGURE_ARGS+= --with-sendq=${UIRCD_SENDQ} -CONFIGURE_ARGS+= --with-bufferpool=${UIRCD_BUFFER} -CONFIGURE_ARGS+= --with-fd-setsize=${UIRCD_FDSIZE} -CONFIGURE_ARGS+= --with-nick-history=${UIRCD_NICKHIST} +CONFIGURE_ARGS+= --with-hostname=${UIRCD_HOST:Q} +CONFIGURE_ARGS+= --with-listen=${UIRCD_LISTEN:Q} +CONFIGURE_ARGS+= --with-sendq=${UIRCD_SENDQ:Q} +CONFIGURE_ARGS+= --with-bufferpool=${UIRCD_BUFFER:Q} +CONFIGURE_ARGS+= --with-fd-setsize=${UIRCD_FDSIZE:Q} +CONFIGURE_ARGS+= --with-nick-history=${UIRCD_NICKHIST:Q} CONFIGURE_ARGS+= --disable-inet6 .include "options.mk" diff --git a/chat/unrealircd/options.mk b/chat/unrealircd/options.mk index 4d4f63c3995..6a660d4dfee 100644 --- a/chat/unrealircd/options.mk +++ b/chat/unrealircd/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2005/12/03 04:00:18 adrianp Exp $ +# $NetBSD: options.mk,v 1.7 2005/12/05 23:55:03 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.unrealircd @@ -30,7 +30,7 @@ CONFIGURE_ENV+= ac_cv_ip6=no ### .if !empty(PKG_OPTIONS:Mssl) . include "../../security/openssl/buildlink3.mk" -CONFIGURE_ARGS+= --enable-ssl=${SSLBASE} +CONFIGURE_ARGS+= --enable-ssl=${SSLBASE:Q} .endif ### @@ -62,7 +62,7 @@ CONFIGURE_ARGS+= --enable-ziplinks ### Compile in support for remote include files. ### .if !empty(PKG_OPTIONS:Munrealircd-remoteinc) -CONFIGURE_ARGS+= --enable-libcurl=${PREFIX} +CONFIGURE_ARGS+= --enable-libcurl=${PREFIX:Q} . include "../../www/curl/buildlink3.mk" . include "../../net/libcares/buildlink3.mk" .endif |