Add some more headers at the top of eina_amalgamation.c.

Fix compilation on Windows CE


SVN revision: 43054
This commit is contained in:
Vincent Torri 2009-10-13 17:14:50 +00:00
parent a9413206ef
commit 568f723401
1 changed files with 3 additions and 1 deletions

View File

@ -101,6 +101,8 @@ $(builddir)/ eina_amalgamation.c: $(sources_used) Makefile
@echo "#include <dlfcn.h>" >> $(builddir)/eina_amalgamation.c
@echo "#include <sys/types.h>" >> $(builddir)/eina_amalgamation.c
@echo "#include <dirent.h>" >> $(builddir)/eina_amalgamation.c
@echo "#include <assert.h>" >> $(builddir)/eina_amalgamation.c
@echo "#include <errno.h>" >> $(builddir)/eina_amalgamation.c
@echo "#ifdef HAVE_EVIL" >> $(builddir)/eina_amalgamation.c
@echo "# include <Evil.h>" >> $(builddir)/eina_amalgamation.c
@ -118,7 +120,7 @@ $(builddir)/ eina_amalgamation.c: $(sources_used) Makefile
file="$$f" ; \
fi ; \
echo "/* file: $$file */" >> $(builddir)/eina_amalgamation.c; \
grep -v -e '^# *include \+.\(config\|eina_[a-z_]\+\|Evil\|stdio\|stdlib\|string\|dlfcn\)[.]h.*' $$file >> $(builddir)/eina_amalgamation.c; \
grep -v -e '^# *include \+.\(config\|eina_[a-z_]\+\|Evil\|stdio\|stdlib\|string\|dlfcn\|dirent\|assert\|errno\)[.]h.*' $$file >> $(builddir)/eina_amalgamation.c; \
done
@echo "eina_amalgamation.c generated"