diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-08-26 12:04:07 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-09-02 13:45:46 +0200 |
commit | dbff4652bc09a88e931c859ab63b33e94a2c3ee3 (patch) | |
tree | c3786d63b582af3c46e5610d6ab69b8b167fc789 /configure.ac | |
parent | 55ca280f16473095380e22c574910f106b11058f (diff) |
Return free memory more aggressively.
Have free(3) call sbrk(2) when there's 4 MB to free (default on Linux
seems to be 128).
Patch by Fabian Mauchle.
Conflicts:
configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 79be2fc..f018e0b 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,8 @@ AC_CANONICAL_TARGET AM_INIT_AUTOMAKE AC_PROG_CC AC_PROG_RANLIB +AC_CHECK_FUNCS([mallopt]) + udp=yes AC_ARG_ENABLE(udp, [ --enable-udp whether to enable UDP transport: yes/no; default yes ], |