| 149 |
|
|
| 150 |
|
|
| 151 |
|
AC_DEFINE([NICKNAMEHISTORYLENGTH], 16384, [Size of the WHOWAS array.]) |
| 152 |
< |
AC_DEFINE([CHANNEL_HEAP_SIZE], 1024, [Size of the channel heap.]) |
| 153 |
< |
AC_DEFINE([BAN_HEAP_SIZE], 1024, [Size of the ban heap.]) |
| 154 |
< |
AC_DEFINE([CLIENT_HEAP_SIZE], 1024, [Size of the client heap.]) |
| 155 |
< |
AC_DEFINE([LCLIENT_HEAP_SIZE], 512, [Size of the local client heap.]) |
| 156 |
< |
AC_DEFINE([DNODE_HEAP_SIZE], 1024, [Size of the dlink_node heap.]) |
| 157 |
< |
AC_DEFINE([DBUF_HEAP_SIZE], 512, [Size of the dbuf heap.]) |
| 158 |
< |
AC_DEFINE([AUTH_HEAP_SIZE], 256, [Size of the auth heap.]) |
| 159 |
< |
AC_DEFINE([DNS_HEAP_SIZE], 256, [Size of the dns heap.]) |
| 160 |
< |
|
| 152 |
> |
AC_DEFINE([MP_CHUNK_SIZE_CHANNEL], 64*1024, [Size of the channel mempool chunk.]) |
| 153 |
> |
AC_DEFINE([MP_CHUNK_SIZE_MEMBER], 32*1024, [Size of the channel mempool chunk.]) |
| 154 |
> |
AC_DEFINE([MP_CHUNK_SIZE_BAN], 16*1024, [Size of the ban mempool chunk.]) |
| 155 |
> |
AC_DEFINE([MP_CHUNK_SIZE_CLIENT], 256*1024, [Size of the client mempool chunk.]) |
| 156 |
> |
AC_DEFINE([MP_CHUNK_SIZE_LCLIENT], 128*1024, [Size of the local client mempool chunk.]) |
| 157 |
> |
AC_DEFINE([MP_CHUNK_SIZE_DNODE], 8*1024, [Size of the dlink_node mempool chunk.]) |
| 158 |
> |
AC_DEFINE([MP_CHUNK_SIZE_DBUF], 512*1024, [Size of the dbuf mempool chunk.]) |
| 159 |
> |
AC_DEFINE([MP_CHUNK_SIZE_AUTH], 32*1024, [Size of the auth mempool chunk.]) |
| 160 |
> |
AC_DEFINE([MP_CHUNK_SIZE_DNS], 16*1024, [Size of the dns mempool chunk.]) |
| 161 |
> |
AC_DEFINE([MP_CHUNK_SIZE_WATCH], 4*1024, [Size of the watch mempool chunk.]) |
| 162 |
|
|
| 163 |
|
# Argument processing. |
| 164 |
|
AX_ARG_ENABLE_IOLOOP_MECHANISM |