From owner-freebsd-ports Sat Jun 29 22:20:11 2002 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8DDE37B400 for ; Sat, 29 Jun 2002 22:20:03 -0700 (PDT) Received: from mailg.telia.com (mailg.telia.com [194.22.194.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9417443E13 for ; Sat, 29 Jun 2002 22:20:02 -0700 (PDT) (envelope-from erikt@midgard.homeip.net) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailg.telia.com (8.11.6/8.11.6) with ESMTP id g5U5K0910969 for ; Sun, 30 Jun 2002 07:20:00 +0200 (CEST) Received: from falcon.midgard.homeip.net (h53n2fls20o913.telia.com [212.181.163.53]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id HAA17119 for ; Sun, 30 Jun 2002 07:19:59 +0200 (CEST) Received: (qmail 75719 invoked by uid 1001); 30 Jun 2002 05:19:58 -0000 Date: Sun, 30 Jun 2002 07:19:57 +0200 From: Erik Trulsson To: parv Cc: f-ports Subject: Re: mail/mutt-devel port & "ANSI C does not support long long" in /usr/include/stdlib.h Message-ID: <20020630051957.GA58539@falcon.midgard.homeip.net> Mail-Followup-To: parv , f-ports References: <20020630020344.GA23683@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020630020344.GA23683@moo.holy.cow> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Jun 29, 2002 at 10:03:44PM -0400, parv wrote: > freebsd-stable/i386 version is 2002.06.27.13.03.33 and stdlib.h is > 1.16.2.3, 2001.12.27.20.35.34. > > below is the warning that i currently get while compiling > mail/mutt-devel for every cc command (which did not happen for > previous version(s) of freebsd {4.6-rc to 4.6-prerelease})... > > > cc -I/usr/local/include -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I/include -I/usr/local/include/sasl -I/usr/local/include -I../ > intl -Wall -pedantic -O -pipe -march=pentiumpro -c auth.c > In file included from ../mutt.h:22, > from auth.c:23: > /usr/include/stdlib.h:108: warning: ANSI C does not support `long long' > /usr/include/stdlib.h:112: warning: ANSI C does not support `long long' > cc -I/usr/local/include -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I/include -I/usr/local/include/sasl -I/usr/local/include -I../ > intl -Wall -pedantic -O -pipe -march=pentiumpro -c auth_login.c > In file included from ../mutt.h:22, > from auth_login.c:21: > /usr/include/stdlib.h:108: warning: ANSI C does not support `long long' > /usr/include/stdlib.h:112: warning: ANSI C does not support `long long' > ... > > > ...how serious is it? is the problem related to either freebsd, > mutt, or both? It is not serious and nothing to worry about. It is just gcc which tries to be helpful and doesn't quite succeed. 'long long' is supported by gcc and it is in the latest C standard so everything is actually OK. The problem is just that the version of gcc in -stable does not know about the latest version of the C standard and complains because 'long long' was not in the previous standard. gcc was recently updated in -stable (from 2.95.3 to 2.95.4). I guess one of the changes there is responsible for this warning starting to appear. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message