diff options
author | tv <tv@pkgsrc.org> | 2005-11-03 16:59:47 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-03 16:59:47 +0000 |
commit | 0d9f8447a97182d1c0f6b19062664b5169a2e112 (patch) | |
tree | b80ed8080146c40fcdfae9e4989e4d0f758c4b8d /net | |
parent | c79ea8f9ba91659c09b19fc44a58872c09aa5121 (diff) | |
download | pkgsrc-0d9f8447a97182d1c0f6b19062664b5169a2e112.tar.gz |
Don't enable privsep on Interix, which has no SCM_RIGHTS support.
Diffstat (limited to 'net')
-rw-r--r-- | net/pure-ftpd/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/pure-ftpd/Makefile b/net/pure-ftpd/Makefile index 2bc7d578d8a..043e92eb01b 100644 --- a/net/pure-ftpd/Makefile +++ b/net/pure-ftpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/04/11 21:46:58 tv Exp $ +# $NetBSD: Makefile,v 1.13 2005/11/03 16:59:47 tv Exp $ DISTNAME= pure-ftpd-1.0.20 PKGREVISION= 1 @@ -20,10 +20,14 @@ USE_PKGINSTALL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-everything \ - --with-privsep \ --sysconfdir=${PKG_SYSCONFDIR} .include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} != "Interix" +CONFIGURE_ARGS+= --with-privsep +.endif + .include "options.mk" RCD_SCRIPTS= pure_ftpd |