Changeset 0c86ae in git
- Timestamp:
- Nov 22, 2012, 8:35:18 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- e3f52366c2a42547169d92be7935671627b1705b
- Parents:
- 2ee8ac18d25da263d8ff5b140f45b9ac7be22c0b
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-22 20:35:18+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-17 09:19:03+02:00
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r2ee8ac r0c86ae 60 60 AX_PYTHON_WITH_VERSION([2.4]) 61 61 62 AC_CONFIG_GOOGLE_PERFTOOLS() 62 63 63 64 AC_FUNC_ERROR_AT_LINE -
dyn_modules/syzextra/Makefile.am
r2ee8ac r0c86ae 36 36 37 37 38 AMLDFLAGS = -release ${PACKAGE_VERSION} 38 AMLDFLAGS = ${GOOGLE_PERFTOOL_LDFLAGS} -release ${PACKAGE_VERSION} 39 39 40 # -L${top_builddir}/Singular -L${top_builddir}/numeric -L${top_builddir}/kernel \ 40 41 # -L${top_builddir}/libpolys/polys $(USE_FACTORY) -L${top_builddir}/omalloc -L${top_builddir}/resources -
dyn_modules/syzextra/mod_main.cc
r2ee8ac r0c86ae 32 32 #include "myNF.h" 33 33 34 #ifdef HAVE_GOOGLE_PROFILER 34 35 #if GOOGLE_PROFILE_ENABLED 35 36 #include <google/profiler.h> 36 #endif // HAVE_GOOGLE_PROFILER37 #endif // #if GOOGLE_PROFILE_ENABLED 37 38 38 39 … … 177 178 { 178 179 NoReturn(__res); 179 #if def HAVE_GOOGLE_PROFILER180 #if GOOGLE_PROFILE_ENABLED 180 181 if( h!= NULL && h->Typ() == STRING_CMD ) 181 182 { … … 186 187 WerrorS("ProfilerStart requires a string [name] argument"); 187 188 #else 188 WarnS("Sorry no google profiler support ( undefined HAVE_GOOGLE_PROFILER)...");189 WarnS("Sorry no google profiler support (GOOGLE_PROFILE_ENABLE!=1)..."); 189 190 // return TRUE; // ? 190 #endif // #if def HAVE_GOOGLE_PROFILER191 #endif // #if GOOGLE_PROFILE_ENABLED 191 192 return FALSE; 192 193 (void)h; … … 195 196 { 196 197 NoReturn(__res); 197 #if def HAVE_GOOGLE_PROFILER198 #if GOOGLE_PROFILE_ENABLED 198 199 ProfilerStop(); 199 200 #else 200 WarnS("Sorry no google profiler support ( undefined HAVE_GOOGLE_PROFILER)...");201 WarnS("Sorry no google profiler support (GOOGLE_PROFILE_ENABLED!=1)..."); 201 202 // return TRUE; // ? 202 #endif // #if def HAVE_GOOGLE_PROFILER203 #endif // #if GOOGLE_PROFILE_ENABLED 203 204 return FALSE; 204 205 }
Note: See TracChangeset
for help on using the changeset viewer.