| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- ################################################################################
- #
- # libxmlrpc
- #
- ################################################################################
- # 1.67.00 (code/advanced@r3335)
- LIBXMLRPC_VERSION = r3335
- LIBXMLRPC_SITE = https://svn.code.sf.net/p/xmlrpc-c/code/advanced
- LIBXMLRPC_SITE_METHOD = svn
- LIBXMLRPC_LICENSE = BSD-3-Clause (xml-rpc main code and abyss web server), BSD like (lib/expat), Python 1.5.2 license (parts of xmlrpc_base64.c)
- LIBXMLRPC_LICENSE_FILES = doc/COPYING
- LIBXMLRPC_INSTALL_STAGING = YES
- LIBXMLRPC_DEPENDENCIES = libcurl host-autoconf
- LIBXMLRPC_CONFIG_SCRIPTS = xmlrpc-c-config
- LIBXMLRPC_MAKE = $(MAKE1)
- # Using autoconf, not automake, so we cannot use AUTORECONF = YES.
- define LIBXMLRPC_RUN_AUTOCONF
- cd $(@D); $(AUTOCONF)
- endef
- LIBXMLRPC_PRE_CONFIGURE_HOOKS += LIBXMLRPC_RUN_AUTOCONF
- LIBXMLRPC_CONF_OPTS = \
- $(if $(BR2_USE_WCHAR),,ac_cv_header_wchar_h=no) \
- $(if $(BR2_INSTALL_LIBSTDCPP),,--disable-cplusplus) \
- have_curl_config=$(STAGING_DIR)/usr/bin/curl-config \
- CURL_CONFIG=$(STAGING_DIR)/usr/bin/curl-config
- # Our package uses autoconf, but not automake, so we need to pass
- # those variables at compile time as well.
- LIBXMLRPC_MAKE_OPTS = \
- CC_FOR_BUILD="$(HOSTCC)" \
- LD_FOR_BUILD="$(HOSTLD)" \
- CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
- LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)"
- ifeq ($(BR2_STATIC_LIBS),y)
- LIBXMLRPC_STATIC_OPTS = SHARED_LIB_TYPE=NONE MUST_BUILD_SHLIB=N
- endif
- ifeq ($(BR2_PACKAGE_OPENSSL),y)
- LIBXMLRPC_DEPENDENCIES += host-pkgconf openssl
- LIBXMLRPC_CONF_OPTS += --enable-abyss-openssl
- else
- LIBXMLRPC_CONF_OPTS += --disable-abyss-openssl
- endif
- ifeq ($(BR2_PACKAGE_LIBXML2),y)
- LIBXMLRPC_DEPENDENCIES += libxml2
- else
- LIBXMLRPC_CONF_OPTS += --disable-libxml2-backend
- endif
- LIBXMLRPC_MAKE_OPTS += $(LIBXMLRPC_STATIC_OPTS)
- LIBXMLRPC_INSTALL_STAGING_OPTS = $(LIBXMLRPC_STATIC_OPTS) \
- DESTDIR=$(STAGING_DIR) install
- LIBXMLRPC_INSTALL_TARGET_OPTS = $(LIBXMLRPC_STATIC_OPTS) \
- DESTDIR=$(TARGET_DIR) install
- ifeq ($(BR2_PACKAGE_LIBXMLRPC_TOOLS_XMLRPC),y)
- define LIBXMLRPC_TOOLS_XMLRPC_BUILD_CMDS
- $(TARGET_MAKE_ENV) $(MAKE) $(LIBXMLRPC_MAKE_OPTS) -C $(@D)/tools/xmlrpc
- endef
- LIBXMLRPC_POST_BUILD_HOOKS += LIBXMLRPC_TOOLS_XMLRPC_BUILD_CMDS
- define LIBXMLRPC_TOOLS_XMLRPC_INSTALL_TARGET_CMDS
- $(TARGET_MAKE_ENV) $(MAKE) $(LIBXMLRPC_MAKE_OPTS) -C $(@D)/tools/xmlrpc \
- DESTDIR=$(TARGET_DIR) install
- endef
- LIBXMLRPC_POST_INSTALL_TARGET_HOOKS += LIBXMLRPC_TOOLS_XMLRPC_INSTALL_TARGET_CMDS
- endif
- $(eval $(autotools-package))
|