Changeset 09ed77 in git
- Timestamp:
- May 19, 2011, 11:20:21 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- cfb5000f6e3cef21c58dd8a3885a3762c287382b
- Parents:
- 37c7fc12531c0affe2e7abfce3be0590304fc0da
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-05-19 23:20:21+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:13+01:00
- Location:
- omalloc
- Files:
-
- 5 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
omalloc/configure.ac
r37c7fc1 r09ed77 30 30 AC_ARG_WITH( 31 31 malloc, 32 [ --with-malloc=system| dlmalloc|gmalloc|pmalloc|external32 [ --with-malloc=system|external 33 33 which malloc to use, default: malloc ]) 34 34 AC_ARG_WITH( … … 248 248 AC_DEFINE(OMALLOC_USES_MALLOC,1,the system allocator is called malloc) 249 249 AC_DEFINE(OMALLOC_USES_SYSTEM_MALLOC,1,use system malloc as system allocator) 250 elif test "${with_malloc}" = gmalloc; then251 AC_DEFINE(OMALLOC_USES_GMALLOC,1,use gmalloc as system allocator)252 OM_MALLOC_HEADER=gmalloc.h253 OM_MALLOC_SOURCE=gmalloc.c254 elif test "${with_malloc}" = pmalloc; then255 AC_DEFINE(OMALLOC_USES_PMALLOC,1,use pmalloc as system allocator)256 OM_MALLOC_HEADER=pmalloc.h257 OM_MALLOC_SOURCE=pmalloc.c258 250 elif test "${with_malloc}" = external; then 259 251 if test "${with_external_malloc_h+set}" != set; then … … 264 256 OM_MALLOC_SOURCE=$with_external_malloc_c 265 257 AC_DEFINE(OMALLOC_USES_MALLOC,1,the system allocator is called malloc) 266 elif test "${with_malloc}" = dlmalloc; then267 with_malloc=dlmalloc268 AC_DEFINE(OMALLOC_USES_DLMALLOC,1,use dlmalloc as system allocator)269 OM_MALLOC_HEADER=dlmalloc.h270 OM_MALLOC_SOURCE=dlmalloc.c271 258 else ## default 272 259 OM_MALLOC_HEADER=omMallocSystem.h
Note: See TracChangeset
for help on using the changeset viewer.