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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/efb3a9e4b622b2ed6c8ee91837fafcbcdaa36ed3">https://github.com/macports/macports-ports/commit/efb3a9e4b622b2ed6c8ee91837fafcbcdaa36ed3</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 efb3a9e4b62 gdk-pixbuf2: fix build on Tiger
</span>efb3a9e4b62 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit efb3a9e4b622b2ed6c8ee91837fafcbcdaa36ed3
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Thu Oct 29 23:19:02 2020 -0700

<span style='display:block; white-space:pre;color:#404040;'>    gdk-pixbuf2: fix build on Tiger
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    meson forces use of @rpath, but Tiger doesn't support this.
</span><span style='display:block; white-space:pre;color:#404040;'>    workaround with DYLD_LIBRARY_PATH
</span>---
 graphics/gdk-pixbuf2/Portfile | 11 +++++++++++
 1 file changed, 11 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/gdk-pixbuf2/Portfile b/graphics/gdk-pixbuf2/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 5f4b4901de3..f97a54b291e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/gdk-pixbuf2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/gdk-pixbuf2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -64,6 +64,17 @@ if {[variant_isset universal]} {
</span>     destroot.env-append    "CC=${configure.cc} ${configure.cc_archflags}"
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+platform darwin 8 {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # meson on Tiger cannot use rpaths, so we workaround with this to find dylib
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {[info exists muniversal.current_arch]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        build.env-append       "DYLD_LIBRARY_PATH=${build_dir}-${muniversal.current_arch}/gdk-pixbuf"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        destroot.env-append    "DYLD_LIBRARY_PATH=${build_dir}-${muniversal.current_arch}/gdk-pixbuf"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        } else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        build.env-append       "DYLD_LIBRARY_PATH=${build_dir}/gdk-pixbuf"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        destroot.env-append    "DYLD_LIBRARY_PATH=${build_dir}/gdk-pixbuf"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> variant bundle description {Enable application bundle relocation support} {
     configure.args-append   -Drelocatable=true
 }
</pre><pre style='margin:0'>

</pre>