Merge branch 'apr_recipe_update' into 'master'

APR recipe update

See merge request redox-os/cookbook!354
This commit is contained in:
Jeremy Soller 2024-03-24 17:39:51 +00:00
commit 570bff657e

View File

@ -1,5 +1,21 @@
#TODO compilation error
#TODO compiled but not tested
#NOTE Please do not remove expat dependency -- while it's not direct, apr-util build breaks if apr does not have it.
[source]
tar = "https://dlcdn.apache.org//apr/apr-1.7.4.tar.bz2"
[build]
template = "configure"
template = "custom"
dependencies = [
"expat",
]
script = """
COOKBOOK_CONFIGURE_FLAGS+=(
ac_cv_file__dev_zero=yes
apr_cv_process_shared_works=yes
apr_cv_mutex_robust_shared=no
apr_cv_tcp_nodelay_with_cork=yes
)
cookbook_configure
"""