mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
https://github.com/memcached/memcached/wiki/ReleaseNotes1644 > Hot on the heels of the last security release is... > another security release https://github.com/memcached/memcached/wiki/ReleaseNotes1645 > So this is a lot of crash and security bugs. Signed-off-by: Franciszek Stachura <fbstachura@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
35 lines
931 B
Makefile
35 lines
931 B
Makefile
################################################################################
|
|
#
|
|
# memcached
|
|
#
|
|
################################################################################
|
|
|
|
MEMCACHED_VERSION = 1.6.45
|
|
MEMCACHED_SITE = http://www.memcached.org/files
|
|
MEMCACHED_DEPENDENCIES = libevent
|
|
MEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
|
MEMCACHED_CONF_OPTS = --disable-coverage --disable-werror
|
|
MEMCACHED_LICENSE = BSD-3-Clause
|
|
MEMCACHED_LICENSE_FILES = COPYING
|
|
MEMCACHED_CPE_ID_VENDOR = memcached
|
|
MEMCACHED_SELINUX_MODULES = memcached
|
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
MEMCACHED_CONF_ENV += ac_cv_c_endian=big
|
|
else
|
|
MEMCACHED_CONF_ENV += ac_cv_c_endian=little
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
MEMCACHED_CONF_OPTS += --enable-tls
|
|
MEMCACHED_DEPENDENCIES += host-pkgconf openssl
|
|
else
|
|
MEMCACHED_CONF_OPTS += --disable-tls
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
MEMCACHED_CONF_OPTS += --disable-static
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|