<pre style='margin:0'>
Christopher Nielsen (mascguy) pushed a commit to branch master
in repository macports-legacy-support.

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/f0623ad9c49c425fbcb09dffce68625ba4a6ce71">https://github.com/macports/macports-legacy-support/commit/f0623ad9c49c425fbcb09dffce68625ba4a6ce71</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit f0623ad9c49c425fbcb09dffce68625ba4a6ce71
</span>Author: Fred Wright <fw@fwright.net>
AuthorDate: Thu May 8 00:00:08 2025 -0700

<span style='display:block; white-space:pre;color:#404040;'>    fsgetpath.h: Fix for header test on <10.6.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This avoids the explicit error on the unsupported <10.6, when used in
</span><span style='display:block; white-space:pre;color:#404040;'>    the allheaders tests.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    TESTED:
</span><span style='display:block; white-space:pre;color:#404040;'>    Passes all tests, including new allheaders tests.
</span>---
 include/sys/fsgetpath.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/include/sys/fsgetpath.h b/include/sys/fsgetpath.h
</span><span style='display:block; white-space:pre;color:#808080;'>index 117ab29..ce7f655 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/include/sys/fsgetpath.h
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/include/sys/fsgetpath.h
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -35,7 +35,7 @@ typedef struct fsid fsid_t;
</span> extern ssize_t fsgetpath(char * __restrict buf, size_t bufsize, fsid_t* fsid, uint64_t objid);
 __MP__END_DECLS
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-#if __MPLS_TARGET_OSVER < 1060
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#if __MPLS_TARGET_OSVER < 1060 && !defined(__MPLS_HEADER_TEST__)
</span> #error "No implementation of fsgetpath is presently available for MacOSX prior to 10.6"
 #endif
 
</pre><pre style='margin:0'>

</pre>