Changeset 1122b2 in git for omalloc/configure.in


Ignore:
Timestamp:
Mar 20, 2009, 3:39:14 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
85a3423ebc096b98588fc3cb37d019fd3033d269
Parents:
2e5f59996ea62adb5223bd59681c6fe2d5fcfa86
Message:
*hannes: default: malloc=system


git-svn-id: file:///usr/local/Singular/svn/trunk@11580 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/configure.in

    r2e5f59 r1122b2  
    44dnl Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    55dnl Created: 11/99
    6 dnl Version: $Id: configure.in,v 1.16 2005-11-08 08:49:16 bricken Exp $
     6dnl Version: $Id: configure.in,v 1.17 2009-03-20 14:39:14 Singular Exp $
    77dnl lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
    88
    99AC_INIT(om_Alloc.c)
    1010
    11 VERSION=0.9.5
     11VERSION=0.9.6
    1212AC_SUBST(VERSION)
    1313
     
    2626  malloc,
    2727  [ --with-malloc=system|dlmalloc|gmalloc|pmalloc|external
    28                     which malloc to use, default: dlmalloc ])
     28                    which malloc to use, default: malloc ])
    2929AC_ARG_WITH(
    3030  external-malloc_h,
     
    259259  OM_MALLOC_SOURCE=$with_external_malloc_c
    260260  AC_DEFINE(OMALLOC_USES_MALLOC)
    261 else
     261elif test "${with_malloc}" = dlmalloc; then
    262262  with_malloc=dlmalloc
    263263  OM_MALLOC_HEADER=dlmalloc.h
    264264  OM_MALLOC_SOURCE=dlmalloc.c
     265else
     266  OM_MALLOC_HEADER=omMallocSystem.h
     267  AC_DEFINE(OMALLOC_USES_MALLOC)
     268  if test "${with_provide_malloc}" = yes || test "${with_provide_malloc}" = debug; then
     269    AC_MSG_ERROR("can not provide malloc for --with-malloc=system")
     270  fi
    265271fi
    266272AC_MSG_RESULT($with_malloc)
Note: See TracChangeset for help on using the changeset viewer.