diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-11-17 13:18:00 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-11-17 13:18:00 +0000 |
commit | e33efda5f89c34ef18d9d91d410b3b2a40e223c7 (patch) | |
tree | e5947b83795ad82347aa8e018dbe6ef8c7950b4d /community/monkey | |
parent | e44eed0cb3b56ed23a9b623c933129b4b9ff2770 (diff) | |
download | aports-e33efda5f89c34ef18d9d91d410b3b2a40e223c7.tar.bz2 aports-e33efda5f89c34ef18d9d91d410b3b2a40e223c7.tar.xz |
community/monkey: use system malloc
Diffstat (limited to 'community/monkey')
-rw-r--r-- | community/monkey/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/monkey/APKBUILD b/community/monkey/APKBUILD index e50c13abd3..2a9a52ef1f 100644 --- a/community/monkey/APKBUILD +++ b/community/monkey/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="Monkey is a lightweight and powerful web server" url="http://monkey-project.com" arch="all" license="Apache-2.0" -makedepends="bash cmake findutils jemalloc-dev mbedtls-dev" +makedepends="bash cmake findutils mbedtls-dev" subpackages="$pkgname-doc $pkgname-dev" source="http://monkey-project.com/releases/1.6/$pkgname-$pkgver.tar.gz" @@ -20,6 +20,7 @@ build() { --musl-mode \ --no-backtrace \ --mbedtls-shared \ + --malloc-libc \ --enable-plugins=tls,auth \ --default-user=nobody \ --prefix=/usr \ |