diff options
author | garga <garga@FreeBSD.org> | 2005-07-29 22:52:26 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-07-29 22:52:26 +0800 |
commit | 2417888c9d8e6d11a235f5006595c56c394ef32e (patch) | |
tree | 0cf5cc330bc932d5e0237c83bfb18badaf2569a1 /net-im | |
parent | bfe2bb7cfb13c73f949a3eda8cd356ab06407a77 (diff) | |
download | freebsd-ports-gnome-2417888c9d8e6d11a235f5006595c56c394ef32e.tar.gz freebsd-ports-gnome-2417888c9d8e6d11a235f5006595c56c394ef32e.tar.zst freebsd-ports-gnome-2417888c9d8e6d11a235f5006595c56c394ef32e.zip |
- Add --enable-pipe option
PR: ports/84296
Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
Approved by: Kirk Strauser <kirk@strauser.com> (maintainer)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/jabberd/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net-im/jabberd/Makefile b/net-im/jabberd/Makefile index e1345bbfb0f9..d531494e8d8b 100644 --- a/net-im/jabberd/Makefile +++ b/net-im/jabberd/Makefile @@ -22,6 +22,7 @@ OPTIONS= POSTGRESQL "Use PostgreSQL for storage and authentication" off \ LDAP "Use LDAP for authentication" off \ BDB "Use BDB for storage and authentication" off \ PAM "Use PAM for authentication" off \ + PIPE "Enable pipe auth/reg support" off \ DEBUG "Compile with debug information" on GNU_CONFIGURE= yes @@ -78,6 +79,10 @@ CONFIGURE_ARGS+=--enable-pam CONFIGURE_ARGS+=--disable-pam .endif +.if defined(WITH_PIPE) +CONFIGURE_ARGS+=--enable-pipe +.endif + MAN8= c2s.8 jabberd.8 resolver.8 router.8 s2s.8 sm.8 pre-install: |