<pre style='margin:0'>
Rainer Müller (raimue) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/b7221e01f81a78deda2bade1ce0a87aecb960132">https://github.com/macports/macports-base/commit/b7221e01f81a78deda2bade1ce0a87aecb960132</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new b7221e01 configure: remove a bash-ism in daemondo check
</span>b7221e01 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit b7221e01f81a78deda2bade1ce0a87aecb960132
</span>Author: Dan Villiom Podlaski Christiansen <danchr@gmail.com>
AuthorDate: Wed Nov 18 00:58:17 2020 +0100

<span style='display:block; white-space:pre;color:#404040;'>    configure: remove a bash-ism in daemondo check
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Using '==' with 'test' is not part of the POSIX shell specification,
</span><span style='display:block; white-space:pre;color:#404040;'>    and 'dash' doesn't support it.
</span>---
 aclocal.m4 | 8 ++++----
 configure  | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/aclocal.m4 b/aclocal.m4
</span><span style='display:block; white-space:pre;color:#808080;'>index 9a672e2a..127967d2 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/aclocal.m4
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/aclocal.m4
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -843,10 +843,10 @@ AC_DEFUN([MP_PROG_DAEMONDO],[
</span>   result=no
        case $host_os in
                darwin*)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                        if test "x$mp_cv_have_framework_corefoundation" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_framework_systemconfiguration" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_framework_iokit" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_function_cfnotificationcentergetdarwinnotifycenter" == "xyes"; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                   if test "x$mp_cv_have_framework_corefoundation" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_framework_systemconfiguration" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_framework_iokit" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_function_cfnotificationcentergetdarwinnotifycenter" = "xyes"; then
</span>                           result=yes
                                EXTRA_PROGS="$EXTRA_PROGS daemondo"
                                AC_CONFIG_FILES([src/programs/daemondo/Makefile])
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/configure b/configure
</span><span style='display:block; white-space:pre;color:#808080;'>index 3cfc0e90..c0025fb5 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/configure
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/configure
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6117,10 +6117,10 @@ $as_echo_n "checking for whether we will build daemondo... " >&6; }
</span>   result=no
        case $host_os in
                darwin*)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                        if test "x$mp_cv_have_framework_corefoundation" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_framework_systemconfiguration" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_framework_iokit" == "xyes" &&
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                      test "x$mp_cv_have_function_cfnotificationcentergetdarwinnotifycenter" == "xyes"; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                   if test "x$mp_cv_have_framework_corefoundation" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_framework_systemconfiguration" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_framework_iokit" = "xyes" &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                      test "x$mp_cv_have_function_cfnotificationcentergetdarwinnotifycenter" = "xyes"; then
</span>                           result=yes
                                EXTRA_PROGS="$EXTRA_PROGS daemondo"
                                ac_config_files="$ac_config_files src/programs/daemondo/Makefile"
</pre><pre style='margin:0'>

</pre>