Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
5597ddc3
Commit
5597ddc3
authored
Aug 03, 2018
by
Nick Mathewson
🥄
Browse files
Mark openbsd-malloc as deprecated
parent
bb1f2942
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket20424
View file @
5597ddc3
o Minor features (compilation):
- Tor's configure script now supports a --with-malloc= option to select
your malloc implementation. Supported options are "tcmalloc",
"jemalloc", "openbsd", and "system" (the default).
Addresses part of
ticket 20424. Based on a patch from Alex Xu.
"jemalloc", "openbsd"
(deprecated)
, and "system" (the default).
Addresses part of
ticket 20424. Based on a patch from Alex Xu.
configure.ac
View file @
5597ddc3
...
...
@@ -22,7 +22,7 @@ AC_CANONICAL_HOST
PKG_PROG_PKG_CONFIG
AC_ARG_ENABLE(openbsd-malloc,
AS_HELP_STRING(--enable-openbsd-malloc, [use malloc code from OpenBSD. Linux only]))
AS_HELP_STRING(--enable-openbsd-malloc, [use malloc code from OpenBSD. Linux only
. Deprecated: see --with-malloc
]))
AC_ARG_ENABLE(static-openssl,
AS_HELP_STRING(--enable-static-openssl, [link against a static openssl library. Requires --with-openssl-dir]))
AC_ARG_ENABLE(static-libevent,
...
...
@@ -1788,7 +1788,7 @@ if test "$tor_cv_uint8_uchar" = "no"; then
fi
AC_ARG_WITH(tcmalloc,
AS_HELP_STRING(--with-tcmalloc, [use tcmalloc memory allocation library]),
AS_HELP_STRING(--with-tcmalloc, [use tcmalloc memory allocation library
. Deprecated; see --with-malloc
]),
[ tcmalloc=yes ], [ tcmalloc=no ])
default_malloc=system
...
...
@@ -1839,6 +1839,7 @@ AS_CASE([$malloc],
],
[openbsd], [
AC_WARN([The openbsd malloc port is deprecated in Tor 0.3.5 and will be removed in a future version.])
enable_openbsd_malloc=yes
],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment