38659ff0cb
- drop 0001-LOGCXX-528.patch (from upstream [1])
- renumber remainnig patch
Changelog (for deteils see [2]):
- This is a minor bugfix release to fix issues found with 0.12.0. Notably,
this version fixes a bug where a multithreaded application would crash
when using a rolling file.
[LOGCXX-534] - Crashed in log->forcedLog function when running with multi-thread
[LOGCXX-528] - log4cxx fails to build on Centos 7.6 / g++ 4.8.5 / Boost 1.53
[1] 249dd85494
[2] https://logging.apache.org/log4cxx/latest_stable/changelog.html#0.12.1
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
911 B
Makefile
35 lines
911 B
Makefile
################################################################################
|
|
#
|
|
# log4cxx
|
|
#
|
|
################################################################################
|
|
|
|
LOG4CXX_VERSION = 0.12.1
|
|
LOG4CXX_SITE = https://archive.apache.org/dist/logging/log4cxx/$(LOG4CXX_VERSION)
|
|
LOG4CXX_SOURCE = apache-log4cxx-$(LOG4CXX_VERSION).tar.gz
|
|
LOG4CXX_INSTALL_STAGING = YES
|
|
LOG4CXX_LICENSE = Apache-2.0
|
|
LOG4CXX_LICENSE_FILES = LICENSE
|
|
|
|
LOG4CXX_CONF_OPTS = \
|
|
-DAPR_CONFIG_EXECUTABLE=$(STAGING_DIR)/usr/bin/apr-1-config \
|
|
-DAPR_UTIL_CONFIG_EXECUTABLE=$(STAGING_DIR)/usr/bin/apu-1-config
|
|
|
|
LOG4CXX_DEPENDENCIES = apr apr-util
|
|
|
|
ifeq ($(BR2_PACKAGE_BOOST),y)
|
|
LOG4CXX_DEPENDENCIES += boost
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBESMTP),y)
|
|
LOG4CXX_DEPENDENCIES += libesmtp
|
|
endif
|
|
|
|
ifeq ($(BR2_USE_WCHAR),y)
|
|
LOG4CXX_CONF_OPTS += -DLOG4CXX_WCHAR_T=ON
|
|
else
|
|
LOG4CXX_CONF_OPTS += -DLOG4CXX_WCHAR_T=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|