Commit 1ab0e567 by Manfred Hollstein

Makefile.in (stmp-fixinc): If we're actually fixing include files...

d
	* Makefile.in (stmp-fixinc): If we're actually fixing include
	files, copy gcc's assert.h into the fixed include dir.
	* fixincludes (assert.h): Avoid any attempts to fix a probably
	broken system specific assert.h file.
	* fixproto (stdlib.h): Make sure, it'll contain a definition of
	size_t.

From-SVN: r18851
parent d8a0154e
...@@ -1924,6 +1924,9 @@ stmp-fixinc: $(FIXINCLUDES) gsyslimits.h ...@@ -1924,6 +1924,9 @@ stmp-fixinc: $(FIXINCLUDES) gsyslimits.h
$(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \ $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \
else true; fi; \ else true; fi; \
done; \ done; \
rm -f include/assert.h; \
cp $(srcdir)/assert.h include/assert.h; \
chmod a+r include/assert.h; \
else true; \ else true; \
fi fi
rm -f include/syslimits.h rm -f include/syslimits.h
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment