From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Harald Hanche-Olsen Newsgroups: gmane.emacs.devel Subject: Build failure on macosx -- possibly gcc bug? Date: Mon, 19 Oct 2009 17:56:36 -0400 (EDT) Message-ID: <20091019.175636.26423163.hanche@math.ntnu.no> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1255989841 1849 80.91.229.12 (19 Oct 2009 22:04:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 19 Oct 2009 22:04:01 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 20 00:03:50 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N00Dm-00020J-2M for ged-emacs-devel@m.gmane.org; Mon, 19 Oct 2009 23:56:54 +0200 Original-Received: from localhost ([127.0.0.1]:50268 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N00Dl-0006E7-Kf for ged-emacs-devel@m.gmane.org; Mon, 19 Oct 2009 17:56:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N00Dg-0006Du-3s for emacs-devel@gnu.org; Mon, 19 Oct 2009 17:56:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N00Db-0006AC-5a for emacs-devel@gnu.org; Mon, 19 Oct 2009 17:56:47 -0400 Original-Received: from [199.232.76.173] (port=35547 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N00Da-0006A9-Vd for emacs-devel@gnu.org; Mon, 19 Oct 2009 17:56:43 -0400 Original-Received: from abel.math.ntnu.no ([129.241.15.50]:50435) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1N00Da-00021n-Db for emacs-devel@gnu.org; Mon, 19 Oct 2009 17:56:42 -0400 Original-Received: (qmail 9841 invoked from network); 19 Oct 2009 21:56:39 -0000 Original-Received: from gauss.math.ntnu.no (HELO localhost) (hanche@129.241.15.102) by abel.math.ntnu.no with ESMTPA; 19 Oct 2009 21:56:39 -0000 X-URL: http://www.math.ntnu.no/~hanche/ X-Mailer: Mew version 6.2.51 on Emacs 23.0.94 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by monty-python.gnu.org: Solaris 8 (1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:116254 Archived-At: This is the result of make bootstrap after configure --with-ns (after a git pull): gcc -c -Demacs -DHAVE_CONFIG_H -I. -I/local/src/emacs/emacs-git/src -I/usr/X11/include -Dtemacs -I/opt/local/include/librsvg-2 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/include -I/opt/local/include/gtk-2.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/libpng12 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -g -O2 -Wno-pointer-sign image.c In file included from image.c:42: lisp.h:1854: error: syntax error before ‘jmp_buf’ lisp.h:1854: warning: no semicolon at end of struct or union Apparently, image.c needs to #include before "lisp.h", which it doesn't. Inserting such a line near the top of src/image.c seems to have fixed the problem. - Harald