# HG changeset patch # User Richard M. Stallman # Date 805124224 0 # Node ID 333d25d9a8b1f77342a1ef37b2a2ab969bc8632e # Parent 664012a3216e65b06211185517ecd931fd03f89b (C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these names instead of C_SWITCH_OPTIMIZE, C_SWITCH_DEBUG. diff -r 664012a3216e -r 333d25d9a8b1 src/s/aix3-2-5.h --- a/src/s/aix3-2-5.h Fri Jul 07 13:36:40 1995 +0000 +++ b/src/s/aix3-2-5.h Fri Jul 07 13:37:04 1995 +0000 @@ -6,8 +6,8 @@ because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */ #ifndef __GNUC__ -#undef C_SWITCH_DEBUG -#undef C_SWITCH_OPTIMIZE -#define C_SWITCH_DEBUG -#define C_SWITCH_OPTIMIZE -O +#undef C_DEBUG_SWITCH +#undef C_OPTIMIZE_SWITCH +#define C_DEBUG_SWITCH -O +#define C_OPTIMIZE_SWITCH -O #endif