samba4: bump to version 4.4.9
[buildroot-gz.git] / package / duma / Config.in
blobb1f55faa73025916634e652cf04eb77512cf789c
1 config BR2_PACKAGE_DUMA
2         bool "duma"
3         depends on BR2_INSTALL_LIBSTDCPP
4         depends on BR2_TOOLCHAIN_HAS_THREADS
5         # By design, duma uses page mapping to isolate
6         # allocations. Non-MMU platforms cannot perform such
7         # things.
8         depends on BR2_USE_MMU
9         # duma works using LD_PRELOAD, so it always needs to build a
10         # shared library
11         depends on !BR2_STATIC_LIBS
12         help
13           D.U.M.A. - Detect Unintended Memory Access. A fork of the
14           Electric Fence library. Detects buffer overflow and
15           underflow, and also memory leaks.
17           http://duma.sourceforge.net
19 if BR2_PACKAGE_DUMA
21 config BR2_PACKAGE_DUMA_NO_LEAKDETECTION
22         bool "disable memory leak detection"
24 endif # BR2_PACKAGE_DUMA
26 comment "duma needs a toolchain w/ C++, threads, dynamic library"
27         depends on BR2_USE_MMU
28         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
29                 BR2_STATIC_LIBS