From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/4705 Path: main.gmane.org!not-for-mail From: Xander Schrijen Newsgroups: gmane.comp.tex.context Subject: ConTeXt on Mac OS X Date: Sun, 20 May 2001 16:21:18 +0200 Sender: owner-ntg-context@let.uu.nl Message-ID: <200105201421.f4KELAI07232@spider.let.uu.nl> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (Apple Message framework v388) Content-Type: text/plain; format=flowed; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035395349 28024 80.91.224.250 (23 Oct 2002 17:49:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 17:49:09 +0000 (UTC) Original-To: ConTeXt mailing list Xref: main.gmane.org gmane.comp.tex.context:4705 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:4705 Hi, I tried to get ConTeXt working on Mac OS X and ran into some trouble with the way the texexec script tests on which OS its running. OS X's 'unix name' is "darwin", which matches "win", so there you go. I've fixed it with the patch at the end of this message, but perhaps someone can come up with a more elegant one. It _does_ work now: http://www.phil.uu.nl/~xges/context.png Xander. -------------- Patch for texexec ------------------- 48c48,49 < my $dosish = ($Config{'osname'} =~ /dos|win/i) ; --- > my $dosish = ($Config{'osname'} =~ /dos|win/i) - > ($Config{'osname'} == 'darwin') ;