update buildroot to 2017.02.11
This commit is contained in:
15
bsp/buildroot-2017.02.11/package/memcached/Config.in
Normal file
15
bsp/buildroot-2017.02.11/package/memcached/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_MEMCACHED
|
||||
bool "memcached"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_LIBEVENT
|
||||
help
|
||||
Memcached is an in-memory key-value store for small chunks
|
||||
of arbitrary data (strings, objects) from results of database calls,
|
||||
API calls, or page rendering.
|
||||
|
||||
http://www.memcached.org/
|
||||
|
||||
comment "memcached needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU
|
||||
@@ -0,0 +1,4 @@
|
||||
# From http://www.memcached.org/files/memcached-1.4.36.tar.gz.sha1
|
||||
sha1 519b417515206b0b95ff9bf14106a891f6a2252e memcached-1.4.36.tar.gz
|
||||
# Calculated based on the hash above
|
||||
sha256 773b6bb20bf80223ca6a15d75f570fbab346ad11ec98595e5af5e33f54bd82d8 memcached-1.4.36.tar.gz
|
||||
21
bsp/buildroot-2017.02.11/package/memcached/memcached.mk
Normal file
21
bsp/buildroot-2017.02.11/package/memcached/memcached.mk
Normal file
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# memcached
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MEMCACHED_VERSION = 1.4.36
|
||||
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-3c
|
||||
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))
|
||||
Reference in New Issue
Block a user