<pre style='margin:0'>
Michael Dickens (michaelld) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/bfd9a1776f09c20a7b9bcf7d31762a5ebef6182f">https://github.com/macports/macports-ports/commit/bfd9a1776f09c20a7b9bcf7d31762a5ebef6182f</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 bfd9a17  mariadb-10.2: add non-default-variant connect_with_libxml2
</span>bfd9a17 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit bfd9a1776f09c20a7b9bcf7d31762a5ebef6182f
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Tue Nov 5 14:32:01 2019 -0500

<span style='display:block; white-space:pre;color:#404040;'>    mariadb-10.2: add non-default-variant connect_with_libxml2
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This is the only part of MariaDB 10.2 that requires libxml2, which in turn will require C++11. So the MariaDB core will now be buildable without C++11 or libxml2.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/59505
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/59563
</span>---
 databases/mariadb-10.2/Portfile | 12 ++++++++++++
 1 file changed, 12 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/databases/mariadb-10.2/Portfile b/databases/mariadb-10.2/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 1dc667b..cf372f0 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/databases/mariadb-10.2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/databases/mariadb-10.2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -198,6 +198,18 @@ if {$subport eq $name} {
</span>         configure.args-append   -DWITH_READLINE:BOOL=OFF
     }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    variant connect_with_libxml2 description {Compile CONNECT storage engine with LIBXML2 support} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {[variant_isset connect_with_libxml2]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # requires libxml2, which in turn requires C++11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        depends_lib-append port:libxml2
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        configure.args-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            -DCONNECT_WITH_LIBXML2=ON \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            -DCMAKE_CXX_STANDARD=11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    } else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        configure.args-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            -DCONNECT_WITH_LIBXML2=OFF
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     notes "
 On activation if no ${prefix}/etc/${name_mysql}/my.cnf file exists one
 will be created which loads
</pre><pre style='margin:0'>

</pre>