mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Release notes from https://github.com/libts/tslib/releases : This release includes libts version 0.10.5 and the following changes: * improved release procedure * debug fixes for 32bit systems * CMake and autoconf updates for newer versions * fixes for minor cppcheck errors * ts_conf test program fixes Signed-off-by: Martin Kepplinger-Novaković <martink@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
1013 B
Makefile
37 lines
1013 B
Makefile
################################################################################
|
|
#
|
|
# tslib
|
|
#
|
|
################################################################################
|
|
|
|
TSLIB_VERSION = 1.24
|
|
TSLIB_SITE = https://github.com/libts/tslib/releases/download/$(TSLIB_VERSION)
|
|
TSLIB_SOURCE = tslib-$(TSLIB_VERSION).tar.xz
|
|
TSLIB_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (libraries)
|
|
TSLIB_LICENSE_FILES = COPYING
|
|
|
|
TSLIB_INSTALL_STAGING = YES
|
|
TSLIB_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6),)
|
|
TSLIB_CONF_OPTS += --disable-tools
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
TSLIB_CONF_OPTS += \
|
|
--enable-input=static \
|
|
--enable-linear=static \
|
|
--enable-median=static \
|
|
--enable-pthres=static \
|
|
--enable-iir=static \
|
|
--enable-dejitter=static \
|
|
--enable-debounce=static \
|
|
--enable-skip=static \
|
|
--enable-lowpass=static \
|
|
--enable-invert=static \
|
|
--enable-evthres=static \
|
|
--enable-crop=static
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|