This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2.
View the commit online.
commit d6a086dbddbdcaa9a07e21a60b6f35165d45ce59
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Mon Mar 24 17:37:39 2025 +0100
autofoo: Some defaults for RTLD_LOCAL support
https://git.enlightenment.org/old/legacy-imlib2/issues/30
---
configure.ac | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 5eca34c..21ac358 100644
--- a/configure.ac
+++ b/configure.ac
@@ -278,7 +278,13 @@ AM_CONDITIONAL(BUILD_DOC, test "$enable_doc_build" = "yes")
# If libImlib2 is loaded with RTLD_LOCAL, modules must be linked with libimlib2
AC_ARG_ENABLE([rtld-local-support],
- [AS_HELP_STRING([--enable-rtld-local-support], [Link modules with libImlib2 @<:@default=no@:>@])]
+ [AS_HELP_STRING([--enable-rtld-local-support], [Link modules with libImlib2 @<:@default=no@:>@])],,
+ [
+ case "$host_os" in
+ *android* | cygwin*) enable_rtld_local_support="yes" ;;
+ *) enable_rtld_local_support="no" ;;
+ esac
+ ]
)
AM_CONDITIONAL(ENABLE_RTLD_LOCAL_SUPPORT, test "$enable_rtld_local_support" = "yes")
@@ -361,6 +367,7 @@ echo "Include filters...........: $enable_filters"
echo "Include text functions....: $enable_text"
echo "Use visibility hiding.....: $enable_visibility_hiding"
echo "Use struct packing........: $enable_packing"
+echo "Enable RTLD_LOCAL support.: $enable_rtld_local_support"
echo
echo "Build demo programs.......: $enable_progs"
echo
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.