aboutsummaryrefslogtreecommitdiff
path: root/libs/log4cplus
Commit message (Collapse)AuthorAge
* log4cplus: update to 2.1.1Rosen Penev2024-02-14
| | | | Signed-off-by: Rosen Penev <rosenp@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>
* treewide: refactor to use PKG_BUILD_FLAGS:=ltoAndre Heider2023-04-08
| | | | | | | | | | See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by: Andre Heider <a.heider@gmail.com>
* log4cplus: update to 2.0.8Rosen Penev2022-11-05
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* lib4cplus: update to 2.0.7Rosen Penev2021-10-28
| | | | | | Switch to static lib. Avoids rpath hacks. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: update to 2.0.6Rosen Penev2021-03-20
| | | | | | | | Switch to AUTORELEASE for simplicity. Switch to building with Ninja for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: apply cmake options to the hostRosen Penev2020-07-25
| | | | | | | loggingserver was getting built with a bad link path. Instead of fixing it, just disable it as is done on the target. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: update to 2.0.5Rosen Penev2020-02-23
| | | | | | Remove CMake option made obsolete by cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: install host libraries into libEneas U de Queiroz2019-08-14
| | | | | | | Default host build for the package uses lib64, but dependents expect libraries to be in $(STAGING_DIR_HOSTPKG)/lib. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* log4cplus: Build in parallelRosen Penev2019-06-28
| | | | | | Added PKG/HOST_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: Update to 2.0.4Rosen Penev2019-06-05
| | | | | | | | | | Switch to SourceForge URL. More mirrors available. Remove InstallDev section. This is already included with CMAKE_INSTALL. Minor cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Replace PKG_LICENSE_FILE with PKG_LICENSE_FILESRosen Penev2019-04-30
| | | | | | | The latter is actually what is used by the build system. Increased PKG_RELEASE for all packages as this changes the ipk. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* log4cplus: add new packageBangLang Huang2019-04-01
log4cplus is a simple to use C++11 logging API providing thread--safe, flexible, and arbitrarily granular control over log management and configuration. It is modeled after the Java log4j API. wiki: https://sourceforge.net/p/log4cplus/wiki/Home/ github: https://github.com/log4cplus/log4cplus Signed-off-by: BangLang Huang <banglang.huang@foxmail.com>