2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-04-25 01:19:01 +02:00
|
|
|
#
|
|
|
|
# wvstreams
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-04-25 01:19:01 +02:00
|
|
|
|
|
|
|
WVSTREAMS_VERSION = 4.6.1
|
|
|
|
WVSTREAMS_SITE = http://wvstreams.googlecode.com/files
|
2013-06-19 23:54:18 +02:00
|
|
|
WVSTREAMS_DEPENDENCIES = openssl zlib host-pkgconf
|
2013-04-25 01:19:01 +02:00
|
|
|
WVSTREAMS_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
WVSTREAMS_LICENSE = LGPLv2+
|
|
|
|
WVSTREAMS_LICENSE_FILES = LICENSE
|
|
|
|
|
|
|
|
# N.B. parallel make fails
|
|
|
|
WVSTREAMS_MAKE = $(MAKE1)
|
|
|
|
|
|
|
|
# Needed to work around problem with wvassert.h
|
2014-09-27 21:32:44 +02:00
|
|
|
WVSTREAMS_CONF_OPTS += CPPFLAGS=-DNDEBUG
|
2013-04-25 01:19:01 +02:00
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
WVSTREAMS_CONF_OPTS += \
|
2013-05-09 04:28:38 +02:00
|
|
|
--with-openssl \
|
|
|
|
--with-zlib \
|
|
|
|
--without-pam \
|
2013-11-14 23:57:58 +01:00
|
|
|
--disable-warnings \
|
|
|
|
--without-tcl
|
2013-04-25 01:19:01 +02:00
|
|
|
|
2013-06-19 23:55:29 +02:00
|
|
|
# needed for openssl detection when statically linking (as ssl needs lz)
|
|
|
|
WVSTREAMS_CONF_ENV += LIBS=-lz
|
|
|
|
|
2014-12-03 22:41:29 +01:00
|
|
|
ifneq ($(BR2_STATIC_LIBS),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -fPIC"
|
2013-06-20 16:14:10 +02:00
|
|
|
endif
|
|
|
|
|
2013-04-25 01:19:01 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_DEPENDENCIES += dbus
|
|
|
|
WVSTREAMS_CONF_OPTS += --with-dbus
|
2013-04-25 01:19:01 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_CONF_OPTS += --without-dbus
|
2013-04-25 01:19:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_DEPENDENCIES += qt
|
|
|
|
WVSTREAMS_CONF_OPTS += --with-qt
|
2013-04-25 01:19:01 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_CONF_OPTS += --without-qt
|
2013-04-25 01:19:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_VALGRIND),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_DEPENDENCIES += valgrind
|
|
|
|
WVSTREAMS_CONF_OPTS += --with-valgrind
|
2013-04-25 01:19:01 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
WVSTREAMS_CONF_OPTS += --without-valgrind
|
2013-04-25 01:19:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|