diff options
-rw-r--r-- | ChangeLog-98a | 14 | ||||
-rw-r--r-- | apps/gperf/src/Options.h | 5 |
2 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a index 8d598a29741..842bb35959c 100644 --- a/ChangeLog-98a +++ b/ChangeLog-98a @@ -1,3 +1,17 @@ +Thu Jun 4 12:25:48 1998 Rajiv C. Gandhi <gandhi@tango.cs.wustl.edu> + + * apps/gperf/src/Options.h: removing the option to stack + allocate some large arrays as CC does not seem to like it. + + + * apps/gperf/src/Key_List.cpp (output_lookup_array): removing + the option to stack allocate some large arrays as CC does + not seem to like it. + + + * apps/gperf/src/Gen_Perf.cpp: removing the option to stack + allocate some large arrays as CC does not seem to like it. + Wed Apr 29 18:55:13 1998 David L. Levine <levine@cs.wustl.edu> * ACE version 4.5 released. diff --git a/apps/gperf/src/Options.h b/apps/gperf/src/Options.h index 9ea3634683c..377e35cfe9f 100644 --- a/apps/gperf/src/Options.h +++ b/apps/gperf/src/Options.h @@ -166,9 +166,4 @@ private: // Global option coordinator for the entire program. extern Options option; -// Set to 1 if your want to stack-allocate some large arrays. -#if !defined (LARGE_STACK_ARRAYS) -#define LARGE_STACK_ARRAYS 0 -#endif /* LARGE_STACK_ARRAYS */ - #endif /* OPTIONS_H */ |