diff options
author | pat <pat@FreeBSD.org> | 2002-05-22 23:03:20 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-05-22 23:03:20 +0000 |
commit | 43ab198355061e963327b40dbda3cbfbad4b4404 (patch) | |
tree | 332ed2ca53caee7df4370a26a43ba017b5ebe357 /security | |
parent | ddb7d032774689a49578b70086c1227ef03b09f0 (diff) | |
download | FreeBSD-ports-43ab198355061e963327b40dbda3cbfbad4b4404.zip FreeBSD-ports-43ab198355061e963327b40dbda3cbfbad4b4404.tar.gz |
Add check weather sendmail was installed from ports
PR: 38235
Submitted by: maintainer
Diffstat (limited to 'security')
-rw-r--r-- | security/drweb-sendmail/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/drweb-sendmail/Makefile b/security/drweb-sendmail/Makefile index dda5481..3ffdc65 100644 --- a/security/drweb-sendmail/Makefile +++ b/security/drweb-sendmail/Makefile @@ -21,8 +21,8 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/opt/drweb/clients/sources/drwebdc INST_PREFIX= ${PREFIX}/${PORTNAME} DOC_DIR= ${PREFIX}/share/doc/drweb-sendmail -.if !exists( /usr/include/libmilter/mfapi.h ) -IGNORE= "requires libmilter installed in the base system, upgrade your FreeBSD" +.if !exists( /usr/include/libmilter/mfapi.h ) || !exists( ${LOCALBASE}/include/libmilter/mfapi.h ) +IGNORE= "requires libmilter installed. Upgrade your FreeBSD system or sendmail package/port" .endif .if !defined(WITH_DRWEBSMF_HOSTNAME) |