diff options
author | mikeh <mikeh@FreeBSD.org> | 2003-06-11 11:02:33 +0800 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2003-06-11 11:02:33 +0800 |
commit | 916b3927f21fccb44554532d55ed2cb3a48d0d81 (patch) | |
tree | a0e12e17f0a775ad2098358349069339f4406a48 /mail | |
parent | d04b14568c4ac195fc78061150fc17d4b1831a3b (diff) | |
download | freebsd-ports-graphics-916b3927f21fccb44554532d55ed2cb3a48d0d81.tar.gz freebsd-ports-graphics-916b3927f21fccb44554532d55ed2cb3a48d0d81.tar.zst freebsd-ports-graphics-916b3927f21fccb44554532d55ed2cb3a48d0d81.zip |
Add knobs for building with LDAP and NAS support.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/xfmail/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mail/xfmail/Makefile b/mail/xfmail/Makefile index b100cfb079f..42925080a28 100644 --- a/mail/xfmail/Makefile +++ b/mail/xfmail/Makefile @@ -48,11 +48,21 @@ USE_GNOME+= esound CONFIGURE_ARGS+= --with-esd-sound .endif +.if defined(WITH_NAS) +LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas +CONFIGURE_ARGS+= --with-nas-sound +.endif + .if defined(WITH_FACES) LIB_DEPENDS+= compface:${PORTSDIR}/mail/faces CONFIGURE_ARGS+= --with-faces .endif +.if defined(WITH_LDAP) +LIB_DEPENDS+= ldap.1:${PORTSDIR}/net/openldap12 +CONFIGURE_ARGS+= --with-ldap +.endif + MAN1= xfmail.1 pre-everything:: @@ -60,9 +70,15 @@ pre-everything:: .ifndef(WITH_ESOUND) @echo "To build with esound support, restart make and define WITH_ESOUND" .endif +.ifndef(WITH_NAS) + @echo "To build with Network Audio System support, restart make and define WITH_NAS" +.endif .ifndef(WITH_FACES) @echo "To build with faces support, restart make and define WITH_FACES" .endif +.ifndef(WITH_LDAP) + @echo "To build with LDAP support, restart make and define WITH_LDAP" +.endif @echo pre-configure: |