diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-05-06 10:53:58 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-05-06 10:53:58 +0000 |
commit | 43be2336bdf0e262425802068b294f4b843d7db4 (patch) | |
tree | e4589090adb5814eae0a136f1400a686b7bf389d /mail | |
parent | Add p5-SQL-Translator 0.05, manipulate structured data definitions (SQL (diff) |
don't depend on perl when build WITHOUT_PERL.
Note that without perl the following utilities
won't work, even though they are installed:
exigrep eximstats exipick exiqgrep exiqsumm
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index ea3a054e78fc..bb0ebb2e1000 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -49,9 +49,12 @@ USE_XLIB= yes USE_BZIP2= yes USE_ICONV= yes -USE_PERL5= yes USE_REINPLACE= yes +.if !defined(WITHOUT_PERL) +USE_PERL5= yes +.endif + .if !defined(EXIMON_ONLY) MAN8= exim.8 .else |