From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.bugs Subject: No declaration for isblank Date: Wed, 19 Sep 2007 22:25:32 +0100 Message-ID: <87r6kuz6sz.fsf@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1190237150 21968 80.91.229.12 (19 Sep 2007 21:25:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 19 Sep 2007 21:25:50 +0000 (UTC) To: Guile Bugs Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Wed Sep 19 23:25:48 2007 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IY73G-0005Fo-Ta for guile-bugs@m.gmane.org; Wed, 19 Sep 2007 23:25:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IY73F-0000FB-5Y for guile-bugs@m.gmane.org; Wed, 19 Sep 2007 17:25:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IY73B-0000Ew-8j for bug-guile@gnu.org; Wed, 19 Sep 2007 17:25:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IY739-0000Ek-LN for bug-guile@gnu.org; Wed, 19 Sep 2007 17:25:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IY739-0000Eh-IS for bug-guile@gnu.org; Wed, 19 Sep 2007 17:25:35 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IY739-0001Wr-8s for bug-guile@gnu.org; Wed, 19 Sep 2007 17:25:35 -0400 Original-Received: from arudy (host86-145-176-36.range86-145.btcentralplus.com [86.145.176.36]) by mail3.uklinux.net (Postfix) with ESMTP id 436081F83F9 for ; Wed, 19 Sep 2007 22:25:34 +0100 (BST) Original-Received: from laruns (unknown [192.168.0.10]) by arudy (Postfix) with ESMTP id 1B00B38009 for ; Wed, 19 Sep 2007 22:25:33 +0100 (BST) User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-Detected-Kernel: Linux 2.4-2.6 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:3595 Archived-At: Compiling current CVS on Debian Etch: ... gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../lib -I../lib -pthread -g -O2 -Wall -Wmissing-prototypes -Werror -MT libguile_la-srfi-14.lo -MD -MP -MF .deps/libguile_la-srfi-14.Tpo -c srfi-14.c -fPIC -DPIC -o .libs/libguile_la-srfi-14.o cc1: warnings being treated as errors srfi-14.c: In function 'scm_srfi_14_compute_char_sets': srfi-14.c:1532: warning: implicit declaration of function 'isblank' make[3]: *** [libguile_la-srfi-14.lo] Error 1 make[3]: Leaving directory `/home/neil/Organized/SW/Guile/guile-cvs-head/guile/guile-core/libguile' ... The patch below cures this, but is it correct? Regards, Neil --- srfi-14.c 29 Jul 2007 14:58:21 -0000 1.6 +++ srfi-14.c 19 Sep 2007 21:25:08 -0000 @@ -17,6 +17,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#define _GNU_SOURCE + #ifdef HAVE_CONFIG_H # include #endif _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://lists.gnu.org/mailman/listinfo/bug-guile