]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (gnu-regex.o): Do not define STDC_HEADERS in compiler flags.
authorPhilippe De Muyter <phdm@macqel.be>
Mon, 21 Jun 1999 05:21:34 +0000 (23:21 -0600)
committerJeff Law <law@gcc.gnu.org>
Mon, 21 Jun 1999 05:21:34 +0000 (23:21 -0600)
x
        * fixinc/Makefile.in (gnu-regex.o): Do not define STDC_HEADERS in
        compiler flags.
        * system.h (WSTOPSIG): New macro.

From-SVN: r27653

gcc/fixinc/Makefile.in
gcc/system.h

index 8976c783e7269ad0f3f2773032b02e94966361c0..9182337c76a04f43f3d06d70ed4a5e8087fef5b0 100644 (file)
@@ -82,7 +82,7 @@ fixincl: $(OBJ)
 
 gnu-regex.o: gnu-regex.c
        -$(CC) $(CFLAGS) $(FIXINC_DEFS) $(INCLUDES) -DREGEX_MALLOC \
-               -DSTDC_HEADERS=1 -c $(srcdir)/gnu-regex.c
+               -c $(srcdir)/gnu-regex.c
 
 fixincl.o : fixincl.x fixincl.c
 server.o : server.c server.h
index 3ec73a6cab1fe7d4d062e8bfd4a4278b798bd292..22b48ab723c4d5ea09af219403f8bdc2f826651b 100644 (file)
@@ -249,6 +249,9 @@ extern int errno;
 #ifndef WEXITSTATUS
 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
 #endif
+#ifndef WSTOPSIG
+#define WSTOPSIG WEXITSTATUS
+#endif