Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src forgot these with:



details:   https://anonhg.NetBSD.org/src/rev/9437850bfd32
branches:  trunk
changeset: 551230:9437850bfd32
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Sep 02 06:36:22 2003 +0000

description:
forgot these with:
introduce an additional switch to enable building GCC3 instead of GCC2:
HAVE_GCC3.  if this is set, we also set USE_TOOLS_TOOLCHAIN=no.  change
the definition of the former to be restricted to whether tools/toolchain
is used or not.

diffstat:

 gnu/usr.bin/groff/Makefile.inc        |  4 ++--
 regress/usr.bin/rtld/testlib/Makefile |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (32 lines):

diff -r 0f11cacdc4fa -r 9437850bfd32 gnu/usr.bin/groff/Makefile.inc
--- a/gnu/usr.bin/groff/Makefile.inc    Tue Sep 02 06:17:03 2003 +0000
+++ b/gnu/usr.bin/groff/Makefile.inc    Tue Sep 02 06:36:22 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.6 2003/07/28 08:54:39 lukem Exp $
+# $NetBSD: Makefile.inc,v 1.7 2003/09/02 06:36:22 mrg Exp $
 
 # $FreeBSD: src/gnu/usr.bin/groff/Makefile.inc,v 2.7 2003/05/01 13:22:18 ru Exp $
 
@@ -85,7 +85,7 @@
 CXXFLAGS+=     -fno-rtti -fno-exceptions
 
 # If we're using GCC3, we only need -lsupc++
-.if ${USE_TOOLS_TOOLCHAIN} == "no"
+.if ${HAVE_GCC3} == "yes"
 USE_LIBSTDCXX= no
 .endif
 
diff -r 0f11cacdc4fa -r 9437850bfd32 regress/usr.bin/rtld/testlib/Makefile
--- a/regress/usr.bin/rtld/testlib/Makefile     Tue Sep 02 06:17:03 2003 +0000
+++ b/regress/usr.bin/rtld/testlib/Makefile     Tue Sep 02 06:36:22 2003 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2003/07/26 15:25:52 mrg Exp $
+# $NetBSD: Makefile,v 1.6 2003/09/02 06:36:23 mrg Exp $
 
 .include <bsd.own.mk>
 # XXX
-.if ${USE_TOOLS_TOOLCHAIN} == "yes"
+.if ${HAVE_GCC3} == "no"
 
 NOPROFILE=     yes
 



Home | Main Index | Thread Index | Old Index