From: Matej U. <mat...@us...> - 2006-09-17 18:14:57
|
Update of /cvsroot/mod-c/ehtml/samples In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16193/samples Modified Files: ChangeLog Makefile.am Log Message: Made profiling optional. Index: Makefile.am =================================================================== RCS file: /cvsroot/mod-c/ehtml/samples/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 15 Sep 2006 10:37:05 -0000 1.5 --- Makefile.am 17 Sep 2006 18:14:51 -0000 1.6 *************** *** 3,7 **** HTTPD_INCLUDE_DIR = @APACHE_LOCATION@ INCLUDE_DIRS = -I$(APR_0_INCLUDE) -I$(HTTPD_INCLUDE_DIR) -I$(srcdir)/../include ! AM_CXXFLAGS = $(INCLUDE_DIRS) # g++ \ --- 3,7 ---- 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) # g++ \ Index: ChangeLog =================================================================== RCS file: /cvsroot/mod-c/ehtml/samples/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ChangeLog 15 Sep 2006 10:37:05 -0000 1.2 --- ChangeLog 17 Sep 2006 18:14:51 -0000 1.3 *************** *** 1,2 **** --- 1,7 ---- + 2006-09-17 Matej Urbas <mat...@gm...> + + * Makefile.am: Added WITH_PROFILING macro - which enables optional + profiling. + 2006-09-15 Matej Urbas <mat...@gm...> |