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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/e6b225fd8d14bf58d2ad04ed56e0f1d5c5a6be67">https://github.com/macports/macports-ports/commit/e6b225fd8d14bf58d2ad04ed56e0f1d5c5a6be67</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit e6b225fd8d14bf58d2ad04ed56e0f1d5c5a6be67
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sun May 20 08:12:11 2018 -0500

<span style='display:block; white-space:pre;color:#404040;'>    gdal: Use eq/ne instead of ==/!=
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    eq/ne is for strings; ==/!= is for numbers.
</span>---
 gis/gdal/Portfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/gis/gdal/Portfile b/gis/gdal/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 0ad850c..d3a9adc 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/gis/gdal/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/gis/gdal/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -117,7 +117,7 @@ platform darwin {
</span> 
 # for all platforms without C++11 support
 # this is just a suboptimal approximation (doesn't hold for gcc)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {${configure.cxx_stdlib} != "libc++"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${configure.cxx_stdlib} ne "libc++"} {
</span>     configure.args-append \
                     --without-cpp11
 } else {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -178,7 +178,7 @@ variant ecw description {Enable ECW file format} {
</span>     configure.args-delete   --without-ecw
     configure.args-append   --with-ecw=${prefix}/lib/ECW
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    if {${configure.cxx_stdlib} == "libc++" } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {${configure.cxx_stdlib} eq "libc++" } {
</span>         patchfiles-append       patch-configure-ecw-libcxx.diff
     } else {
         patchfiles-append       patch-configure-ecw-libstdcxx.diff
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -423,7 +423,7 @@ post-destroot {
</span>             bin/testepsg \
             lib/libgdal.20.dylib] \
             {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                if {${configure.cxx_stdlib} == "libc++"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                if {${configure.cxx_stdlib} eq "libc++"} {
</span>                     system "install_name_tool -change \
                         /Users/jenkins/hudson/workspace/RL_5.1.1_ECWJP2SDK_OSX/Master/libNCSEcw.dylib ${prefix}/lib/ECW/redistributable/libc++/libNCSEcw.dylib \
                         ${destroot}${prefix}/${f}"
</pre><pre style='margin:0'>

</pre>