buildroot/package/log4cxx/log4cxx.mk
Fabrice Fontaine 652a01b6b0 package/log4cxx: bump to version 0.11.0
- Retrieve sha512 from upstream
- Drop first patch (not needed since
  33ca357ea0)
- Drop second patch (already in version:
  1f6bf7e119)
- Drop third patch (already in version:
  0319bfa7f6)
- Drop fourth patch (already in version:
  3d96b34921)
- Drop fifth patch (not needed since
  d6776be8f2)
- Add LOG4CXX_AUTORECONF = YES as running the bundled configure fails
  during the build step on:
  configure.ac:47: error: required file './compile' not found
  configure.ac:47:   'automake --add-missing' can install 'compile'

https://logging.apache.org/log4cxx/latest_stable/changes-report.html#a0.11.0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-09-22 21:24:22 +02:00

26 lines
756 B
Makefile

################################################################################
#
# log4cxx
#
################################################################################
LOG4CXX_VERSION = 0.11.0
LOG4CXX_SITE = http://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
# error: required file './compile' not found
LOG4CXX_AUTORECONF = YES
LOG4CXX_CONF_OPTS = \
--with-apr=$(STAGING_DIR)/usr/bin/apr-1-config \
--with-apr-util=$(STAGING_DIR)/usr/bin/apu-1-config \
--disable-dot \
--disable-doxygen \
--disable-html-docs
LOG4CXX_DEPENDENCIES = apr apr-util
$(eval $(autotools-package))