Skip to content
Snippets Groups Projects
Commit 4d5a9448 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Updated dovecot.m4.

parent 905db120
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# unlimited permission to copy and/or distribute it, with or without # unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved. # modifications, as long as this notice is preserved.
# serial 23 # serial 24
AC_DEFUN([DC_DOVECOT_MODULEDIR],[ AC_DEFUN([DC_DOVECOT_MODULEDIR],[
AC_ARG_WITH(moduledir, AC_ARG_WITH(moduledir,
...@@ -137,3 +137,28 @@ AC_DEFUN([DC_DOVECOT],[ ...@@ -137,3 +137,28 @@ AC_DEFUN([DC_DOVECOT],[
DC_PLUGIN_DEPS DC_PLUGIN_DEPS
DC_DOVECOT_TEST_WRAPPER DC_DOVECOT_TEST_WRAPPER
]) ])
AC_DEFUN([DC_CC_WRAPPER],[
if test "$want_shared_libs" != "yes"; then
# want_shared_libs=no is for internal use. the liblib.la check is for plugins
if test "$want_shared_libs" = "no" || echo "$LIBDOVECOT" | grep "/liblib.la" > /dev/null; then
if test "$with_gnu_ld" = yes; then
# libtool can't handle using whole-archive flags, so we need to do this
# with a CC wrapper.. shouldn't be much of a problem, since most people
# are building with shared libs.
cat > cc-wrapper.sh <<EOF
#!/bin/sh
if echo "\$[*]" | grep -- -ldl > /dev/null; then
# the binary uses plugins. make sure we include everything from .a libs
exec $CC -Wl,--whole-archive \$[*] -Wl,--no-whole-archive
else
exec $CC \$[*]
fi
EOF
chmod +x cc-wrapper.sh
CC=`pwd`/cc-wrapper.sh
fi
fi
fi
])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.