<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/bdeb4419bbf0974d3d57df894fc2993220ee536c">https://github.com/macports/macports-base/commit/bdeb4419bbf0974d3d57df894fc2993220ee536c</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 bdeb441  Begin AS_HELP_STRINGs with lowercase letter, no trailing period
</span>bdeb441 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit bdeb4419bbf0974d3d57df894fc2993220ee536c
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Dec 6 04:08:10 2017 -0600

<span style='display:block; white-space:pre;color:#404040;'>    Begin AS_HELP_STRINGs with lowercase letter, no trailing period
</span>---
 aclocal.m4   | 30 ++++++++++++-------------
 configure    | 72 +++++++++++++++++++++++++++++-------------------------------
 configure.ac |  4 ++--
 3 files changed, 52 insertions(+), 54 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/aclocal.m4 b/aclocal.m4
</span><span style='display:block; white-space:pre;color:#808080;'>index 508464b..31ddd38 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/aclocal.m4
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/aclocal.m4
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -98,7 +98,7 @@ dnl
</span> dnl Parameters: Similar to AC_ARG_VAR ($2 gets some boiler plate around it)
 AC_DEFUN([MP_TOOL_PATH], [dnl
        AC_ARG_WITH([m4_tolower($1)], [AS_HELP_STRING([--with-m4_tolower($1)=PATH],
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                        [Path to alternate $2 command])], [$1=$withval],dnl
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                   [path to alternate $2 command])], [$1=$withval],dnl
</span>           [])dnl
 ])
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -518,7 +518,7 @@ dnl explicitly. If not, search for it
</span>   dnl For ease of reading, run after gcc has been found/configured
        AC_REQUIRE([AC_PROG_CC])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(ports-dir, [AS_HELP_STRING([--with-ports-dir=DIR],[Specify alternate ports directory])], [ portsdir="$withval" ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(ports-dir, [AS_HELP_STRING([--with-ports-dir=DIR],[specify alternate ports directory])], [ portsdir="$withval" ] )
</span> 
 
        AC_MSG_CHECKING([for ports tree])
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -589,7 +589,7 @@ AC_DEFUN([MP_CHECK_NOROOTPRIVILEGES],[
</span>   dnl use ~/Library/Tcl as Tcl package directory
        AC_REQUIRE([MP_PATH_MPCONFIGDIR])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(no-root-privileges, [AS_HELP_STRING([--with-no-root-privileges],[Specify that MacPorts should be installed in your home directory])], [ROOTPRIVS=$withval] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(no-root-privileges, [AS_HELP_STRING([--with-no-root-privileges],[specify that MacPorts should be installed in your home directory])], [ROOTPRIVS=$withval] )
</span> 
        if test "${ROOTPRIVS+set}" = set; then
                # Set install-user to current user
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -620,7 +620,7 @@ AC_DEFUN([MP_CHECK_RUNUSER],[
</span>   dnl use it, otherwise default to platform defaults
        AC_REQUIRE([MP_PATH_MPCONFIGDIR])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(macports-user, [AS_HELP_STRING([--with-macports-user=USER],[Specify user to drop privileges to, if possible, during compiles etc.])], [ RUNUSR=$withval ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(macports-user, [AS_HELP_STRING([--with-macports-user=USER],[specify user to drop privileges to, if possible, during compiles, etc.])], [ RUNUSR=$withval ] )
</span>   
        AC_MSG_CHECKING([for macports user])
        if test "x$RUNUSR" = "x" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -639,7 +639,7 @@ AC_DEFUN([MP_SHARED_DIRECTORY],[
</span>   dnl use 0775 permissions for ${prefix} directories
        AC_REQUIRE([MP_PATH_MPCONFIGDIR])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(shared-directory, [AS_HELP_STRING([--with-shared-directory],[Use 0775 permissions for installed directories])], [ SHAREDIR=$withval ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(shared-directory, [AS_HELP_STRING([--with-shared-directory],[use 0775 permissions for installed directories])], [ SHAREDIR=$withval ] )
</span> 
        if test "${SHAREDIR+set}" = set; then 
                AC_MSG_CHECKING([whether to share the install directory with all members of the install group])
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -657,7 +657,7 @@ AC_DEFUN([MP_CHECK_INSTALLUSER],[
</span>   dnl use it, otherwise default to platform defaults
        AC_REQUIRE([MP_PATH_MPCONFIGDIR])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(install-user, [AS_HELP_STRING([--with-install-user=USER],[Specify user ownership of installed files])], [ DSTUSR=$withval ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(install-user, [AS_HELP_STRING([--with-install-user=USER],[specify user ownership of installed files])], [ DSTUSR=$withval ] )
</span>   
        AC_MSG_CHECKING([for install user])
        if test "x$DSTUSR" = "x" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -675,7 +675,7 @@ AC_DEFUN([MP_CHECK_INSTALLGROUP],[
</span>   dnl use it, otherwise default to platform defaults
        AC_REQUIRE([MP_CHECK_INSTALLUSER])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(install-group, [AS_HELP_STRING([--with-install-group=GROUP],[Specify group ownership of installed files])], [ DSTGRP=$withval ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(install-group, [AS_HELP_STRING([--with-install-group=GROUP],[specify group ownership of installed files])], [ DSTGRP=$withval ] )
</span> 
        AC_MSG_CHECKING([for install group])
        if test "x$DSTGRP" = "x" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -707,7 +707,7 @@ AC_DEFUN([MP_DIRECTORY_MODE],[
</span>   dnl otherwise use 0755
        AC_REQUIRE([MP_PATH_MPCONFIGDIR])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(directory-mode, [AS_HELP_STRING([--with-directory-mode=MODE],[Specify directory mode of installed directories])], [ DSTMODE=$withval ] )
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(directory-mode, [AS_HELP_STRING([--with-directory-mode=MODE],[specify directory mode of installed directories])], [ DSTMODE=$withval ] )
</span>   
        AC_MSG_CHECKING([what permissions to use for installation directories])
        if test "x$DSTMODE" = "x" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -723,7 +723,7 @@ AC_DEFUN([MP_DIRECTORY_MODE],[
</span> AC_DEFUN([MP_PATH_APPLICATIONS],[
        AC_REQUIRE([MP_CHECK_INSTALLUSER])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(applications-dir,[AS_HELP_STRING([--with-applications-dir],[Applications installation directory.])], MPAPPLICATIONSDIR=${withval})
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(applications-dir,[AS_HELP_STRING([--with-applications-dir],[applications installation directory])], MPAPPLICATIONSDIR=${withval})
</span> 
        oldprefix=$prefix
        if test "x$prefix" = "xNONE" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -749,7 +749,7 @@ AC_DEFUN([MP_PATH_APPLICATIONS],[
</span> AC_DEFUN([MP_PATH_FRAMEWORKS],[
        AC_REQUIRE([MP_CHECK_INSTALLUSER])
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(frameworks-dir,[AS_HELP_STRING([--with-frameworks-dir],[Frameworks installation directory.])], MPFRAMEWORKSDIR=${withval})
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(frameworks-dir,[AS_HELP_STRING([--with-frameworks-dir],[frameworks installation directory])], MPFRAMEWORKSDIR=${withval})
</span> 
        oldprefix=$prefix
        if test "x$prefix" = "xNONE" ; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -769,7 +769,7 @@ AC_DEFUN([MP_PATH_FRAMEWORKS],[
</span> # MP_UNIVERSAL_OPTIONS
 #---------------------------------------
 AC_DEFUN([MP_UNIVERSAL_OPTIONS],[
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_WITH(universal-archs,[AS_HELP_STRING([--with-universal-archs="CPU"],[Universal CPU architectures (space separated)])], UNIVERSAL_ARCHS=${withval})
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_WITH(universal-archs,[AS_HELP_STRING([--with-universal-archs="CPU"],[universal CPU architectures (space separated)])], UNIVERSAL_ARCHS=${withval})
</span> 
        if test "x$UNIVERSAL_ARCHS" = "x"; then
                case "$MACOSX_VERSION" in
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -875,7 +875,7 @@ AC_DEFUN([MP_PROG_DAEMONDO],[
</span> #---------------------------------------
 AC_DEFUN([MP_LIBCURL_FLAGS],[
        AC_ARG_WITH(curlprefix,
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                   [  --with-curlprefix       base directory for the cURL install '/usr', '/usr/local',...],
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+              [  --with-curlprefix       base directory for the cURL install ('/usr', '/usr/local', ...)],
</span>              [  curlprefix=$withval ])
 
        if test "x$curlprefix" = "x"; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -919,7 +919,7 @@ AC_DEFUN([MP_LIBCURL_FLAGS],[
</span> AC_DEFUN([MP_SQLITE3_FLAGS],[
     # first sqlite3 itself
        AC_ARG_WITH(sqlite3prefix,
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                   [  --with-sqlite3prefix       base directory for the sqlite3 install '/usr', '/usr/local',...],
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+              [  --with-sqlite3prefix    base directory for the sqlite3 install ('/usr', '/usr/local', ...)],
</span>              [  sqlite3prefix=$withval ])
 
        if test "x$sqlite3prefix" = "x"; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -975,7 +975,7 @@ dnl items.
</span> AC_DEFUN([MP_FLAGS_SCAN],[
        AC_ARG_ENABLE(
                [flag-sanitization],
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                AS_HELP_STRING([--disable-flag-sanitization], [Do not sanitize CPPFLAGS, CFLAGS, OBJCFLAGS and LDFLAGS]),
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+           AS_HELP_STRING([--disable-flag-sanitization], [do not sanitize CPPFLAGS, CFLAGS, OBJCFLAGS and LDFLAGS]),
</span>           [disable_mp_flags_scan=yes],
                [disable_mp_flags_scan=no])
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1230,7 +1230,7 @@ AC_DEFUN(MP_CHECK_READLINK_IS_P1003_1A, [
</span> #------------------------------------------------------------------------
 AC_DEFUN([MP_WERROR],[
        AC_REQUIRE([AC_PROG_CC])
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        AC_ARG_ENABLE(werror, AS_HELP_STRING([--enable-werror],[Add -Werror to CFLAGS. Used for development.]), [enable_werror=${enableval}], [enable_werror=no])
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   AC_ARG_ENABLE(werror, AS_HELP_STRING([--enable-werror],[add -Werror to CFLAGS (used for development)]), [enable_werror=${enableval}], [enable_werror=no])
</span>   if test x"$enable_werror" != "xno"; then
                CFLAGS_WERROR="-Werror"
        else
<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 be2af4e..c023e8a 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;'>@@ -1474,56 +1474,55 @@ Optional Features:
</span>   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
   --disable-flag-sanitization
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Do not sanitize CPPFLAGS, CFLAGS, OBJCFLAGS and
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          do not sanitize CPPFLAGS, CFLAGS, OBJCFLAGS and
</span>                           LDFLAGS
<span style='display:block; white-space:pre;background:#ffe0e0;'>-  --enable-werror         Add -Werror to CFLAGS. Used for development.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --enable-readline       Enable addition of readline support, if readline
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                          present.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --enable-werror         add -Werror to CFLAGS (used for development)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --enable-readline       enable readline support, if readline present
</span>   --enable-shared         build and link with shared libraries --enable-shared
 
 Optional Packages:
   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-bsdmake=PATH     Path to alternate bsdmake/pmake command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-bzip2_bin=PATH   Path to alternate bzip2 command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-cvs=PATH         Path to alternate cvs command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-gnumake=PATH     Path to alternate gnumake command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-gnutar=PATH      Path to alternate gnutar command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-lzma=PATH        Path to alternate lzma command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-make=PATH        Path to alternate make command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-mtree=PATH       Path to alternate mtree command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-open=PATH        Path to alternate open command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-openssl=PATH     Path to alternate openssl command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-rsync=PATH       Path to alternate rsync command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-sed=PATH         Path to alternate sed command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-svn=PATH         Path to alternate svn command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-swig=PATH        Path to alternate swig command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-tar=PATH         Path to alternate tar command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-xar=PATH         Path to alternate xar command
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-xz=PATH          Path to alternate xz command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-bsdmake=PATH     path to alternate bsdmake/pmake command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-bzip2_bin=PATH   path to alternate bzip2 command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-cvs=PATH         path to alternate cvs command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-gnumake=PATH     path to alternate gnumake command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-gnutar=PATH      path to alternate gnutar command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-lzma=PATH        path to alternate lzma command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-make=PATH        path to alternate make command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-mtree=PATH       path to alternate mtree command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-open=PATH        path to alternate open command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-openssl=PATH     path to alternate openssl command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-rsync=PATH       path to alternate rsync command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-sed=PATH         path to alternate sed command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-svn=PATH         path to alternate svn command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-swig=PATH        path to alternate swig command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-tar=PATH         path to alternate tar command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-xar=PATH         path to alternate xar command
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-xz=PATH          path to alternate xz command
</span>   --with-unsupported-prefix
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Acknowledge that you accept the consequences of
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                          using an unsupported prefix.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-ports-dir=DIR    Specify alternate ports directory
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          acknowledge that you accept the consequences of
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          using an unsupported prefix
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-ports-dir=DIR    specify alternate ports directory
</span>   --with-no-root-privileges
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Specify that MacPorts should be installed in your
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          specify that MacPorts should be installed in your
</span>                           home directory
   --with-install-user=USER
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Specify user ownership of installed files
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          specify user ownership of installed files
</span>   --with-install-group=GROUP
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Specify group ownership of installed files
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          specify group ownership of installed files
</span>   --with-macports-user=USER
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Specify user to drop privileges to, if possible,
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                          during compiles etc.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          specify user to drop privileges to, if possible,
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          during compiles, etc.
</span>   --with-directory-mode=MODE
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Specify directory mode of installed directories
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-shared-directory Use 0775 permissions for installed directories
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-applications-dir Applications installation directory.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-frameworks-dir   Frameworks installation directory.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          specify directory mode of installed directories
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-shared-directory use 0775 permissions for installed directories
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-applications-dir applications installation directory
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-frameworks-dir   frameworks installation directory
</span>   --with-universal-archs="CPU"
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                          Universal CPU architectures (space separated)
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-curlprefix       base directory for the cURL install '/usr', '/usr/local',...
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-  --with-sqlite3prefix       base directory for the sqlite3 install '/usr', '/usr/local',...
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          universal CPU architectures (space separated)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-curlprefix       base directory for the cURL install ('/usr', '/usr/local', ...)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+  --with-sqlite3prefix    base directory for the sqlite3 install ('/usr', '/usr/local', ...)
</span> 
 Some influential environment variables:
   CC          C compiler command
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5832,7 +5831,6 @@ fi
</span> 
 
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> if test "x$MTREE" = "x"; then
     as_fn_error $? "mtree not found" "$LINENO" 5
 fi
<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 a33eb7f..5b3e112 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;'>@@ -205,7 +205,7 @@ AC_PREFIX_DEFAULT(/opt/local)
</span> AC_ARG_WITH(
                unsupported-prefix,
                AS_HELP_STRING([--with-unsupported-prefix],
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                [Acknowledge that you accept the consequences of using an unsupported prefix.]),
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+           [acknowledge that you accept the consequences of using an unsupported prefix]),
</span>           [with_unsupported_prefix=$withval],
                [with_unsupported_prefix=no])
 if test x$prefix = x/usr/local -o x$prefix = x/usr && test x$with_unsupported_prefix != xyes; then
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -256,7 +256,7 @@ MP_CHECK_READLINK_IS_P1003_1A
</span> AC_CHECK_HEADER([CommonCrypto/CommonDigest.h], [AC_DEFINE([HAVE_COMMONCRYPTO_COMMONDIGEST_H], [1], [Define if CommonCrypto is available.])], [MP_LIB_MD5])
 
 # Check for readline
<span style='display:block; white-space:pre;background:#ffe0e0;'>-AC_ARG_ENABLE(readline, AS_HELP_STRING([--enable-readline],[Enable addition of readline support, if readline present.]),
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+AC_ARG_ENABLE(readline, AS_HELP_STRING([--enable-readline],[enable readline support, if readline present]),
</span> [
        AC_CHECK_LIB([readline], [readline], [
                                  READLINE_LIBS=-lreadline
</pre><pre style='margin:0'>

</pre>