aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
625 B
Makefile
21 lines
625 B
Makefile
################################################################################
|
|
#
|
|
# log4cxx
|
|
#
|
|
################################################################################
|
|
|
|
LOG4CXX_VERSION = 0.10.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
|
|
|
|
LOG4CXX_CONF_OPTS = \
|
|
--with-apr=$(STAGING_DIR)/usr/bin/apr-1-config \
|
|
--with-apr-util=$(STAGING_DIR)/usr/bin/apu-1-config
|
|
|
|
LOG4CXX_DEPENDENCIES = apr apr-util
|
|
|
|
$(eval $(autotools-package))
|