aboutsummaryrefslogtreecommitdiff
path: root/libs/libseccomp/Makefile
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16Andre Heider2023-04-08
| | | | | | | See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with PKG_BUILD_FLAGS:=no-mips16" on the main repository. Signed-off-by: Andre Heider <a.heider@gmail.com>
* libseccomp: update to 2.5.4Rosen Penev2022-11-05
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libseccomp: update to 2.5.2Rosen Penev2021-09-26
| | | | | | | | Use AUTORELEASE for simplicity. Add libtool patch to fix compilation under some platforms. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Revert "libseccomp: don't build on ARC"Eneas U de Queiroz2021-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit b29e609701987072fbd991a9ffc203103f99b943. Adding DEPENDS+=@!arc will cause a circular dependency, because some packages select libseccomp based on a build option. Commit e29483d7e ("libseccomp: workaround a recursive dependency") added a workaround that was not properly documented, so I'll explain here. The problem arises when libseccomp is selected depending on some config option: define Pakcage/foo DEPENDS=+FOO_SECCOMP:libseccomp Even if the condition is correctly defined, excluding arc, such as: define Package/foo/config config FOO_SECCOMP depends on !arc the config generator will parse libseccomp's DEPENDS variable and generate menuconfig statements like these: config PACKAGE_foo select PACKAGE_libseccomp if FOO_SECCOMP depends on !FOO_SECCOMP || !arc The last condition is always true because FOO_SECCOMP will always be be false when arc is true. The config generator is not able to simplify/optimize the condition. The circular dependecy occurs because FOO_SECCOMP depends on PACKAGE_foo, and the redundant, always true line will make PACKAGE_foo depend on FOO_SECCOMP. As a workaround, we can add the 'depends on !arc' line to Package/libseccomp/config, outside of the DEPENDS variable, so that the redundant depends line line does not get generated. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com> Cc: Daniel Golle <daniel@makrotopia.org>
* libseccomp: don't build on ARCDaniel Golle2021-03-30
| | | | | | ARC architecture is not yet supported by libseccomp. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* libseccomp: update to 2.5.1Rosen Penev2020-11-23
| | | | | | Add license information. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libseccomp: update to 2.4.3Rosen Penev2020-07-15
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libseccomp: install missing header fileStijn Tintel2020-01-17
| | | | | | | | | As of version 2.4.2, libseccomp ships a new header file seccomp-syscalls.h. Install it in InstallDev. Fixes: 71b663b335da ("libseccomp: update to version 2.4.2") Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be> Acked-by: Rosen Penev <rosenp@gmail.com>
* libseccomp: update to version 2.4.2Josef Schlehofer2020-01-12
| | | | Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* treewide: add PKG_CPE_ID for cvescannerJan Pavlinec2019-09-24
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* libseccomp: workaround a recursive dependencyEneas U de Queiroz2019-05-15
| | | | | | | | DEPENDS:=@!arc is causing a recursive dependency because of the optional selection of libseccomp by util/lxc. The workaround hides the package in Package/libseccomp/config instead. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* libseccomp: update to version 2.4.1Jan Pavlinec2019-05-14
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* libseccomp: update to version 2.4.0Jan Pavlinec2019-03-15
| | | | | | | Changes: add scmp_sys_resolver utility for syscall resolving Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* libseccomp: Update to 2.3.3Rosen Penev2018-09-08
| | | | | | | | | | Added PKG_BUILD_PARALLEL for faster compilation. Removed PKG_FORMAT_SECURITY as it's not needed to be disabled anymore. Removed patch as musl has been updated. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* libseccomp: updated to 2.2.1Nikos Mavrogiannopoulos2015-05-17
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* removed Build/Configure partNikos Mavrogiannopoulos2015-03-12
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* seccomp: depends on CONFIG_KERNEL_SECCOMPNikos Mavrogiannopoulos2015-03-12
| | | | | | Resolves #935 Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* libseccomp: remove legacy cruftNikos Mavrogiannopoulos2015-02-27
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* libseccomp: added packageNikos Mavrogiannopoulos2015-02-14
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>