@@ -693,6 +693,9 @@ MKDIR_P
693693AWK
694694LN_S
695695TAR
696+ INSTALL_DATA
697+ INSTALL_SCRIPT
698+ INSTALL_PROGRAM
696699WINDRES
697700DLLWRAP
698701DLLTOOL
@@ -6855,6 +6858,106 @@ fi
68556858
68566859fi
68576860
6861+ # Find a good install program. We prefer a C program (faster),
6862+ # so one script is as good as another. But avoid the broken or
6863+ # incompatible versions:
6864+ # SysV /etc/install, /usr/sbin/install
6865+ # SunOS /usr/etc/install
6866+ # IRIX /sbin/install
6867+ # AIX /bin/install
6868+ # AmigaOS /C/install, which installs bootblocks on floppy discs
6869+ # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
6870+ # AFS /usr/afsws/bin/install, which mishandles nonexistent args
6871+ # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
6872+ # OS/2's system install, which has a completely different semantic
6873+ # ./install, which can be erroneously created by make from ./install.sh.
6874+ # Reject install programs that cannot install multiple files.
6875+ { $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
6876+ $as_echo_n "checking for a BSD-compatible install... " >&6; }
6877+ if test -z "$INSTALL"; then
6878+ if test "${ac_cv_path_install+set}" = set; then
6879+ $as_echo_n "(cached) " >&6
6880+ else
6881+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6882+ for as_dir in $PATH
6883+ do
6884+ IFS=$as_save_IFS
6885+ test -z "$as_dir" && as_dir=.
6886+ # Account for people who put trailing slashes in PATH elements.
6887+ case $as_dir/ in
6888+ ./ | .// | /cC/* | \
6889+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
6890+ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
6891+ /usr/ucb/* ) ;;
6892+ *)
6893+ # OSF1 and SCO ODT 3.0 have their own names for install.
6894+ # Don't use installbsd from OSF since it installs stuff as root
6895+ # by default.
6896+ for ac_prog in ginstall scoinst install; do
6897+ for ac_exec_ext in '' $ac_executable_extensions; do
6898+ if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
6899+ if test $ac_prog = install &&
6900+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
6901+ # AIX install. It has an incompatible calling convention.
6902+ :
6903+ elif test $ac_prog = install &&
6904+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
6905+ # program-specific install script used by HP pwplus--don't use.
6906+ :
6907+ else
6908+ rm -rf conftest.one conftest.two conftest.dir
6909+ echo one > conftest.one
6910+ echo two > conftest.two
6911+ mkdir conftest.dir
6912+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
6913+ test -s conftest.one && test -s conftest.two &&
6914+ test -s conftest.dir/conftest.one &&
6915+ test -s conftest.dir/conftest.two
6916+ then
6917+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
6918+ break 3
6919+ fi
6920+ fi
6921+ fi
6922+ done
6923+ done
6924+ ;;
6925+ esac
6926+
6927+ done
6928+ IFS=$as_save_IFS
6929+
6930+ rm -rf conftest.one conftest.two conftest.dir
6931+
6932+ fi
6933+ if test "${ac_cv_path_install+set}" = set; then
6934+ INSTALL=$ac_cv_path_install
6935+ else
6936+ # As a last resort, use the slow shell script. Don't cache a
6937+ # value for INSTALL within a source directory, because that will
6938+ # break other packages using the cache if that directory is
6939+ # removed, or if the value is a relative name.
6940+ INSTALL=$ac_install_sh
6941+ fi
6942+ fi
6943+ { $as_echo "$as_me:$LINENO: result: $INSTALL" >&5
6944+ $as_echo "$INSTALL" >&6; }
6945+
6946+ # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
6947+ # It thinks the first close brace ends the variable substitution.
6948+ test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
6949+
6950+ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
6951+
6952+ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
6953+
6954+ # When Autoconf chooses install-sh as install program it tries to generate
6955+ # a relative path to it in each makefile where it subsitutes it. This clashes
6956+ # with our Makefile.global concept. This workaround helps.
6957+ case $INSTALL in
6958+ *install-sh*) INSTALL='';;
6959+ esac
6960+
68586961# Extract the first word of "tar", so it can be a program name with args.
68596962set dummy tar; ac_word=$2
68606963{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
@@ -30284,6 +30387,7 @@ gives unlimited permission to copy, distribute and modify it."
3028430387
3028530388ac_pwd='$ac_pwd'
3028630389srcdir='$srcdir'
30390+ INSTALL='$INSTALL'
3028730391MKDIR_P='$MKDIR_P'
3028830392AWK='$AWK'
3028930393test -n "\$AWK" || AWK=awk
@@ -30897,6 +31001,10 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
3089731001 # CONFIG_FILE
3089831002 #
3089931003
31004+ case $INSTALL in
31005+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
31006+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
31007+ esac
3090031008 ac_MKDIR_P=$MKDIR_P
3090131009 case $MKDIR_P in
3090231010 [\\/$]* | ?:[\\/]* ) ;;
@@ -30957,6 +31065,7 @@ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
3095731065s&@builddir@&$ac_builddir&;t t
3095831066s&@abs_builddir@&$ac_abs_builddir&;t t
3095931067s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
31068+ s&@INSTALL@&$ac_INSTALL&;t t
3096031069s&@MKDIR_P@&$ac_MKDIR_P&;t t
3096131070$ac_datarootdir_hack
3096231071"