diff options
author | nbm <nbm@FreeBSD.org> | 2000-11-03 23:42:36 +0000 |
---|---|---|
committer | nbm <nbm@FreeBSD.org> | 2000-11-03 23:42:36 +0000 |
commit | 34fb5dfe50f1c430ea9d0869c9869964c7d11bb2 (patch) | |
tree | 6e9ae5ff8ae0c74733235d3ac943d758bf23a730 /mail/sqwebmail | |
parent | 36441038a1a8a2f91050d55c1c50ba25f2c62ecd (diff) | |
download | FreeBSD-ports-34fb5dfe50f1c430ea9d0869c9869964c7d11bb2.zip FreeBSD-ports-34fb5dfe50f1c430ea9d0869c9869964c7d11bb2.tar.gz |
Allow package to build by disabling the check for mime.types file - port
users are directed in the Makefile to use WITH_MIMETYPES to let the
configure script try to find a mime.types file somewhere.
Since the package never built and this doesn't affect people who've
installed from ports, no PORTREVISION bump.
Diffstat (limited to 'mail/sqwebmail')
-rw-r--r-- | mail/sqwebmail/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/sqwebmail/Makefile b/mail/sqwebmail/Makefile index 0eaa7bc..e4020e0 100644 --- a/mail/sqwebmail/Makefile +++ b/mail/sqwebmail/Makefile @@ -38,7 +38,7 @@ IMAGEURL?= ${WEBDATASUBDIR} # set WITH_LDAP for LDAP authentication and addressbook support # set WITH_VCHKPW for vpopmail authentication # set WITH_ISPELL to provide spell-checking -# set WITH_FCGI to enable fastcgi support +# set WITH_MIMETYPES to enable the search for a mime.types file # set VCHKPW to the home of the vpopmail user, if necessary # @@ -91,6 +91,10 @@ CONFIGURE_ARGS+= --with-ispell=${LOCALBASE}/bin/ispell CONFIGURE_ARGS+= --without-ispell .endif +.if !defined(WITH_MIMETYPES) +CONFIGURE_ARGS+= --disable-mimetypes +.endif + MANPREFIX= ${PREFIX}/share/sqwebmail MAN1= maildirmake.1 MAN8= makeuserdb.8 userdb.8 userdbpw.8 authlib.8 |