This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] isomac test fails


Hi,

I got the 'isomac' failure from 'make check' (I think it was already
reported previously).  The reason is the removed stdio/stdio.h header;
in fact isomac was invoking gcc with the wrong flags (in particular,
the compulsory USE_IN_LIBIO was missing).  I'm not sure the patch
below is the correct fix, maybe include/stdio.h should be changed now
that stdio/stdio.h is no more?

2002-05-12  Wolfram Gloger  <wg@malloc.de>

	* stdlib/Makefile: Let the isomac test include config.h, so all
	internal headers (in particular include/stdio.h) can be used.

--- stdlib/Makefile.orig	Sat Mar 16 13:10:31 2002
+++ stdlib/Makefile	Sun May 12 17:21:56 2002
@@ -158,7 +158,8 @@
 
 $(objpfx)isomac.out: $(objpfx)isomac
 	$(dir $<)$(notdir $<) '$(CC)'  \
-	'-I../include -I.. $(+sysdep-includes) $(sysincludes)' > $<.out
+	'-I../include -I.. $(+sysdep-includes) $(sysincludes) \
+	 -include $(common-objpfx)config.h' > $<.out
 
 isomac-CFLAGS = -O
 $(objpfx)isomac: isomac.c


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]