b9fcc83fbe
These compiler options shouldn't be used when linking statically, and in particular FLAT binaries cannot use -fPIE and -pie code, so let's teach libmemcached to not use such flags in those setups. Fixes: http://autobuild.buildroot.org/results/8cb/8cbf57f9136cb42be31c88e0f1f32d3d2353e5ff/ and many previous similar build failures [Peter: rework/reword to do this based on BR2_STATIC_LIBS] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@openwide.fr> Tested-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# libmemcached
|
|
#
|
|
################################################################################
|
|
|
|
LIBMEMCACHED_VERSION_MAJOR = 1.0
|
|
LIBMEMCACHED_VERSION = $(LIBMEMCACHED_VERSION_MAJOR).18
|
|
LIBMEMCACHED_SITE = http://launchpad.net/libmemcached/$(LIBMEMCACHED_VERSION_MAJOR)/$(LIBMEMCACHED_VERSION)/+download
|
|
LIBMEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' \
|
|
ax_cv_check_cflags__Werror__fmudflapth=no \
|
|
ax_cv_check_cxxflags__Werror__fmudflapth=no
|
|
LIBMEMCACHED_CONF_OPTS = --disable-dtrace
|
|
LIBMEMCACHED_INSTALL_STAGING = YES
|
|
LIBMEMCACHED_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBEVENT),libevent)
|
|
# For 0001-disable-tests.patch and 0002-disable-sanitizer.patch
|
|
LIBMEMCACHED_AUTORECONF = YES
|
|
LIBMEMCACHED_LICENSE = BSD-3c
|
|
LIBMEMCACHED_LICENSE_FILES = COPYING
|
|
|
|
# Help libmemcached to understand that -fPIE and -pie should not be
|
|
# used when linking statically.
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBMEMCACHED_CONF_ENV += \
|
|
ax_cv_check_cflags__Werror__fPIE=no \
|
|
ax_cv_check_cflags__Werror__pie=no \
|
|
ax_cv_check_cxxflags__Werror__fPIE=no \
|
|
ax_cv_check_cxxflags__Werror__pie=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|