716c54829c
Contains the following security related fixes: - Race condition possibility; CWE-362: Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition'):36c8eae890
- Fix realloc error handling:430043842e
Update hash of COPYING and remove MIT from licenses because sd-daemon files were removed:0984e0f4a0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# pcsc-lite
|
|
#
|
|
################################################################################
|
|
|
|
PCSC_LITE_VERSION = 1.8.25
|
|
PCSC_LITE_SOURCE = pcsc-lite-$(PCSC_LITE_VERSION).tar.bz2
|
|
PCSC_LITE_SITE = https://pcsclite.apdu.fr/files
|
|
PCSC_LITE_INSTALL_STAGING = YES
|
|
PCSC_LITE_DEPENDENCIES = host-pkgconf
|
|
PCSC_LITE_LICENSE = BSD-2-Clause (auth), BSD-3-Clause, GPL-3.0+ (demo, spy, tests), ISC (simclist)
|
|
PCSC_LITE_LICENSE_FILES = COPYING GPL-3.0.txt
|
|
PCSC_LITE_AUTORECONF = YES
|
|
|
|
# - libudev and libusb are optional
|
|
# - libudev and libusb can't be used together
|
|
# - libudev has a priority over libusb
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
PCSC_LITE_CONF_OPTS += --enable-libudev --disable-libusb
|
|
PCSC_LITE_DEPENDENCIES += udev
|
|
else
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
PCSC_LITE_CONF_OPTS += --enable-libusb --disable-libudev
|
|
PCSC_LITE_DEPENDENCIES += libusb
|
|
else
|
|
PCSC_LITE_CONF_OPTS += --disable-libusb --disable-libudev
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
PCSC_LITE_CONF_OPTS += --enable-libsystemd
|
|
PCSC_LITE_DEPENDENCIES += systemd
|
|
else
|
|
PCSC_LITE_CONF_OPTS += --disable-libsystemd
|
|
endif
|
|
|
|
ifeq ($(PACKAGE_PCSC_LITE_DEBUGATR),y)
|
|
PCSC_LITE_CONF_OPTS += --enable-debugatr
|
|
endif
|
|
|
|
ifeq ($(PACKAGE_PCSC_LITE_EMBEDDED),y)
|
|
PCSC_LITE_CONF_OPTS += --enable-embedded
|
|
endif
|
|
|
|
define PCSC_LITE_INSTALL_INIT_SYSTEMD
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/sockets.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/pcscd.socket \
|
|
$(TARGET_DIR)/etc/systemd/system/sockets.target.wants/pcscd.socket
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|