From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Hugo Wolf Newsgroups: gmane.emacs.help Subject: Re: Building on OS X Date: Thu, 26 Dec 2002 16:58:26 GMT Organization: AT&T Broadband Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <8465tghj53.fsf@lucy.cs.uni-dortmund.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1040922473 6986 80.91.224.249 (26 Dec 2002 17:07:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 26 Dec 2002 17:07:53 +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 18RbU8-0001oQ-00 for ; Thu, 26 Dec 2002 18:07:52 +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 18RbNq-0004j2-02 for gnu-help-gnu-emacs@m.gmane.org; Thu, 26 Dec 2002 12:01:22 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc03.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: slrn/0.9.7.4 (Darwin) Original-Lines: 36 Original-NNTP-Posting-Host: 66.31.41.137 Original-X-Complaints-To: abuse@attbi.com Original-X-Trace: sccrnsc03 1040921906 66.31.41.137 (Thu, 26 Dec 2002 16:58:26 GMT) Original-NNTP-Posting-Date: Thu, 26 Dec 2002 16:58:26 GMT Original-Xref: shelby.stanford.edu gnu.emacs.help:108494 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:5023 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:5023 In article <8465tghj53.fsf@lucy.cs.uni-dortmund.de>, Kai Großjohann wrote: > On the emacs-devel mailing list there was some discussion about > building on MacOS X failing with the most recent developer tools. The problem reported by the OP has nothing to do with this issue. Either some new bug has arisen in the cvs sources since 21-Dec or whatever he encountered was the result of user error. > I > don't remember the outcome, but maybe the CVS repository has a fix > already. Doesn't look like it. The patch for this can be found in the usual place: http://members.shaw.ca/akochoi-emacs/ It's small enough to include here: --- unexmacosx.c.~1.3.~ Mon Dec 2 09:22:04 2002 +++ unexmacosx.c Sat Dec 21 21:44:48 2002 @@ -638,7 +638,8 @@ else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 || strncmp (sectp->sectname, "__dyld", 16) == 0 - || strncmp (sectp->sectname, "__const", 16) == 0) + || strncmp (sectp->sectname, "__const", 16) == 0 + || strncmp (sectp->sectname, "__cfstring", 16) == 0) { if (!unexec_copy (sectp->offset, old_file_offset, sectp->size)) unexec_error ("cannot copy section %s", sectp->sectname);