diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-18 17:28:50 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-18 17:28:50 +0000 |
commit | c67bd8048781aac8ba8c6e55d4e5af393fd3b024 (patch) | |
tree | 9c9d8228c3d27818fd4f27274421b9bf0c0c128d /configure.in | |
parent | c3e4b12e7f0cc123114d60222c1cb4a47a85551f (diff) | |
download | tor-c67bd8048781aac8ba8c6e55d4e5af393fd3b024.tar.gz tor-c67bd8048781aac8ba8c6e55d4e5af393fd3b024.zip |
Make cell pools always-on.
svn:r17692
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.in b/configure.in index c30b7d1d57..5fdb2050b9 100644 --- a/configure.in +++ b/configure.in @@ -36,8 +36,6 @@ AC_ARG_ENABLE(iphone, fi]) #XXXX020 We should make these enabled or not, before 0.2.0.x-final -AC_ARG_ENABLE(cell-pool, - AS_HELP_STRING(--disable-cell-pool, disable pool allocator for cells)) AC_ARG_ENABLE(buf-freelists, AS_HELP_STRING(--disable-buf-freelists, disable freelists for buffer RAM)) AC_ARG_ENABLE(openbsd-malloc, @@ -45,11 +43,6 @@ AC_ARG_ENABLE(openbsd-malloc, AC_ARG_ENABLE(instrument-downloads, AS_HELP_STRING(--enable-instrument-downloads, Instrument downloads of directory resources etc.)) - -if test x$enable_cell_pool != xno; then - AC_DEFINE(ENABLE_CELL_POOL, 1, - [Defined if we try to use the pool allocator for queued cells]) -fi if test x$enable_buf_freelists != xno; then AC_DEFINE(ENABLE_BUF_FREELISTS, 1, [Defined if we try to use freelists for buffer RAM chunks]) |