9962fea889
Currently, we forcibly tell neon's configure where to look for libexpat. This means that neon does not search for it, and consequently forgets to add -lexpat as its Libs.Private in its .pc file. As thus, a static link against neon forgets to pull in -lexpat (it works for a dynamic link because libneon has a NEEDED on libexpat). The reason for specifying the explicit path in this case is lost to history; neon's configure can correctly find libexpat nowadays. Fixes: http://autobuild.buildroot.org/results/884/884746351fc47f4ad19fb3fda7c5e0ee85fcff15/ http://autobuild.buildroot.org/results/0c5/0c584522c26640e29980150a87a5b5d8c02e5f8b/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# neon
|
|
#
|
|
################################################################################
|
|
|
|
NEON_VERSION = 0.30.0
|
|
NEON_SITE = http://www.webdav.org/neon
|
|
NEON_LICENSE = LGPLv2+ (library), GPLv2+ (manual and tests)
|
|
NEON_LICENSE_FILES = src/COPYING.LIB test/COPYING README
|
|
NEON_INSTALL_STAGING = YES
|
|
NEON_CONF_OPTS = --without-gssapi --disable-rpath
|
|
NEON_CONFIG_SCRIPTS = neon-config
|
|
NEON_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_NEON_ZLIB),y)
|
|
NEON_CONF_OPTS += --with-zlib=$(STAGING_DIR)
|
|
NEON_DEPENDENCIES += zlib
|
|
else
|
|
NEON_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NEON_SSL),y)
|
|
NEON_CONF_OPTS += --with-ssl
|
|
NEON_DEPENDENCIES += openssl
|
|
else
|
|
NEON_CONF_OPTS += --without-ssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NEON_EXPAT),y)
|
|
NEON_CONF_OPTS += --with-expat=yes
|
|
NEON_DEPENDENCIES += expat
|
|
else
|
|
NEON_CONF_OPTS += --with-expat=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NEON_LIBXML2),y)
|
|
NEON_CONF_OPTS += --with-libxml2=yes
|
|
NEON_CONF_ENV += ac_cv_prog_XML2_CONFIG=$(STAGING_DIR)/usr/bin/xml2-config
|
|
NEON_DEPENDENCIES += libxml2
|
|
else
|
|
NEON_CONF_OPTS += --with-libxml2=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NEON_EXPAT)$(BR2_PACKAGE_NEON_LIBXML2),)
|
|
# webdav needs xml support
|
|
NEON_CONF_OPTS += --disable-webdav
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|