From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/19918 Path: news.gmane.org!not-for-mail From: Thomas A.Schmitz Newsgroups: gmane.comp.tex.context Subject: Re: new beta Date: Sat, 16 Apr 2005 08:40:09 +0200 Message-ID: <15399d44d5397c469514eb655e67cc87@uni-bonn.de> References: <425D820E.5080003@wxs.nl> <57fe161a238be08bb18f9dd620796f33@uni-bonn.de> <7a5840f3fbb26f4c3e30df40260e8b6c@uni-bonn.de> <1113573811.3426.21.camel@tempete.lac.qc.ca> <42603272.5030501@wxs.nl> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1113633420 14381 80.91.229.2 (16 Apr 2005 06:37:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 16 Apr 2005 06:37:00 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sat Apr 16 08:36:54 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1DMgvB-0001vz-TJ for gctc-ntg-context-518@m.gmane.org; Sat, 16 Apr 2005 08:36:49 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 93504127C2; Sat, 16 Apr 2005 08:40:27 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 02143-02; Sat, 16 Apr 2005 08:40:22 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 6CDEB127A9; Sat, 16 Apr 2005 08:40:22 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D554B127A9 for ; Sat, 16 Apr 2005 08:40:20 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 02044-03 for ; Sat, 16 Apr 2005 08:40:20 +0200 (CEST) Original-Received: from mailout09.sul.t-online.com (mailout09.sul.t-online.com [194.25.134.84]) by ronja.ntg.nl (Postfix) with ESMTP id E8616127A8 for ; Sat, 16 Apr 2005 08:40:19 +0200 (CEST) Original-Received: from fwd22.aul.t-online.de by mailout09.sul.t-online.com with smtp id 1DMgyZ-0008BQ-01; Sat, 16 Apr 2005 08:40:19 +0200 Original-Received: from [192.168.0.2] (r914n2ZCYelk52Ir7WT+vNobQdDMU0onsfO2m7mLPVoFHXRM2WNhkp@[84.177.110.28]) by fwd22.sul.t-online.de with esmtp id 1DMgyP-03U8RM0; Sat, 16 Apr 2005 08:40:09 +0200 In-Reply-To: <42603272.5030501@wxs.nl> Original-To: mailing list for ConTeXt users X-Mailer: Apple Mail (2.619.2) X-ID: r914n2ZCYelk52Ir7WT+vNobQdDMU0onsfO2m7mLPVoFHXRM2WNhkp@t-dialin.net X-TOI-MSGID: 7eec45fa-03f2-42a5-aa85-e4e152515251 X-Virus-Scanned: by amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: by amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:19918 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:19918 OK, I think I got the new beta working now under OS X. David Munger's suggestions were key (thanks a lot!). I had to apply both fixes, AFAICS: 1. Open $TEXMF/web2c/context/config/texexec.rme. line 68-69 are set TeXFormatFlag to & set MpFormatFlag to & and need to be modified like so set TeXFormatFlag to \& set MpFormatFlag to \& 2. Open $TEXMF/scripts/context/perl/texexec.pl. line 2442-2444 are unless ( $dosish && !$escapeshell ) { $cmd =~ s/[^\\]\&/\\\&/io ; } and should become unless ( $dosish && !$escapeshell ) { $cmd =~ s/([^\\])\&/$1\\\&/io ; } 3. After that, run texexec --make en metafun and texhash again, and you should be in business. Will try the same under my (gentoo) linux system later today. Thanks everybody for getting this fixed! Best Thomas On Apr 15, 2005, at 11:30 PM, Hans Hagen wrote: > Thomas A.Schmitz wrote: >> Oh, one more thing: interestingly, updating ConTeXt makes pdflatex >> break, too - in fact, every flavor of TeX that use pdfetex. pdfetex >> somehow reads a mapfile that ConTeXt provides and then complains >> about missing font. So I have to use the prior beta. > > delete the pdftex,map file in the fonts/map/pdftex/context path > > (i fixed the beta zip) > > Hans > > ----------------------------------------------------------------- > Hans Hagen | PRAGMA ADE > Ridderstraat 27 | 8061 GH Hasselt | The Netherlands > tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com > | www.pragma-pod.nl > ----------------------------------------------------------------- > > _______________________________________________ > ntg-context mailing list > ntg-context@ntg.nl > http://www.ntg.nl/mailman/listinfo/ntg-context >