remove UseInstalled #ifdef on gcc
authorJohn Kohl <jtkohl@mit.edu>
Wed, 5 Sep 1990 15:20:58 +0000 (15:20 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 5 Sep 1990 15:20:58 +0000 (15:20 +0000)
move possibly-arch-specific stuff to end of file
add UseImakeInstalled, UseMakedependInstalled

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

src/config/site.def

index 78c2971ad4a929f7182ef791a076c999909f3ba0..ff34b7735572ce55e1f82f3067078b83742cc0bf 100644 (file)
 
 #if HasGcc
 #ifndef CcCmd
-#ifdef UseInstalled            /* if outside the tree */
-#define CcCmd gcc -DNOSTDHDRS -fstrength-reduce -fpcc-struct-return -fwritable-strings -traditional
-#else                          /* server won't compile with -traditional */
 #define CcCmd gcc -DNOSTDHDRS -fstrength-reduce -fpcc-struct-return -pedantic -ansi -Wall
 #define STDCTopIncludes -I$(TOP)/include/stdc-incl
 #endif
 #endif
-#endif
 
 
 #ifndef ExtensionDefines
 #define IsodeLib /mit/isode/isode-6.0/@sys/lib/libisode.a
 #define IsodeDir /mit/isode/isode-6.0
 
-/* #define HasVfprintf -- turn on if you have vfprintf/vsprintf in libc
-                         (might want to be in the architecture-specific
-                          configuration file) */
-
 #define UseSSInstalled /* -- turn on if you have the SS library &c installed */
                        
 #define UseComErrInstalled /* -- turn on if you have the com_err library
                                 &c installed */
+#define UseImakeInstalled /* -- turn on if you have imake installed */
+#define UseMakedependInstalled /* -- turn on if you have makedepend installed */
+
+/* the following might want to be put into a specific architecture
+   definition file */
+
+/* #define HasVfprintf -- turn on if you have vfprintf/vsprintf in libc
+                         (might want to be in the architecture-specific
+                          configuration file) */
+/* #define LdLibLocations -L/foo/bar -- alternate library search paths,
+                                       if needed for some system libraries */
+/* #define StandardIncludes -I/foo/bar -- additional include paths, if
+                                       needed */