From 6c4a1e0b72ff2a70392366feb77737fd22eea19a Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 11 Mar 2012 09:39:19 +0000 Subject: [PATCH] adding Mac ports location of tnef --- setup/check_install.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup/check_install.php b/setup/check_install.php index 1b881c4203..1a1b5d0a84 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -691,6 +691,12 @@ function tnef_check($name,$args) $available = true; $tnef[] = '/usr/bin/tnef'; } + // Mac ports location + elseif (file_exists('/opt/local/bin/tnef')) + { + $available = true; + $tnef[] = '/opt/local/bin/tnef'; + } elseif (exec("which tnef", $tnef)) { $available = true;