2014-07-17 23:20:13 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# memcached
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2019-10-13 20:22:31 +02:00
|
|
|
MEMCACHED_VERSION = 1.5.19
|
2014-07-17 23:20:13 +02:00
|
|
|
MEMCACHED_SITE = http://www.memcached.org/files
|
|
|
|
MEMCACHED_DEPENDENCIES = libevent
|
|
|
|
MEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
2014-10-18 20:20:13 +02:00
|
|
|
MEMCACHED_CONF_OPTS = --disable-coverage
|
2017-03-30 15:43:38 +02:00
|
|
|
MEMCACHED_LICENSE = BSD-3-Clause
|
2014-07-17 23:20:13 +02:00
|
|
|
MEMCACHED_LICENSE_FILES = COPYING
|
2019-10-13 20:22:31 +02:00
|
|
|
# 0001-configure-Fix-cross-compilation-errors.patch
|
|
|
|
# 0002-configure-Simplify-pointer-size-check.patch
|
|
|
|
MEMCACHED_AUTORECONF = YES
|
2014-07-17 23:20:13 +02:00
|
|
|
|
|
|
|
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))
|