From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Joachim Newsgroups: gmane.emacs.devel Subject: Re: Trunk build is broken again. Date: Thu, 15 May 2008 08:09:40 +0200 Message-ID: <877idw85ej.fsf@gmx.de> References: <20080515052627.4CDC08301F0@snark.thyrsus.com> 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 1210831968 15635 80.91.229.12 (15 May 2008 06:12:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 May 2008 06:12:48 +0000 (UTC) Cc: emacs-devel@gnu.org To: "Eric S. Raymond" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 15 08:13:23 2008 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 1JwWiM-0000wU-O8 for ged-emacs-devel@m.gmane.org; Thu, 15 May 2008 08:13:19 +0200 Original-Received: from localhost ([127.0.0.1]:41779 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JwWhd-0004Up-MT for ged-emacs-devel@m.gmane.org; Thu, 15 May 2008 02:12:33 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JwWgz-00048S-Id for emacs-devel@gnu.org; Thu, 15 May 2008 02:11:53 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JwWgx-00045U-CV for emacs-devel@gnu.org; Thu, 15 May 2008 02:11:52 -0400 Original-Received: from [199.232.76.173] (port=58455 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JwWgx-00045R-97 for emacs-devel@gnu.org; Thu, 15 May 2008 02:11:51 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]:44094) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JwWgw-0007t3-H5 for emacs-devel@gnu.org; Thu, 15 May 2008 02:11:50 -0400 Original-Received: (qmail invoked by alias); 15 May 2008 06:11:48 -0000 Original-Received: from p54867B73.dip.t-dialin.net (EHLO debian) [84.134.123.115] by mail.gmx.net (mp036) with SMTP; 15 May 2008 08:11:48 +0200 X-Authenticated: #28250155 X-Provags-ID: V01U2FsdGVkX19f70hSU5Vfc8XXfVaV2MldjOkuC2peNXXdgLDR7N y9os+EJiTnLhIX In-Reply-To: <20080515052627.4CDC08301F0@snark.thyrsus.com> (Eric S. Raymond's message of "Thu, 15 May 2008 01:26:27 -0400 (EDT)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-Y-GMX-Trusted: 0 X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:97185 Archived-At: On 2008-05-15 07:26 +0200, Eric S. Raymond wrote: > At 0125 EST May 15, "make mainainter-clean; configure; nake bootstrap" gives: > > _BSD_SOURCE -I/usr/include/freetype2 -I/usr/include/alsa -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -g -O2 -Wno-pointer-sign xterm.c > In file included from xterm.c:77: > emacs-icon.h:23: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘:’ token > xterm.c: In function ‘x_bitmap_icon’: > xterm.c:7492: error: ‘gnu_xpm_bits’ undeclared (first use in this function) > xterm.c:7492: error: (Each undeclared identifier is reported only once > xterm.c:7492: error: for each function it appears in.) The following change fixes that: 2008-05-15 Sven Joachim * emacs-icon.h: Fix latest change. --8<---------------cut here---------------start------------->8--- --- emacs-icon.h.~1.2.~ 2008-05-15 07:39:13.000000000 +0200 +++ emacs-icon.h 2008-05-15 07:59:27.000000000 +0200 @@ -18,7 +18,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with GNU Emacs. If not, see . */ +along with GNU Emacs. If not, see . Commentary: --8<---------------cut here---------------end--------------->8--- I wish that people would try to build before checking in mass changes. Sven