- Add --enable-pipe option
PR: ports/84296 Submitted by: Marcus Grando <marcus@corp.grupos.com.br> Approved by: Kirk Strauser <kirk@strauser.com> (maintainer)
This commit is contained in:
parent
43faaa2d5d
commit
83c9c612af
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140401
2 changed files with 10 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue