From: Gonzalo A. <ga...@us...> - 2007-03-12 23:04:39
|
Update of /cvsroot/mod-c/ehtml/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv10828/src Modified Files: Common.cpp DefaultSessionServer.cpp ehtml_prof_util.cpp Log Message: Added missing includes (required by FreeBSD, but not by Linux). Index: Common.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Common.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Common.cpp 9 Nov 2006 15:57:25 -0000 1.17 --- Common.cpp 12 Mar 2007 23:04:35 -0000 1.18 *************** *** 31,34 **** --- 31,39 ---- #include "Common.h" #include "Profiling.h" + + #include <sys/types.h> + #include <sys/stat.h> + #include <unistd.h> + #include <stdlib.h> #include <sstream> Index: ehtml_prof_util.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/ehtml_prof_util.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ehtml_prof_util.cpp 12 Mar 2007 19:18:46 -0000 1.1 --- ehtml_prof_util.cpp 12 Mar 2007 23:04:35 -0000 1.2 *************** *** 35,38 **** --- 35,39 ---- #include <assert.h> + #include <errno.h> #include <map> Index: DefaultSessionServer.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DefaultSessionServer.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DefaultSessionServer.cpp 12 Oct 2006 21:10:36 -0000 1.2 --- DefaultSessionServer.cpp 12 Mar 2007 23:04:35 -0000 1.3 *************** *** 38,41 **** --- 38,42 ---- #include <string.h> #include <sys/socket.h> + #include <sys/stat.h> #include <sys/un.h> #include <unistd.h> |