From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Benjamin Riefenstahl Newsgroups: gmane.emacs.help Subject: Re: Emacs compile problem (mbsinit unresolved) Date: Fri, 30 May 2003 21:55:47 +0200 Organization: None Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1054324800 21265 80.91.224.249 (30 May 2003 20:00:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 30 May 2003 20:00:00 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Fri May 30 21:59:59 2003 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 19Lq2g-0005Wq-00 for ; Fri, 30 May 2003 21:59:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Lq3Y-0003Sa-Tw for gnu-help-gnu-emacs@m.gmane.org; Fri, 30 May 2003 16:00:52 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!sjc70.webusenet.com!news.webusenet.com!pd2nf1so.cg.shawcable.net!residential.shaw.ca!sn-xit-03!sn-xit-01!sn-xit-06!sn-post-02!sn-post-01!supernews.com!news.supernews.com!cicero.benny.turtle-trading.net!nobody Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.2 (gnu/linux) Cancel-Lock: sha1:mcM/IyH33bgdfi07lgeqAOSSKOA= Original-X-Complaints-To: abuse@supernews.com Original-Lines: 21 Original-Xref: shelby.stanford.edu gnu.emacs.help:113906 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:10400 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:10400 Hi Doug, Doug Chinnery writes: > Undefined first referenced > symbol in file > mbsinit strftime.o > temacs: fatal error: Symbol referencing errors. No output written to temacs The Emacs 21.3 version of src/strftime.c believes that if you have mbrlen(), you must also have mbsinit() without explicitly checking for the latter function. That seems not to be true on your system. Emacs in CVS allows for that possibility, but 21.3 doesn't. Add this line in src/strftime.c to patch it up, and let us know how it goes: #define mbsinit(ps) (*(ps) == 0) Hope this helps, benny