2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-04-17 16:35:16 +02:00
|
|
|
#
|
|
|
|
# apr
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2014-10-05 19:39:00 +02:00
|
|
|
APR_VERSION = 1.5.1
|
2012-04-17 16:35:16 +02:00
|
|
|
APR_SITE = http://archive.apache.org/dist/apr
|
2013-03-24 09:19:27 +01:00
|
|
|
APR_LICENSE = Apache-2.0
|
|
|
|
APR_LICENSE_FILES = LICENSE
|
2012-04-17 16:35:16 +02:00
|
|
|
APR_INSTALL_STAGING = YES
|
2014-10-05 19:39:00 +02:00
|
|
|
# We have a patch touching configure.in and Makefile.in,
|
|
|
|
# so we need to autoreconf:
|
|
|
|
APR_AUTORECONF = YES
|
2012-04-17 16:35:16 +02:00
|
|
|
APR_CONF_ENV = \
|
2014-10-05 19:39:00 +02:00
|
|
|
CC_FOR_BUILD="$(HOSTCC)" \
|
|
|
|
CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
|
2012-04-17 16:35:16 +02:00
|
|
|
ac_cv_file__dev_zero=yes \
|
|
|
|
ac_cv_func_setpgrp_void=yes \
|
|
|
|
apr_cv_process_shared_works=yes \
|
|
|
|
apr_cv_mutex_robust_shared=no \
|
|
|
|
apr_cv_tcp_nodelay_with_cork=yes \
|
|
|
|
ac_cv_sizeof_struct_iovec=8 \
|
2014-10-05 19:38:49 +02:00
|
|
|
ac_cv_struct_rlimit=yes \
|
2014-10-05 19:39:01 +02:00
|
|
|
ac_cv_o_nonblock_inherited=no \
|
2012-04-17 16:35:16 +02:00
|
|
|
apr_cv_mutex_recursive=yes
|
2013-03-24 09:19:27 +01:00
|
|
|
APR_CONFIG_SCRIPTS = apr-1-config
|
|
|
|
|
2013-11-27 13:53:04 +01:00
|
|
|
# Doesn't even try to guess when cross compiling
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
|
|
APR_CONF_ENV += apr_cv_pthreads_lib="-lpthread"
|
|
|
|
endif
|
|
|
|
|
2014-10-05 19:38:49 +02:00
|
|
|
# Fix lfs detection when cross compiling
|
|
|
|
APR_CONF_ENV += apr_cv_use_lfs64=yes
|
|
|
|
|
2013-03-24 09:19:27 +01:00
|
|
|
define APR_CLEANUP_UNNEEDED_FILES
|
|
|
|
$(RM) -rf $(TARGET_DIR)/usr/build-1/
|
|
|
|
endef
|
|
|
|
|
|
|
|
APR_POST_INSTALL_TARGET_HOOKS += APR_CLEANUP_UNNEEDED_FILES
|
|
|
|
|
|
|
|
define APR_FIXUP_RULES_MK
|
|
|
|
$(SED) 's%apr_builddir=%apr_builddir=$(STAGING_DIR)%' \
|
|
|
|
$(STAGING_DIR)/usr/build-1/apr_rules.mk
|
|
|
|
$(SED) 's%apr_builders=%apr_builders=$(STAGING_DIR)%' \
|
|
|
|
$(STAGING_DIR)/usr/build-1/apr_rules.mk
|
2014-10-05 19:39:00 +02:00
|
|
|
$(SED) 's%top_builddir=%top_builddir=$(STAGING_DIR)%' \
|
|
|
|
$(STAGING_DIR)/usr/build-1/apr_rules.mk
|
2013-03-24 09:19:27 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
APR_POST_INSTALL_STAGING_HOOKS += APR_FIXUP_RULES_MK
|
2012-04-17 16:35:16 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|