From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andrew Choi Newsgroups: gmane.emacs.help Subject: Re: Mac OSX TeX / To X11 or Not? Date: Fri, 06 Dec 2002 17:35:21 GMT Organization: Shaw Residential Internet Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <041220020952400758%ajanta@no.spam> <56cfb0e3.0212041458.5eab182a@posting.google.com> <061220020416350201%ajanta@no.spam> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1039196963 28574 80.91.224.249 (6 Dec 2002 17:49:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 6 Dec 2002 17:49:23 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18KMbH-0007QL-00 for ; Fri, 06 Dec 2002 18:49:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18KMUK-0005uu-00; Fri, 06 Dec 2002 12:42:08 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!snoopy.risq.qc.ca!chi1.webusenet.com!news.webusenet.com!pd2nf1so.cg.shawcable.net!residential.shaw.ca!news3.calgary.shaw.ca.POSTED!not-for-mail X-Trace-PostClient-IP: 68.144.207.94 Original-Newsgroups: comp.sys.mac.apps,comp.text.tex,comp.emacs.xemacs,gnu.emacs.help Original-Lines: 32 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-NNTP-Posting-Host: 24.71.223.147 Original-X-Complaints-To: abuse@shaw.ca Original-X-Trace: news3.calgary.shaw.ca 1039196121 24.71.223.147 (Fri, 06 Dec 2002 10:35:21 MST) Original-NNTP-Posting-Date: Fri, 06 Dec 2002 10:35:21 MST Original-Xref: shelby.stanford.edu comp.sys.mac.apps:348220 comp.text.tex:237510 comp.emacs.xemacs:69017 gnu.emacs.help:107799 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:4348 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:4348 Schone Mullerin writes: > In article <061220020416350201%ajanta@no.spam>, Ajanta wrote: > > I followed Andrew Choi's instructions and got a later (21.3 beta?) > > version by CVS; this one ran ./configure but make eventually failed. > > This is a cvs tree, so it's frequently broken for "minority" > platforms. The current sources as of yesterday, for example, were > broken for darwin/osx (emacs/lib-src/getopt.c). When this happens you > generally need to checkout an earlier version of the problematic file. Oh no, not again. This patch will fix it: Index: getopt.c =================================================================== RCS file: /cvsroot/emacs/emacs/lib-src/getopt.c,v retrieving revision 1.21 diff -u -r1.21 getopt.c --- getopt.c 5 Dec 2002 15:30:09 -0000 1.21 +++ getopt.c 6 Dec 2002 17:32:51 -0000 @@ -83,7 +83,11 @@ # include "gettext.h" #endif #endif +#ifdef HAVE_LIBINTL_H #define _(msgid) gettext (msgid) +#else +#define _(msgid) (msgid) +#endif #if defined _LIBC && defined USE_IN_LIBIO # include