From a1a7e9d5c4b55fbcac064ab702083001c2a9cd93 Mon Sep 17 00:00:00 2001 From: zack Date: Tue, 8 Jan 2002 19:03:20 +0000 Subject: * Makefile.in (cs-tconfig.h): Don't depend on $(CONFIG_H) or except.h. Remove commands to define USING_SJLJ_EXCEPTIONS. (cppinit.o): Depend on except.h. (gencheck.h, options.h, specs.h, s-gencheck, s-options, s-specs): New rules. * configure.in: Don't AC_DEFINE_UNQUOTED PACKAGE or VERSION. Don't create specs.h/options.h/gencheck.h here. Remove unnecessary variable settings from last argument of AC_OUTPUT. * config.in, configure: Regenerate. * intl.c: Hardcode package name as "gcc". * cppinit.c: Include except.h. (builtin_array): Define __USING_SJLJ_EXCEPTIONS__ when appropriate. * unwind-dw2.c, unwind-sjlj.c, config/ia64/unwind-ia64.c: Use #if(n)def __USING_SJLJ_EXCEPTIONS, not #if (!)USING_SJLJ_EXCEPTIONS. * doc/cpp.texi: Document __USING_SJLJ_EXCEPTIONS__. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48651 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/unwind-sjlj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/unwind-sjlj.c') diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c index ff39ca4385f..9bf27a1a529 100644 --- a/gcc/unwind-sjlj.c +++ b/gcc/unwind-sjlj.c @@ -23,7 +23,7 @@ #include "unwind.h" #include "gthr.h" -#if USING_SJLJ_EXCEPTIONS +#ifdef __USING_SJLJ_EXCEPTIONS__ #ifdef DONT_USE_BUILTIN_SETJMP #ifndef inhibit_libc -- cgit v1.2.1