From: Matej U. <mat...@us...> - 2006-09-17 18:14:57
|
Update of /cvsroot/mod-c/ehtml/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16193/src Modified Files: ChangeLog Makefile.am Session.cpp Log Message: Made profiling optional. Index: Makefile.am =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile.am 13 Sep 2006 19:42:16 -0000 1.10 --- Makefile.am 17 Sep 2006 18:14:51 -0000 1.11 *************** *** 10,14 **** HTTPD_INCLUDE_DIR = @APACHE_LOCATION@ INCLUDE_DIRS = -I$(APR_0_INCLUDE) -I$(HTTPD_INCLUDE_DIR) -I$(srcdir)/../include ! AM_CXXFLAGS = $(INCLUDE_DIRS) -Wall lib_LTLIBRARIES = libehtml.la libsession.la libdisksession.la libsessionid.la --- 10,14 ---- HTTPD_INCLUDE_DIR = @APACHE_LOCATION@ INCLUDE_DIRS = -I$(APR_0_INCLUDE) -I$(HTTPD_INCLUDE_DIR) -I$(srcdir)/../include ! AM_CXXFLAGS = $(INCLUDE_DIRS) -Wall $(WITH_PROFILING) lib_LTLIBRARIES = libehtml.la libsession.la libdisksession.la libsessionid.la Index: Session.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Session.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Session.cpp 13 Sep 2006 18:58:15 -0000 1.17 --- Session.cpp 17 Sep 2006 18:14:51 -0000 1.18 *************** *** 19,23 **** ***************************************************************************/ ! #include <Common.h> #include "Session.h" #include <Request.h> --- 19,23 ---- ***************************************************************************/ ! #include "Common.h" #include "Session.h" #include <Request.h> Index: ChangeLog =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 12 Sep 2006 23:11:58 -0000 1.4 --- ChangeLog 17 Sep 2006 18:14:51 -0000 1.5 *************** *** 1,2 **** --- 1,7 ---- + 2006-09-17 Matej Urbas <mat...@gm...> + + * Makefile.am: Added WITH_PROFILING macro - which enables optional + profiling. + 2006-09-13 Matej Urbas <mat...@gm...> |