aboutsummaryrefslogtreecommitdiff
path: root/utils/mtools
Commit message (Collapse)AuthorAge
* mtools: update to version 4.0.43Oskari Rauta2023-06-11
| | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* 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>
* mtools: avoid picking libbsd dependencyEneas U de Queiroz2022-05-02
| | | | | | | | | | Even though commit 96ec989ed ("mtools: update to 4.0.39") correctly dropped libbsd dependency, the package's configure script will still link to it if the library is found. Tell configure not to look for it by setting ac_cv_lib_bsd_main=no. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* mtools: update to 4.0.39Guilherme Janczak2022-04-28
| | | | | | This update happens to drop the libbsd dependency. Signed-off-by: Guilherme Janczak <guilherme.janczak@yandex.com>
* mtools: bump to 4.0.35Stijn Tintel2021-08-15
| | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* mtools: fix host lib leakageStijn Tintel2021-08-15
| | | | | | | | | | | | The package does not build due to host lib leakage, as evidenced by config.log: X_CFLAGS=' -I/usr/include' X_LIBS=' -L/usr/lib' Fix this by disabling X with a configure var. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* mtools: add new packageOskari Rauta2021-04-21
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>