diff options
author | Eduardo Chappa <chappa@washington.edu> | 2013-12-27 12:20:58 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2013-12-27 12:20:58 -0700 |
commit | 1bf084e1ed4cd931b08e233a3f5c30cc9de05dfc (patch) | |
tree | 5b25afa90c9ea9dbf7c8589040ee12f24b5363ad /autom4te.cache/output.2 | |
parent | 186a23ef94452e15aeadf60224300ca16acd4182 (diff) | |
download | alpine-1bf084e1ed4cd931b08e233a3f5c30cc9de05dfc.tar.xz |
* new address alpine-count@patches.freeiz.com for counting users of
Alpine.
* When writing the .pinerc file, lines could not be longer than
10,000 characters, or else this caused corruption in the .pinerc data.
Now they are allowed to be of any size.
* Fix a problem that made Alpine remove files before they were open by
the viewer. It requires that the user has an equivalent to a command
such as "ps auxww" to list the list of processes. The default is
"/bin/ps auxww", but it can be changed at compile time with the option
--with-ps-cmd.
* Remove -lregex from linker flags when building --with-supplied-regex.
* Fix _INIT_ token for reply quote string to include support for 8-bit
in personal names.
Diffstat (limited to 'autom4te.cache/output.2')
-rw-r--r-- | autom4te.cache/output.2 | 84 |
1 files changed, 65 insertions, 19 deletions
diff --git a/autom4te.cache/output.2 b/autom4te.cache/output.2 index 6645ca6d..0fbf1428 100644 --- a/autom4te.cache/output.2 +++ b/autom4te.cache/output.2 @@ -1,7 +1,7 @@ @%:@! /bin/sh -@%:@ From configure.ac Rev:7 by chappa@washington.edu. +@%:@ From configure.ac Rev:8 by chappa@washington.edu. @%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.69 for alpine 2.19.3. +@%:@ Generated by GNU Autoconf 2.69 for alpine 2.19.4. @%:@ @%:@ Report bugs to <chappa@washington.edu>. @%:@ @@ -730,8 +730,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='alpine' PACKAGE_TARNAME='alpine' -PACKAGE_VERSION='2.19.3' -PACKAGE_STRING='alpine 2.19.3' +PACKAGE_VERSION='2.19.4' +PACKAGE_STRING='alpine 2.19.4' PACKAGE_BUGREPORT='chappa@washington.edu' PACKAGE_URL='' @@ -948,6 +948,7 @@ with_libiconv_prefix with_libintl_prefix enable_dmalloc with_dmalloc_dir +with_ps_cmd with_localedir enable_osx_universal_binaries with_include_path @@ -1595,7 +1596,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures alpine 2.19.3 to adapt to many kinds of systems. +\`configure' configures alpine 2.19.4 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1665,7 +1666,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of alpine 2.19.3:";; + short | recursive ) echo "Configuration of alpine 2.19.4:";; esac cat <<\_ACEOF @@ -1709,6 +1710,8 @@ Optional Packages: --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-dmalloc-dir=DIR Root of dmalloc lib/include path + --with-ps-cmd="CMD" Use this command to check running commands. Default: + /bin/ps auxww --with-localedir=DIR Name of gettext locale directory --with-include-path=PATHS Colon-separated list of directories used for include @@ -1949,7 +1952,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -alpine configure 2.19.3 +alpine configure 2.19.4 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2555,7 +2558,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by alpine $as_me 2.19.3, which was +It was created by alpine $as_me 2.19.4, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3376,7 +3379,7 @@ fi # Define the identity of the package. PACKAGE='alpine' - VERSION='2.19.3' + VERSION='2.19.4' cat >>confdefs.h <<_ACEOF @@ -13542,6 +13545,46 @@ $as_echo "@%:@define ENABLE_DMALLOC 1" >>confdefs.h fi +ALPINE_psefcmd="/bin/ps auxww" +ALPINE_psfailed="0" +ALPINE_PSTEST="-" + +@%:@ Check whether --with-ps-cmd was given. +if test "${with_ps_cmd+set}" = set; then : + withval=$with_ps_cmd; + if test "x$withval" = "xno" -o "x$withval" = "xyes" -o "x$withval" = "x" ; then + withval=$ALPINE_psefcmd + fi + ALPINE_PSTEST=`$withval | $EGREP "$withval" | $EGREP -v $EGREP` + if test -n "$ALPINE_PSTEST" ; then + ALPINE_psefcmd="$withval" + else + ALPINE_psfailed="1" + if test "x$ALPINE_psefcmd" != "x$withval" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: failed command $withval. Trying $ALPINE_psefcmd" >&5 +$as_echo "$as_me: WARNING: failed command $withval. Trying $ALPINE_psefcmd" >&2;} + fi + fi + +fi + +if test "$ALPINE_psfailed" = "1" -o "$ALPINE_PSTEST" = "-" ; then + withval="$ALPINE_psefcmd" + ALPINE_PSTEST=`$withval | $EGREP "$withval" | $EGREP -v $EGREP` + if test -z "$ALPINE_PSTEST" ; then + ALPINE_psfailed="1" + else + ALPINE_psfailed="0" + fi +fi +if test "$ALPINE_psfailed" = "0" ; then + +cat >>confdefs.h <<_ACEOF +@%:@define PSEFCMD "$ALPINE_psefcmd" +_ACEOF + +fi + case $host in *apple-darwin*) if test -d /opt/local ; then @@ -15640,12 +15683,13 @@ else ;; *-apple-darwin*) alpine_SSLTYPE="nopwd" + alpine_SSLCERTS_ORIG="/System/Library/OpenSSL/certs" if test -d /usr/local/opt/openssl ; then - alpine_SSLDIR="/usr/local/opt/openssl" - alpine_SSLINCLUDE="$alpine_SSLDIR/include" - alpine_SSLLIB="$alpine_SSLDIR/lib" - alpine_SSLCERTS="$alpine_SSLDIR/certs" - alpine_SSLKEYS="$alpine_SSLDIR/private" + alpine_SSLDIR="/usr/local/opt/openssl" + alpine_SSLINCLUDE="$alpine_SSLDIR/include" + alpine_SSLLIB="$alpine_SSLDIR/lib" + alpine_SSLCERTS="$alpine_SSLDIR/certs" + alpine_SSLKEYS="$alpine_SSLDIR/private" elif test -d /opt/local/etc/openssl ; then alpine_SSLDIR="/opt/local" alpine_SSLINCLUDE="$alpine_SSLDIR/include" @@ -17500,7 +17544,7 @@ $as_echo "@%:@define HAVE_REGEX_H 1" >>confdefs.h if test "x$alpine_REGEX" = "xyes" ; then CPPFLAGS="$CPPFLAGS -I${top_builddir}/regex" - LDFLAGS="$LDFLAGS -L${top_builddir}/regex -lregex" + LDFLAGS="$LDFLAGS -L${top_builddir}/regex" REGEX_BUILD=regex REGEX_MAKEFILE="$REGEX_BUILD/Makefile" fi @@ -19620,6 +19664,8 @@ else certdir="${alpine_SSLDIR}/certs" elif test -n "$alpine_SSLDIR" -a -d "${alpine_SSLDIR}/ssl/certs" ; then certdir="${alpine_SSLDIR}/ssl/certs" + elif test -n "$alpine_SSLCERTS_ORIG" -a -d "$alpine_SSLCERTS_ORIG" ; then + certdir="$alpine_SSLCERTS_ORIG" else { $as_echo "$as_me:${as_lineno-$LINENO}: SSL Problem: certificate directory not found" >&5 $as_echo "$as_me: SSL Problem: certificate directory not found" >&6;} @@ -19672,8 +19718,8 @@ $as_echo "$as_me: * * * in Alpine, this might be the reason for them." >&6;} c_client_specials="${c_client_specials}SSLDIR=$alpine_SSLDIR " fi - if test -n "$alpine_SSLCERTS" ; then - c_client_specials="${c_client_specials}SSLCERTS=$alpine_SSLCERTS " + if test -n "$certdir" ; then + c_client_specials="${c_client_specials}SSLCERTS=$certdir " fi if test -n "$alpine_SSLKEYS" ; then @@ -20289,7 +20335,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by alpine $as_me 2.19.3, which was +This file was extended by alpine $as_me 2.19.4, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20355,7 +20401,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -alpine config.status 2.19.3 +alpine config.status 2.19.4 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" |