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

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/44ef7bb1469caeaee8a99fa4147fbdb1bcfccc60">https://github.com/macports/macports-legacy-support/commit/44ef7bb1469caeaee8a99fa4147fbdb1bcfccc60</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 44ef7bb  that method of removing the warnings is not
</span>44ef7bb is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 44ef7bb1469caeaee8a99fa4147fbdb1bcfccc60
</span>Author: Ken Cunningham <ken.cunningham.webuse@gmail.com>
AuthorDate: Thu Jan 31 18:12:57 2019 -0800

<span style='display:block; white-space:pre;color:#404040;'>    that method of removing the warnings is not
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    functional on older gcc compilers. Will need to come up
</span><span style='display:block; white-space:pre;color:#404040;'>    with a better style for this. On a branch, so no more
</span><span style='display:block; white-space:pre;color:#404040;'>    commits on the main train.
</span>---
 include/MacportsLegacySupport.h | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/include/MacportsLegacySupport.h b/include/MacportsLegacySupport.h
</span><span style='display:block; white-space:pre;color:#808080;'>index 2e68e65..bf29f3b 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/include/MacportsLegacySupport.h
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/include/MacportsLegacySupport.h
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -60,21 +60,17 @@
</span> #define __MP_LEGACY_SUPPORT_POSIX_MEMALIGN__  (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060)
 
 /*  realpath() wrap */
<span style='display:block; white-space:pre;background:#ffe0e0;'>-#if                                           (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060      \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                         && !defined (__DISABLE_MP_LEGACY_SUPPORT_REALPATH_WRAP__)    \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                         && !defined (__DISABLE_ALL_MACPORTS_FUNCTION_WRAPPING__) )
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# define __MP_LEGACY_SUPPORT_REALPATH_WRAP__
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-#endif
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#define __MP_LEGACY_SUPPORT_REALPATH_WRAP__   (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060      \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                                         && !defined(__DISABLE_MP_LEGACY_SUPPORT_REALPATH_WRAP__)    \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                                         && !defined(__DISABLE_ALL_MACPORTS_FUNCTION_WRAPPING__) )
</span> 
 /* lsmod */
 #define __MP_LEGACY_SUPPORT_LSMOD__           (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050)
 
 /*  sysconf() wrap */
<span style='display:block; white-space:pre;background:#ffe0e0;'>-#if                                           (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050      \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                         && !defined (__DISABLE_MP_LEGACY_SUPPORT_SYSCONF_WRAP__ )    \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                         && !defined (__DISABLE_ALL_MACPORTS_FUNCTION_WRAPPING__) )
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# define __MP_LEGACY_SUPPORT_SYSCONF_WRAP__
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-#endif
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#define __MP_LEGACY_SUPPORT_SYSCONF_WRAP__    (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050      \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                                         && !defined(__DISABLE_MP_LEGACY_SUPPORT_SYSCONF_WRAP__)      \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                                         && !defined(__DISABLE_ALL_MACPORTS_FUNCTION_WRAPPING__) )
</span> 
 /* arc4random */
 #define __MP_LEGACY_SUPPORT_ARC4RANDOM__      (__APPLE__ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070)
</pre><pre style='margin:0'>

</pre>