94b3a7ec73
Small security related release. A remote crash is possible if UDP is enabled. The remediation is to upgrade or disable UDP. The crash was introduced in the 1.6 series. https://github.com/memcached/memcached/wiki/ReleaseNotes168 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
601 B
Makefile
22 lines
601 B
Makefile
################################################################################
|
|
#
|
|
# memcached
|
|
#
|
|
################################################################################
|
|
|
|
MEMCACHED_VERSION = 1.6.8
|
|
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
|
|
MEMCACHED_LICENSE = BSD-3-Clause
|
|
MEMCACHED_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
MEMCACHED_CONF_ENV += ac_cv_c_endian=big
|
|
else
|
|
MEMCACHED_CONF_ENV += ac_cv_c_endian=little
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|