From: Gonzalo A. <ga...@us...> - 2007-04-01 13:25:58
|
Update of /cvsroot/mod-c/mod_c/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv844/src Modified Files: lib_cache.cpp mod_c.c Log Message: Fixed FreeBSD portability issues. * Added missing headers. Index: lib_cache.cpp =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/lib_cache.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lib_cache.cpp 12 Oct 2006 21:12:07 -0000 1.5 --- lib_cache.cpp 1 Apr 2007 13:25:55 -0000 1.6 *************** *** 37,40 **** --- 37,43 ---- #include <ehtml.h> + #include <sys/types.h> + #include <sys/stat.h> + using namespace std; Index: mod_c.c =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/mod_c.c,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** mod_c.c 6 Nov 2006 19:48:20 -0000 1.33 --- mod_c.c 1 Apr 2007 13:25:55 -0000 1.34 *************** *** 42,45 **** --- 42,48 ---- #include <assert.h> + #include <sys/types.h> + #include <sys/stat.h> + /** |