<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/cbe29c4a5abdf328367beaf799730a1ce0bd574e">https://github.com/macports/macports-base/commit/cbe29c4a5abdf328367beaf799730a1ce0bd574e</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 cbe29c4  Increase minimum uid and gid to 501
</span>cbe29c4 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit cbe29c4a5abdf328367beaf799730a1ce0bd574e
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Sat Aug 17 14:44:46 2019 +1000

<span style='display:block; white-space:pre;color:#404040;'>    Increase minimum uid and gid to 501
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Supposedly ids lower than 500 are reserved, but the system starts at
</span><span style='display:block; white-space:pre;color:#404040;'>    501 when creating users, so maybe they really meant <= 500. Using 500
</span><span style='display:block; white-space:pre;color:#404040;'>    hasn't caused problems yet, but we might as well match what the OS
</span><span style='display:block; white-space:pre;color:#404040;'>    does just in case.
</span>---
 configure    | 5 +++--
 configure.ac | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/configure b/configure
</span><span style='display:block; white-space:pre;color:#808080;'>index 9f0a97e..b20946c 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/configure
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/configure
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -7255,11 +7255,12 @@ fi
</span> 
 
 # Lowest non-system-reserved uid and gid (Apple claims <500)
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# The first user on the system is 501 so let's start there too
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-$as_echo "#define MIN_USABLE_UID 500" >>confdefs.h
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+$as_echo "#define MIN_USABLE_UID 501" >>confdefs.h
</span> 
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-$as_echo "#define MIN_USABLE_GID 500" >>confdefs.h
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+$as_echo "#define MIN_USABLE_GID 501" >>confdefs.h
</span> 
 
 # Substitute platform for base compatibility check
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/configure.ac b/configure.ac
</span><span style='display:block; white-space:pre;color:#808080;'>index 857af90..eee449f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/configure.ac
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/configure.ac
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -281,8 +281,9 @@ AC_ARG_ENABLE(readline, AS_HELP_STRING([--enable-readline],[enable readline supp
</span> AC_SUBST(READLINE_LIBS)
 
 # Lowest non-system-reserved uid and gid (Apple claims <500)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-AC_DEFINE([MIN_USABLE_UID], [500], [Lowest non-system-reserved UID.])
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-AC_DEFINE([MIN_USABLE_GID], [500], [Lowest non-system-reserved GID.])
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# The first user on the system is 501 so let's start there too
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+AC_DEFINE([MIN_USABLE_UID], [501], [Lowest non-system-reserved UID.])
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+AC_DEFINE([MIN_USABLE_GID], [501], [Lowest non-system-reserved GID.])
</span> 
 # Substitute platform for base compatibility check
 MP_PLATFORM
</pre><pre style='margin:0'>

</pre>