For release, optimize by default.
authorJohn Carr <jfc@mit.edu>
Thu, 6 Jun 1991 23:56:57 +0000 (23:56 +0000)
committerJohn Carr <jfc@mit.edu>
Thu, 6 Jun 1991 23:56:57 +0000 (23:56 +0000)
RT and VAX use -I$(TOP)/include/stdc-incl

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2163 dc483132-0cff-0310-8789-dd5450dbe970

src/config/site.def

index f3f1d436d3356d70ab37f771a2087f33ef59b106..d6de0e626d9f16b1e0c98fd214d176db0260a8c4 100644 (file)
 #endif
 #endif
 
-#ifndef DefaultCDebugFlags
-#if HasGcc
+/* With gcc, use -g -O.  Otherwise use the default (-O). */
+#if !defined(DefaultCDebugFlags) && HasGcc
 #define DefaultCDebugFlags OptimizedCDebugFlags DebuggableCDebugFlags
-#else
-#define DefaultCDebugFlags DebuggableCDebugFlags
-#endif
 #endif
 
 #if HasNdbm
 #define ZephyrLibs -lzephyr
 #endif
 
+#ifndef PS2Architecture
 /* define IsodeLib to be what you pass to the loader to find the ISODE
    library.  This might want to be -lisode if you have it installed.
    IsodeDir is put into the 'make' variable ISODE. */
 /* Re-define PepsyCmd if pepsy isn't in your search path. */
 
 #define PepsyCmd $(ISODE)/@sys/bin/pepsy
+#endif
 
 #define UseImakeInstalled /* -- turn on if you have imake installed */
 #define UseMakedependInstalled /* -- turn on if you have makedepend installed */
 #define        AthenaEnv YES           /* Define this if you are in the
                                   athena environment.
                                   No one else should define this.  */
+
+#if defined(VaxArchitecture) || defined(RtArchitecture)
+#define        STDCTopIncludes -I$(TOP)/include/stdc-incl
+#endif