c7ca04fcb4
When BR2_SHARED_STATIC_LIBS is enabled, both --enable-static and --enable-shared are passed to configure. memcached configure.ac only looks for --enable-static to make the build static. But when linking against openssl pkg-config only returns dynamic linking dependencies, resulting in the following build failure: /home/thomas/autobuild/instance-1/output-1/host/bin/aarch64_be-buildroot-linux-gnu-gcc -std=gnu99 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -D_FORTIFY_SOURCE=2 -pthread -Wall -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -static -o timedrun timedrun.o -levent -L/home/thomas/autobuild/instance-1/output-1/host/bin/../aarch64_be-buildroot-linux-gnu/sysroot/usr/lib -lssl -lcrypto -ldl /home/thomas/autobuild/instance-1/output-1/host/lib/gcc/aarch64_be-buildroot-linux-gnu/11.3.0/../../../../aarch64_be-buildroot-linux-gnu/bin/ld: memcached-memcached.o: in function `conn_new': memcached.c:(.text+0x1668): undefined reference to `SSL_set_info_callback' BR2_SHARED_STATIC_LIBS only makes sense for libraries, not executable binaries. Pass --disable-static unless BR2_STATIC_LIBS is enabled for static only build. Fixes: - http://autobuild.buildroot.org/results/363c84eaa69350e02bec0b35b88d4bdf4dad804c - http://autobuild.buildroot.org/results/0bde41bb700100d8df5ebdb1b64dfdc76c7af475 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
988 B
Makefile
37 lines
988 B
Makefile
################################################################################
|
|
#
|
|
# memcached
|
|
#
|
|
################################################################################
|
|
|
|
MEMCACHED_VERSION = 1.6.16
|
|
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
|
|
# We're patching configure.ac
|
|
MEMCACHED_AUTORECONF = YES
|
|
|
|
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))
|