mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Changelog: - v23.6: - buildsys: Fix DEJAGNU work-around (Debian #1015089) - killall: Use kill if pidfd_send_signal fails (Debian #1015228) - fuser: Do not mention nonexistent -reset option (#42) - fuser: Use modern statn where possible - pstree: Better AppArmor support (!30) - v23.7: - Fix --disable-statx build option - fuser: Add stat() fallback, ignore EACCES errors - pstree: Fix assumption about root PID - killall: Output formatting fixes - Update gettext to 0.21 https://gitlab.com/psmisc/psmisc/-/tags/v23.6 https://gitlab.com/psmisc/psmisc/-/tags/v23.7 Signed-off-by: Shubham Chakraborty <chakrabortyshubham66@gmail.com> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
20 lines
613 B
Makefile
20 lines
613 B
Makefile
################################################################################
|
|
#
|
|
# psmisc
|
|
#
|
|
################################################################################
|
|
|
|
PSMISC_VERSION = 23.7
|
|
PSMISC_SITE = http://downloads.sourceforge.net/project/psmisc/psmisc
|
|
PSMISC_SOURCE = psmisc-$(PSMISC_VERSION).tar.xz
|
|
PSMISC_LICENSE = GPL-2.0+
|
|
PSMISC_LICENSE_FILES = COPYING
|
|
PSMISC_DEPENDENCIES = ncurses $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_SSP),)
|
|
# Don't force -fstack-protector when SSP is not available in toolchain
|
|
PSMISC_CONF_OPTS += --disable-harden-flags
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|