From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Pete Oster Newsgroups: gmane.emacs.help Subject: Re: Building Emacs 21.3 with X in MacOS X Date: Mon, 17 Feb 2003 15:38:28 GMT Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1045496301 9829 80.91.224.249 (17 Feb 2003 15:38:21 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 17 Feb 2003 15:38:21 +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 18knLX-0002YF-00 for ; Mon, 17 Feb 2003 16:38:19 +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 18knNT-0001js-04 for gnu-help-gnu-emacs@m.gmane.org; Mon, 17 Feb 2003 10:40:19 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!nycmny1-snh1.gtei.net!crtntx1-snh1.gtei.net!news.gtei.net!paloalto-snr1.gtei.net.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: slrn/0.9.7.4 (Darwin) Original-Lines: 31 Original-X-Trace: /bdhN5XWL9O4paI5cAu2EaieYsfae15E3LWjOO8h9/X4HeV/PBNGqiIvxehw94sNpZ+tJ8IDGxiM!ZsIgoy3gIbgZDc/PQoghAXieWcCC+FecB8hp2P/fNbVojsrMOmKe3cpLQ2PZlaiytOC7g+kA9Q5P!kXg= Original-X-Complaints-To: abuse@gte.net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly Original-NNTP-Posting-Date: Mon, 17 Feb 2003 15:38:28 GMT Original-Distribution: world Original-Xref: shelby.stanford.edu gnu.emacs.help:110283 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:6783 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:6783 In article , kristian ragndahl wrote: > I'm trying to build Emacs 21.3 (from cvs) with X support and > without carbon but it fails with; > > Writing LC_SYMTAB command > unexec: cannot handle LC_DYSYMTAB with relocation entries > make[1]: *** [bootstrap-emacs] Error 1 > make: *** [bootstrap] Error 2 > > Google didn't help me much. > See the Dec 21 2002 entry in http://members.shaw.ca/akochoi-emacs/ --- src/unexmacosx.c.~1.3.~ Mon Dec 2 09:22:04 2002 +++ src/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); For whatever reason, this change is not (yet?) in the cvs tree.