From owner-freebsd-stable@FreeBSD.ORG Fri Dec 23 19:54:33 2005 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9C4116A41F for ; Fri, 23 Dec 2005 19:54:33 +0000 (GMT) (envelope-from gena_tele@mail.ru) Received: from mx6.mail.ru (mx6.mail.ru [194.67.23.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171B543D6D for ; Fri, 23 Dec 2005 19:54:33 +0000 (GMT) (envelope-from gena_tele@mail.ru) Received: from [87.228.25.167] (port=44789 helo=localhost) by mx6.mail.ru with asmtp id 1Epszn-000Nwl-00 for freebsd-stable@freebsd.org; Fri, 23 Dec 2005 22:54:31 +0300 Date: Fri, 23 Dec 2005 22:54:30 +0300 From: Telegin Gennady To: freebsd-stable@freebsd.org Message-ID: <20051223225430.7a78799a@localhost> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.9; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: problems with groff in FreeBSD 6.0 buildworld X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2005 19:54:33 -0000 I have heads up my source tree to RELENG_6, and for the `make buildworld` I have got a compile error, last message of which is that: c++ -O2 -fno-strict-aliasing -pipe -O -pipe -DHAVE_CONFIG_H -I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/include -I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../src/include -I/usr/obj/usr/src/tmp/legacy/usr/include -fno-rtti -fno-exceptions -c /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp: In function `void savebounds(double,double)': /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp:692: error: expected primary-expression before '<'token /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp:693: error: expected primary-expression before ';' token /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp:694: error: expected primary-expression before '>' token /usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp:695: error: expected primary-expression before ';' token *** Error code 1 Stop in /usr/src/gnu/usr.bin/groff/src/preproc/grn. I was trying change CFLAGS, COPTFLAGS in /etc/make.conf to `+= -0 -pipe`, or comment it, but the result were not changed. Here the /etc/make.conf, which I use now: CFLAGS += -O -pipe COPTFLAGS += -O -pipe NO_PROFILE= COMPAT3x=YES COMPAT4x=YES BSDPORTMK?= ${PORTSDIR}/devel/portmk/Mk/bsd.port.mk BSDPORTSUBDIRMK?= ${PORTSDIR}/devel/portmk/Mk/bsd.port.subdir.mk PERL_VER=5.8.7 PERL_VERSION=5.8.7 My current system is FreeBSD 5.4. In what a problem?