From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: make bootstrap crashes on incompatible integer to pointer conversion Date: Tue, 03 Dec 2024 19:01:21 +0200 Message-ID: <86r06o1z1a.fsf@gnu.org> References: <86o71spwfs.fsf@emacsjail.tradesystem.nl> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6063"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Matto Fransen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Dec 03 18:04:08 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tIWJj-0001Na-3S for ged-emacs-devel@m.gmane-mx.org; Tue, 03 Dec 2024 18:04:07 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tIWIL-0007pE-7V; Tue, 03 Dec 2024 12:02:41 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tIWHB-0007FK-B3 for emacs-devel@gnu.org; Tue, 03 Dec 2024 12:01:33 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tIWHA-0005nd-Ba; Tue, 03 Dec 2024 12:01:28 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=jGho1Sf6VwWq2NOVuQZ8ocKxok4U5r5/rWe7kBp7uVM=; b=iejtT6HwYPz0 j8HrZG/pR2XdY3jjBJngjeQ0GGGwQk3Ne0IfrTiB++ELA9J66MJr0G6ejD302/ye8MgxGHaGQaXWh paCg0JQpHQIB/Vo04bez1igg+V6yJzHUxBsUlIcuJ/ojAqI62uGWvjasXTE+5CbL6YetFvkjXMpNr cw3knG5MfUPnDpZ1RuiR94mBH/L/4Fy3SfpSBry9ueO6pKBQKZDifQHv+0HpYUKo1Yza0lBUpprfB CJNLytm74TqOcEjVhGsAyz9LOCvZeAICK9KKmIGSbFUopLOKr2SE5xk7vz7u8jmRvIpBpJSUtHqtf 8ggf6E61mxNJJJHavjzB/A==; In-Reply-To: <86o71spwfs.fsf@emacsjail.tradesystem.nl> (message from Matto Fransen on Tue, 03 Dec 2024 16:23:35 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:325996 Archived-At: > From: Matto Fransen > Date: Tue, 03 Dec 2024 16:23:35 +0000 > > I am trying to compile Emacs on FreeBSD 14-2 with the latest source from > Git. > > These are the first steps: > > git pull > git clean -dxf > ./autogen.sh > ./configure --with-x-toolkit=lucid > make bootstrap > > > make boostrap crashes on image.c: > > image.c:12358:12: warning: call to undeclared function 'rsvg_handle_get_pixbuf_and_error'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] > 12358 | pixbuf = rsvg_handle_get_pixbuf_and_error (rsvg_handle, &err); > | ^ > image.c:12358:10: error: incompatible integer to pointer conversion assigning to 'GdkPixbuf *' (aka 'struct _GdkPixbuf *') from 'int' [-Wint-conversion] > 12358 | pixbuf = rsvg_handle_get_pixbuf_and_error (rsvg_handle, &err); > Thanks, this has been fixed yesterday on the emacs-30 branch, and will be fixed in a couple of days on master as well.