newlib: avoid duplicate awk checks
Since AM_INIT_AUTOMAKE calls AC_PROG_AWK, and some configure.ac scripts call it too, we end up testing for awk multiple times. If we change NEWLIB_CONFIGURE to require the macro instead, then it makes sure it's always expanded, but only once. While we're here, do the same thing with AC_PROG_INSTALL since it is also called by AM_INIT_AUTOMAKE, although it doesn't currently result in duplicate configure checks.
This commit is contained in:
parent
3722489f1f
commit
6746e06043
|
@ -192,7 +192,10 @@ AC_CHECK_TOOL(AR, ar)
|
|||
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
||||
AC_CHECK_TOOL(READELF, readelf, :)
|
||||
|
||||
AC_PROG_INSTALL
|
||||
dnl We need these programs, but so does Automake. Require the macros to avoid
|
||||
dnl expanding them multiple times.
|
||||
AC_REQUIRE([AC_PROG_INSTALL])dnl
|
||||
AC_REQUIRE([AC_PROG_AWK])dnl
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
|
|
@ -4204,7 +4204,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -4467,48 +4466,6 @@ esac
|
|||
|
||||
|
||||
|
||||
for ac_prog in gawk mawk nawk awk
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_prog_AWK+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
AWK=$ac_cv_prog_AWK
|
||||
if test -n "$AWK"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
|
||||
$as_echo "$AWK" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
test -n "$AWK" && break
|
||||
done
|
||||
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
case `pwd` in
|
||||
*\ * | *\ *)
|
||||
|
@ -12013,7 +11970,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12016 "configure"
|
||||
#line 11973 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -12119,7 +12076,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12122 "configure"
|
||||
#line 12079 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -276,7 +276,6 @@ dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
|
|||
dnl line of the macro which fail because appropriate LDFLAGS are not set.
|
||||
_LT_DECL_SED
|
||||
_LT_PROG_ECHO_BACKSLASH
|
||||
AC_PROG_AWK
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
LT_INIT([win32-dll])
|
||||
fi
|
||||
|
|
|
@ -3821,7 +3821,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11588,7 +11587,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11591 "configure"
|
||||
#line 11590 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11694,7 +11693,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11697 "configure"
|
||||
#line 11696 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3936,7 +3936,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11712,7 +11711,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11715 "configure"
|
||||
#line 11714 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11818,7 +11817,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11821 "configure"
|
||||
#line 11820 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3496,7 +3496,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3883,7 +3883,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11650,7 +11649,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11653 "configure"
|
||||
#line 11652 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11756,7 +11755,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11759 "configure"
|
||||
#line 11758 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3823,7 +3823,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11590,7 +11589,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11593 "configure"
|
||||
#line 11592 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11696,7 +11695,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11699 "configure"
|
||||
#line 11698 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3519,7 +3519,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3516,7 +3516,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3496,7 +3496,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3561,7 +3561,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3497,7 +3497,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3853,7 +3853,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11620,7 +11619,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11623 "configure"
|
||||
#line 11622 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11726,7 +11725,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11729 "configure"
|
||||
#line 11728 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3827,7 +3827,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -4090,48 +4089,6 @@ esac
|
|||
|
||||
|
||||
|
||||
for ac_prog in gawk mawk nawk awk
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_prog_AWK+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
AWK=$ac_cv_prog_AWK
|
||||
if test -n "$AWK"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
|
||||
$as_echo "$AWK" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
test -n "$AWK" && break
|
||||
done
|
||||
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
case `pwd` in
|
||||
*\ * | *\ *)
|
||||
|
@ -11636,7 +11593,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11639 "configure"
|
||||
#line 11596 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11742,7 +11699,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11745 "configure"
|
||||
#line 11702 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -14,7 +14,6 @@ dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
|
|||
dnl line of the macro which fail because appropriate LDFLAGS are not set.
|
||||
_LT_DECL_SED
|
||||
_LT_PROG_ECHO_BACKSLASH
|
||||
AC_PROG_AWK
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
LT_INIT([win32-dll])
|
||||
fi
|
||||
|
|
|
@ -3825,7 +3825,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -4088,48 +4087,6 @@ esac
|
|||
|
||||
|
||||
|
||||
for ac_prog in gawk mawk nawk awk
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_prog_AWK+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
AWK=$ac_cv_prog_AWK
|
||||
if test -n "$AWK"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
|
||||
$as_echo "$AWK" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
test -n "$AWK" && break
|
||||
done
|
||||
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
case `pwd` in
|
||||
*\ * | *\ *)
|
||||
|
@ -11634,7 +11591,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11637 "configure"
|
||||
#line 11594 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11740,7 +11697,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11743 "configure"
|
||||
#line 11700 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -14,7 +14,6 @@ dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
|
|||
dnl line of the macro which fail because appropriate LDFLAGS are not set.
|
||||
_LT_DECL_SED
|
||||
_LT_PROG_ECHO_BACKSLASH
|
||||
AC_PROG_AWK
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
LT_INIT([win32-dll])
|
||||
fi
|
||||
|
|
|
@ -3825,7 +3825,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11592,7 +11591,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11595 "configure"
|
||||
#line 11594 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11698,7 +11697,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11701 "configure"
|
||||
#line 11700 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3821,7 +3821,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -4084,48 +4083,6 @@ esac
|
|||
|
||||
|
||||
|
||||
for ac_prog in gawk mawk nawk awk
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_prog_AWK+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
AWK=$ac_cv_prog_AWK
|
||||
if test -n "$AWK"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
|
||||
$as_echo "$AWK" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
test -n "$AWK" && break
|
||||
done
|
||||
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
case `pwd` in
|
||||
*\ * | *\ *)
|
||||
|
@ -11630,7 +11587,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11633 "configure"
|
||||
#line 11590 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11736,7 +11693,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11739 "configure"
|
||||
#line 11696 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -14,7 +14,6 @@ dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
|
|||
dnl line of the macro which fail because appropriate LDFLAGS are not set.
|
||||
_LT_DECL_SED
|
||||
_LT_PROG_ECHO_BACKSLASH
|
||||
AC_PROG_AWK
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
LT_INIT([win32-dll])
|
||||
fi
|
||||
|
|
|
@ -3826,7 +3826,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -11593,7 +11592,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11596 "configure"
|
||||
#line 11595 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11699,7 +11698,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11702 "configure"
|
||||
#line 11701 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -3821,7 +3821,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
@ -4084,48 +4083,6 @@ esac
|
|||
|
||||
|
||||
|
||||
for ac_prog in gawk mawk nawk awk
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_prog_AWK+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
AWK=$ac_cv_prog_AWK
|
||||
if test -n "$AWK"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
|
||||
$as_echo "$AWK" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
test -n "$AWK" && break
|
||||
done
|
||||
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
case `pwd` in
|
||||
*\ * | *\ *)
|
||||
|
@ -11630,7 +11587,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11633 "configure"
|
||||
#line 11590 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
@ -11736,7 +11693,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 11739 "configure"
|
||||
#line 11696 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
@ -14,7 +14,6 @@ dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
|
|||
dnl line of the macro which fail because appropriate LDFLAGS are not set.
|
||||
_LT_DECL_SED
|
||||
_LT_PROG_ECHO_BACKSLASH
|
||||
AC_PROG_AWK
|
||||
if test "${use_libtool}" = "yes"; then
|
||||
LT_INIT([win32-dll])
|
||||
fi
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3498,7 +3498,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3503,7 +3503,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
|
@ -3495,7 +3495,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */
|
||||
ac_given_INSTALL=$INSTALL
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue