aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
785 B
Makefile
24 lines
785 B
Makefile
################################################################################
|
|
#
|
|
# rdesktop
|
|
#
|
|
################################################################################
|
|
|
|
RDESKTOP_VERSION = 1.8.2
|
|
RDESKTOP_SITE = http://downloads.sourceforge.net/project/rdesktop/rdesktop/$(RDESKTOP_VERSION)
|
|
RDESKTOP_DEPENDENCIES = host-pkgconf openssl xlib_libX11 xlib_libXt \
|
|
$(if $(BR2_PACKAGE_ALSA_LIB_PCM),alsa-lib) \
|
|
$(if $(BR2_PACKAGE_LIBAO),libao) \
|
|
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate)
|
|
RDESKTOP_CONF_OPTS = --with-openssl=$(STAGING_DIR)/usr --disable-credssp
|
|
RDESKTOP_LICENSE = GPLv3+
|
|
RDESKTOP_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_PCSC_LITE),y)
|
|
RDESKTOP_DEPENDENCIES += pcsc-lite
|
|
else
|
|
RDESKTOP_CONF_OPTS += --disable-smartcard
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|