From 448acc2a514d5f809ef10bef48c57f75b6f4bfb7 Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 18 Feb 2004 16:02:09 +0000 Subject: [PATCH] Default to just using "mimetex" binary. This makes it easier to drop in unusual binaries and have them work --- filter/tex/pix.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/filter/tex/pix.php b/filter/tex/pix.php index e85892501e..be1abc2f81 100644 --- a/filter/tex/pix.php +++ b/filter/tex/pix.php @@ -59,6 +59,9 @@ case "Darwin": system("$CFG->dirroot/$CFG->texfilterdir/mimetex.darwin -e $pathname ". escapeshellarg($texexp) ); break; + default: + system("$CFG->dirroot/$CFG->texfilterdir/mimetex -e $pathname ". escapeshellarg($texexp) ); + break; } } } -- 2.39.5