Changeset 09ed77 in git


Ignore:
Timestamp:
May 19, 2011, 11:20:21 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
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
Message:
start to removed unneeded options from omalloc
Location:
omalloc
Files:
5 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/configure.ac

    r37c7fc1 r09ed77  
    3030AC_ARG_WITH(
    3131  malloc,
    32   [ --with-malloc=system|dlmalloc|gmalloc|pmalloc|external
     32  [ --with-malloc=system|external
    3333                    which malloc to use, default: malloc ])
    3434AC_ARG_WITH(
     
    248248  AC_DEFINE(OMALLOC_USES_MALLOC,1,the system allocator is called malloc)
    249249  AC_DEFINE(OMALLOC_USES_SYSTEM_MALLOC,1,use system malloc as system allocator)
    250 elif test "${with_malloc}" = gmalloc; then
    251   AC_DEFINE(OMALLOC_USES_GMALLOC,1,use gmalloc as system allocator)
    252   OM_MALLOC_HEADER=gmalloc.h
    253   OM_MALLOC_SOURCE=gmalloc.c
    254 elif test "${with_malloc}" = pmalloc; then
    255   AC_DEFINE(OMALLOC_USES_PMALLOC,1,use pmalloc as system allocator)
    256   OM_MALLOC_HEADER=pmalloc.h
    257   OM_MALLOC_SOURCE=pmalloc.c
    258250elif test "${with_malloc}" = external; then
    259251  if test "${with_external_malloc_h+set}" != set; then
     
    264256  OM_MALLOC_SOURCE=$with_external_malloc_c
    265257  AC_DEFINE(OMALLOC_USES_MALLOC,1,the system allocator is called malloc)
    266 elif test "${with_malloc}" = dlmalloc; then
    267   with_malloc=dlmalloc
    268   AC_DEFINE(OMALLOC_USES_DLMALLOC,1,use dlmalloc as system allocator)
    269   OM_MALLOC_HEADER=dlmalloc.h
    270   OM_MALLOC_SOURCE=dlmalloc.c
    271258else    ## default
    272259  OM_MALLOC_HEADER=omMallocSystem.h
Note: See TracChangeset for help on using the changeset viewer.