kumquat-buildroot/package/gloox/gloox.mk
Yair Ben-Avraham 626be1a418 package/gloox: new package
gloox is a rock-solid, full-featured Jabber/XMPP client library,
written in clean ANSI C++. It makes writing spec-compliant clients
easy and allows for hassle-free integration of Jabber/XMPP
functionality into existing applications. gloox is released under the
GNU GPLv3. Commercial licensing and support are available.

Signed-off-by: Yair Ben Avraham <yairba@protonmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-05-28 22:26:31 +02:00

46 lines
1.1 KiB
Makefile

################################################################################
#
# gloox
#
################################################################################
GLOOX_VERSION = 1.0.23
GLOOX_SOURCE = gloox-$(GLOOX_VERSION).tar.bz2
GLOOX_SITE = https://camaya.net/download
GLOOX_LICENSE = GPL-3.0 with OpenSSL exception
GLOOX_LICENSE_FILES = LICENSE
GLOOX_INSTALL_STAGING = YES
GLOOX_DEPENDENCIES = mpc
GLOOX_CONF_OPTS = \
--without-libidn \
--enable-getaddrinfo
GLOOX_CXXFLAGS = $(TARGET_CXXFLAGS)
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
GLOOX_CXXFLAGS += -O0
endif
GLOOX_CONF_ENV += CXXFLAGS="$(GLOOX_CXXFLAGS)"
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
GLOOX_CONF_ENV += LIBS=-latomic
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
GLOOX_CONF_OPTS += --with-zlib
GLOOX_DEPENDENCIES += zlib
else
GLOOX_CONF_OPTS += --without-zlib
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
GLOOX_CONF_OPTS += --with-openssl --without-gnutls
GLOOX_DEPENDENCIES += openssl
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
GLOOX_CONF_OPTS += --with-gnutls --without-openssl
GLOOX_DEPENDENCIES += gnutls
else
GLOOX_CONF_OPTS += --without-gnutls --without-openssl
endif
$(eval $(autotools-package))