diff options
author | Dave Brolley <brolley@cygnus.com> | 1998-12-10 12:09:04 +0000 |
---|---|---|
committer | Dave Brolley <brolley@gcc.gnu.org> | 1998-12-10 07:09:04 -0500 |
commit | 353f10d599e12e831b1f51baee31d06613165144 (patch) | |
tree | 34bb98e735e1d4bdabed013b00f303b3220bc1d2 /gcc | |
parent | 1179ebc2fdab598b852c322b150b5e70ed557acc (diff) | |
download | gcc-353f10d599e12e831b1f51baee31d06613165144.zip gcc-353f10d599e12e831b1f51baee31d06613165144.tar.gz gcc-353f10d599e12e831b1f51baee31d06613165144.tar.bz2 |
objc-act.c (lang_init_options): Enclose cpplib related code in #if USE_CPPLIB.
Thu Dec 10 15:05:59 1998 Dave Brolley <brolley@cygnus.com>
* objc/objc-act.c (lang_init_options): Enclose cpplib related code in
#if USE_CPPLIB.
From-SVN: r24234
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a52063..e404a69 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 10 15:05:59 1998 Dave Brolley <brolley@cygnus.com> + + * objc/objc-act.c (lang_init_options): Enclose cpplib related code in + #if USE_CPPLIB. + Thu Dec 10 13:39:46 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * collect2.h: New header file for prototypes. diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 2f6c7b0..e53b26f 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -598,9 +598,11 @@ extern char *yy_cur; void lang_init_options () { +#if USE_CPPLIB cpp_reader_init (&parse_in); parse_in.opts = &parse_options; cpp_options_init (&parse_options); +#endif } void |