]> andersk Git - moira.git/commitdiff
Initial revision
authormar <mar>
Thu, 10 Jan 1991 17:51:33 +0000 (17:51 +0000)
committermar <mar>
Thu, 10 Jan 1991 17:51:33 +0000 (17:51 +0000)
util/imake/ccimake.c

index 6f13d64cb536e1ce68fe16e04f5ec5692728ae1d..8b682615155d08affc06c77bf08561a2f8e7812c 100644 (file)
@@ -1,21 +1,15 @@
-/*
- * $XConsortium: ccimake.c,v 1.12 89/10/16 12:09:23 jim Exp $
- * 
- * Warning:  This file must be kept as simple as posible so that it can 
- * compile without any special flags on all systems.  Do not touch it unless
- * you *really* know what you're doing.  Make changes in imakemdep.h, not here.
- */
-
-#define CCIMAKE                        /* only get imake_ccflags definitions */
-#include "imakemdep.h"         /* things to set when porting imake */
-
-#ifndef imake_ccflags
-#define imake_ccflags "-O"
+#ifdef hpux
+#define ccflags "-Wc,-Nd4000,-Ns3000 -DSYSV"
+#else
+#ifdef _AIX
+#define ccflags "-D_BSD -D_BSD_INCLUDES -O"
+#else
+#define ccflags "-O"
+#endif
 #endif
 
 main()
 {
-       write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
+       write(1, ccflags, sizeof(ccflags) - 1);
        exit(0);
 }
-
This page took 0.09242 seconds and 5 git commands to generate.