e7b6a32798
When xz was compiled before, links will use it as optional dependency: $ output/host/usr/bin/i586-buildroot-linux-uclibc-readelf -a output/target/usr/bin/links | grep NEEDED 0x00000001 (NEEDED) Shared library: [liblzma.so.5] 0x00000001 (NEEDED) Shared library: [libbz2.so.1.0] 0x00000001 (NEEDED) Shared library: [libz.so.1] 0x00000001 (NEEDED) Shared library: [libevent-2.0.so.5] 0x00000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# links
|
|
#
|
|
################################################################################
|
|
|
|
LINKS_VERSION = 2.12
|
|
LINKS_SOURCE = links-$(LINKS_VERSION).tar.bz2
|
|
LINKS_SITE = http://links.twibright.com/download
|
|
LINKS_DEPENDENCIES = host-pkgconf
|
|
LINKS_LICENSE = GPLv2+
|
|
LINKS_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LINKS_GRAPHICS),y)
|
|
LINKS_CONF_OPTS += --enable-graphics
|
|
LINKS_DEPENDENCIES += libpng
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXT),y)
|
|
LINKS_CONF_OPTS += --with-x
|
|
LINKS_DEPENDENCIES += xlib_libXt
|
|
else
|
|
LINKS_CONF_OPTS += --without-x
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB),y)
|
|
LINKS_CONF_ENV = ac_cv_path_DIRECTFB_CONFIG=$(STAGING_DIR)/usr/bin/directfb-config
|
|
LINKS_CONF_OPTS += --with-directfb
|
|
LINKS_DEPENDENCIES += directfb
|
|
else
|
|
LINKS_CONF_OPTS += --without-directfb
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LINKS_DEPENDENCIES += jpeg
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
LINKS_DEPENDENCIES += tiff
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
LINKS_DEPENDENCIES += bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEVENT),y)
|
|
LINKS_DEPENDENCIES += libevent
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LINKS_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XZ),y)
|
|
LINKS_DEPENDENCIES += xz
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LINKS_DEPENDENCIES += zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|