Started TWAIN implementation.
Marcus Meissner <marcus@jet.franken.de>
Merged into WineHQ, made sure it works without SANE.
diff --git a/configure b/configure
index ad37288..1f20bf3 100755
--- a/configure
+++ b/configure
@@ -6530,7 +6530,156 @@
fi
-echo "$as_me:6533: checking for FT_Init_FreeType in -lfreetype" >&5
+# Extract the first word of "sane-config", so it can be a program name with args.
+set dummy sane-config; ac_word=$2
+echo "$as_me:6535: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_sane_devel+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$sane_devel"; then
+ ac_cv_prog_sane_devel="$sane_devel" # Let the user override the test.
+else
+ ac_save_IFS=$IFS; IFS=$ac_path_separator
+ac_dummy="$PATH"
+for ac_dir in $ac_dummy; do
+ IFS=$ac_save_IFS
+ test -z "$ac_dir" && ac_dir=.
+ $as_executable_p "$ac_dir/$ac_word" || continue
+ac_cv_prog_sane_devel="sane-config"
+echo "$as_me:6550: found $ac_dir/$ac_word" >&5
+break
+done
+
+ test -z "$ac_cv_prog_sane_devel" && ac_cv_prog_sane_devel="no"
+fi
+fi
+sane_devel=$ac_cv_prog_sane_devel
+if test -n "$sane_devel"; then
+ echo "$as_me:6559: result: $sane_devel" >&5
+echo "${ECHO_T}$sane_devel" >&6
+else
+ echo "$as_me:6562: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+if test "$sane_devel" = "no"
+then
+ SANELIBS=""
+ SANEINCL=""
+else
+ SANELIBS="`$sane_devel --libs`"
+ SANEINCL="`$sane_devel --cflags`"
+ ac_save_CPPFLAGS="$CPPFLAGS"
+ ac_save_LIBS="$LIBS"
+ CPPFLAGS="$CPPFLAGS $SANEINCL"
+ LIBS="$LIBS $SANELIBS"
+ echo "$as_me:6577: checking for sane/sane.h" >&5
+echo $ECHO_N "checking for sane/sane.h... $ECHO_C" >&6
+if test "${ac_cv_header_sane_sane_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line 6583 "configure"
+#include "confdefs.h"
+#include <sane/sane.h>
+_ACEOF
+if { (eval echo "$as_me:6587: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:6593: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_cv_header_sane_sane_h=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_cv_header_sane_sane_h=no
+fi
+rm -f conftest.err conftest.$ac_ext
+fi
+echo "$as_me:6612: result: $ac_cv_header_sane_sane_h" >&5
+echo "${ECHO_T}$ac_cv_header_sane_sane_h" >&6
+if test $ac_cv_header_sane_sane_h = yes; then
+
+ echo "$as_me:6616: checking for sane_open in -lsane" >&5
+echo $ECHO_N "checking for sane_open in -lsane... $ECHO_C" >&6
+if test "${ac_cv_lib_sane_sane_open+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lsane $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line 6624 "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char sane_open ();
+int
+main ()
+{
+sane_open ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:6643: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:6646: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:6649: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:6652: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_sane_sane_open=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_sane_sane_open=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:6663: result: $ac_cv_lib_sane_sane_open" >&5
+echo "${ECHO_T}$ac_cv_lib_sane_sane_open" >&6
+if test $ac_cv_lib_sane_sane_open = yes; then
+
+cat >>confdefs.h <<\EOF
+#define HAVE_SANE 1
+EOF
+
+else
+ SANELIBS=""
+
+fi
+
+fi
+
+ LIBS="$ac_save_LIBS"
+ CPPFLAGS="$ac_save_CPPFLAGS"
+fi
+
+echo "$as_me:6682: checking for FT_Init_FreeType in -lfreetype" >&5
echo $ECHO_N "checking for FT_Init_FreeType in -lfreetype... $ECHO_C" >&6
if test "${ac_cv_lib_freetype_FT_Init_FreeType+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6538,7 +6687,7 @@
ac_check_lib_save_LIBS=$LIBS
LIBS="-lfreetype $X_LIBS $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 6541 "configure"
+#line 6690 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -6557,16 +6706,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6560: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6709: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6563: \$? = $ac_status" >&5
+ echo "$as_me:6712: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6566: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6715: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6569: \$? = $ac_status" >&5
+ echo "$as_me:6718: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_freetype_FT_Init_FreeType=yes
else
@@ -6577,7 +6726,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:6580: result: $ac_cv_lib_freetype_FT_Init_FreeType" >&5
+echo "$as_me:6729: result: $ac_cv_lib_freetype_FT_Init_FreeType" >&5
echo "${ECHO_T}$ac_cv_lib_freetype_FT_Init_FreeType" >&6
if test $ac_cv_lib_freetype_FT_Init_FreeType = yes; then
ft_lib=yes
@@ -6593,7 +6742,7 @@
else
# Extract the first word of "freetype-config", so it can be a program name with args.
set dummy freetype-config; ac_word=$2
-echo "$as_me:6596: checking for $ac_word" >&5
+echo "$as_me:6745: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ft_devel+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6608,7 +6757,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ft_devel="freetype-config"
-echo "$as_me:6611: found $ac_dir/$ac_word" >&5
+echo "$as_me:6760: found $ac_dir/$ac_word" >&5
break
done
@@ -6617,10 +6766,10 @@
fi
ft_devel=$ac_cv_prog_ft_devel
if test -n "$ft_devel"; then
- echo "$as_me:6620: result: $ft_devel" >&5
+ echo "$as_me:6769: result: $ft_devel" >&5
echo "${ECHO_T}$ft_devel" >&6
else
- echo "$as_me:6623: result: no" >&5
+ echo "$as_me:6772: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -6628,7 +6777,7 @@
then
# Extract the first word of "freetype2-config", so it can be a program name with args.
set dummy freetype2-config; ac_word=$2
-echo "$as_me:6631: checking for $ac_word" >&5
+echo "$as_me:6780: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ft_devel2+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6643,7 +6792,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ft_devel2="freetype2-config"
-echo "$as_me:6646: found $ac_dir/$ac_word" >&5
+echo "$as_me:6795: found $ac_dir/$ac_word" >&5
break
done
@@ -6652,10 +6801,10 @@
fi
ft_devel2=$ac_cv_prog_ft_devel2
if test -n "$ft_devel2"; then
- echo "$as_me:6655: result: $ft_devel2" >&5
+ echo "$as_me:6804: result: $ft_devel2" >&5
echo "${ECHO_T}$ft_devel2" >&6
else
- echo "$as_me:6658: result: no" >&5
+ echo "$as_me:6807: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -6685,23 +6834,23 @@
freetype/internal/sfnt.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:6688: checking for $ac_header" >&5
+echo "$as_me:6837: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6694 "configure"
+#line 6843 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:6698: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:6847: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:6704: \$? = $ac_status" >&5
+ echo "$as_me:6853: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -6720,7 +6869,7 @@
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:6723: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:6872: result: `eval echo '${'$as_ac_Header'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
@@ -6731,18 +6880,18 @@
done
cat >conftest.$ac_ext <<_ACEOF
-#line 6734 "configure"
+#line 6883 "configure"
#include "confdefs.h"
#include <ft2build.h>
#include <freetype/fttrigon.h>
_ACEOF
-if { (eval echo "$as_me:6739: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:6888: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:6745: \$? = $ac_status" >&5
+ echo "$as_me:6894: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -6782,13 +6931,13 @@
fi
fi
-echo "$as_me:6785: checking for parport header/ppdev.h" >&5
+echo "$as_me:6934: checking for parport header/ppdev.h" >&5
echo $ECHO_N "checking for parport header/ppdev.h... $ECHO_C" >&6
if test "${ac_cv_c_ppdev+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6791 "configure"
+#line 6940 "configure"
#include "confdefs.h"
#include <linux/ppdev.h>
int
@@ -6800,16 +6949,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6803: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6952: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6806: \$? = $ac_status" >&5
+ echo "$as_me:6955: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6809: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6958: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6812: \$? = $ac_status" >&5
+ echo "$as_me:6961: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_ppdev="yes"
else
@@ -6820,7 +6969,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6823: result: $ac_cv_c_ppdev" >&5
+echo "$as_me:6972: result: $ac_cv_c_ppdev" >&5
echo "${ECHO_T}$ac_cv_c_ppdev" >&6
if test "$ac_cv_c_ppdev" = "yes"
then
@@ -6831,13 +6980,13 @@
fi
-echo "$as_me:6834: checking for GNU style IPX support" >&5
+echo "$as_me:6983: checking for GNU style IPX support" >&5
echo $ECHO_N "checking for GNU style IPX support... $ECHO_C" >&6
if test "${ac_cv_c_ipx_gnu+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6840 "configure"
+#line 6989 "configure"
#include "confdefs.h"
#include <sys/socket.h>
#include <netipx/ipx.h>
@@ -6850,16 +6999,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6853: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7002: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6856: \$? = $ac_status" >&5
+ echo "$as_me:7005: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6859: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7008: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6862: \$? = $ac_status" >&5
+ echo "$as_me:7011: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_ipx_gnu="yes"
else
@@ -6870,7 +7019,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6873: result: $ac_cv_c_ipx_gnu" >&5
+echo "$as_me:7022: result: $ac_cv_c_ipx_gnu" >&5
echo "${ECHO_T}$ac_cv_c_ipx_gnu" >&6
if test "$ac_cv_c_ipx_gnu" = "yes"
then
@@ -6883,13 +7032,13 @@
if test "$ac_cv_c_ipx_gnu" = "no"
then
- echo "$as_me:6886: checking for linux style IPX support" >&5
+ echo "$as_me:7035: checking for linux style IPX support" >&5
echo $ECHO_N "checking for linux style IPX support... $ECHO_C" >&6
if test "${ac_cv_c_ipx_linux+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6892 "configure"
+#line 7041 "configure"
#include "confdefs.h"
#include <sys/socket.h>
#include <asm/types.h>
@@ -6903,16 +7052,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6906: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7055: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6909: \$? = $ac_status" >&5
+ echo "$as_me:7058: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6912: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7061: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6915: \$? = $ac_status" >&5
+ echo "$as_me:7064: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_ipx_linux="yes"
else
@@ -6923,7 +7072,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6926: result: $ac_cv_c_ipx_linux" >&5
+echo "$as_me:7075: result: $ac_cv_c_ipx_linux" >&5
echo "${ECHO_T}$ac_cv_c_ipx_linux" >&6
if test "$ac_cv_c_ipx_linux" = "yes"
then
@@ -6938,23 +7087,23 @@
for ac_header in sys/soundcard.h machine/soundcard.h soundcard.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:6941: checking for $ac_header" >&5
+echo "$as_me:7090: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6947 "configure"
+#line 7096 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:6951: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:7100: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:6957: \$? = $ac_status" >&5
+ echo "$as_me:7106: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -6973,7 +7122,7 @@
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:6976: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:7125: result: `eval echo '${'$as_ac_Header'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
@@ -6983,13 +7132,13 @@
fi
done
-echo "$as_me:6986: checking for Open Sound System" >&5
+echo "$as_me:7135: checking for Open Sound System" >&5
echo $ECHO_N "checking for Open Sound System... $ECHO_C" >&6
if test "${ac_cv_c_opensoundsystem+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6992 "configure"
+#line 7141 "configure"
#include "confdefs.h"
#if defined(HAVE_SYS_SOUNDCARD_H)
@@ -7014,16 +7163,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7017: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7166: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7020: \$? = $ac_status" >&5
+ echo "$as_me:7169: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7023: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7172: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7026: \$? = $ac_status" >&5
+ echo "$as_me:7175: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_opensoundsystem="yes"
else
@@ -7033,7 +7182,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7036: result: $ac_cv_c_opensoundsystem" >&5
+echo "$as_me:7185: result: $ac_cv_c_opensoundsystem" >&5
echo "${ECHO_T}$ac_cv_c_opensoundsystem" >&6
if test "$ac_cv_c_opensoundsystem" = "yes"
@@ -7045,13 +7194,13 @@
fi
-echo "$as_me:7048: checking for Open Sound System/MIDI interface" >&5
+echo "$as_me:7197: checking for Open Sound System/MIDI interface" >&5
echo $ECHO_N "checking for Open Sound System/MIDI interface... $ECHO_C" >&6
if test "${ac_cv_c_opensoundsystem_midi+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7054 "configure"
+#line 7203 "configure"
#include "confdefs.h"
#if defined(HAVE_SYS_SOUNDCARD_H)
@@ -7076,16 +7225,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7079: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7228: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7082: \$? = $ac_status" >&5
+ echo "$as_me:7231: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7085: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7234: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7088: \$? = $ac_status" >&5
+ echo "$as_me:7237: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_opensoundsystem_midi="yes"
else
@@ -7095,7 +7244,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7098: result: $ac_cv_c_opensoundsystem_midi" >&5
+echo "$as_me:7247: result: $ac_cv_c_opensoundsystem_midi" >&5
echo "${ECHO_T}$ac_cv_c_opensoundsystem_midi" >&6
if test "$ac_cv_c_opensoundsystem_midi" = "yes"
@@ -7109,7 +7258,7 @@
# Extract the first word of "artsc-config", so it can be a program name with args.
set dummy artsc-config; ac_word=$2
-echo "$as_me:7112: checking for $ac_word" >&5
+echo "$as_me:7261: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_ARTSCCONFIG+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7126,7 +7275,7 @@
test -z "$ac_dir" && ac_dir=.
if $as_executable_p "$ac_dir/$ac_word"; then
ac_cv_path_ARTSCCONFIG="$ac_dir/$ac_word"
- echo "$as_me:7129: found $ac_dir/$ac_word" >&5
+ echo "$as_me:7278: found $ac_dir/$ac_word" >&5
break
fi
done
@@ -7137,14 +7286,14 @@
ARTSCCONFIG=$ac_cv_path_ARTSCCONFIG
if test -n "$ARTSCCONFIG"; then
- echo "$as_me:7140: result: $ARTSCCONFIG" >&5
+ echo "$as_me:7289: result: $ARTSCCONFIG" >&5
echo "${ECHO_T}$ARTSCCONFIG" >&6
else
- echo "$as_me:7143: result: no" >&5
+ echo "$as_me:7292: result: no" >&5
echo "${ECHO_T}no" >&6
fi
-echo "$as_me:7147: checking for aRts Sound server" >&5
+echo "$as_me:7296: checking for aRts Sound server" >&5
echo $ECHO_N "checking for aRts Sound server... $ECHO_C" >&6
if test "${ac_cv_c_artsserver+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7159,7 +7308,7 @@
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $ARTSC_CFLAGS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7162 "configure"
+#line 7311 "configure"
#include "confdefs.h"
#include <artsc.h>
@@ -7175,16 +7324,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7178: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7327: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7181: \$? = $ac_status" >&5
+ echo "$as_me:7330: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7184: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7333: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7187: \$? = $ac_status" >&5
+ echo "$as_me:7336: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_artsserver=yes
@@ -7197,7 +7346,7 @@
CFLAGS="$save_CFLAGS"
fi
fi
-echo "$as_me:7200: result: $ac_cv_c_artsserver" >&5
+echo "$as_me:7349: result: $ac_cv_c_artsserver" >&5
echo "${ECHO_T}$ac_cv_c_artsserver" >&6
if test "$ac_cv_c_artsserver" = "yes"
@@ -7212,7 +7361,7 @@
fi
-echo "$as_me:7215: checking whether mmap64 works defined as mmap" >&5
+echo "$as_me:7364: checking whether mmap64 works defined as mmap" >&5
echo $ECHO_N "checking whether mmap64 works defined as mmap... $ECHO_C" >&6
if test "${ac_cv_mmap64_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7221,7 +7370,7 @@
ac_cv_mmap64_works="no"
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7224 "configure"
+#line 7373 "configure"
#include "confdefs.h"
#define _FILE_OFFSET_BITS 64
@@ -7251,15 +7400,15 @@
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7254: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7403: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7257: \$? = $ac_status" >&5
+ echo "$as_me:7406: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7259: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7408: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7262: \$? = $ac_status" >&5
+ echo "$as_me:7411: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_mmap64_works="yes"
else
@@ -7271,7 +7420,7 @@
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
-echo "$as_me:7274: result: $ac_cv_mmap64_works" >&5
+echo "$as_me:7423: result: $ac_cv_mmap64_works" >&5
echo "${ECHO_T}$ac_cv_mmap64_works" >&6
if test "$ac_cv_mmap64_works" = "yes"
@@ -7286,7 +7435,7 @@
if test "x${GCC}" = "xyes"
then
CFLAGS="$CFLAGS -Wall"
- echo "$as_me:7289: checking for gcc strength-reduce bug" >&5
+ echo "$as_me:7438: checking for gcc strength-reduce bug" >&5
echo $ECHO_N "checking for gcc strength-reduce bug... $ECHO_C" >&6
if test "${ac_cv_c_gcc_strength_bug+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7295,7 +7444,7 @@
ac_cv_c_gcc_strength_bug="yes"
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7298 "configure"
+#line 7447 "configure"
#include "confdefs.h"
int L[4] = {0,1,2,3};
@@ -7311,15 +7460,15 @@
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7314: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7463: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7317: \$? = $ac_status" >&5
+ echo "$as_me:7466: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7319: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7468: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7322: \$? = $ac_status" >&5
+ echo "$as_me:7471: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_gcc_strength_bug="no"
else
@@ -7331,14 +7480,14 @@
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
-echo "$as_me:7334: result: $ac_cv_c_gcc_strength_bug" >&5
+echo "$as_me:7483: result: $ac_cv_c_gcc_strength_bug" >&5
echo "${ECHO_T}$ac_cv_c_gcc_strength_bug" >&6
if test "$ac_cv_c_gcc_strength_bug" = "yes"
then
CFLAGS="$CFLAGS -fno-strength-reduce"
fi
- echo "$as_me:7341: checking for gcc -mpreferred-stack-boundary=2 support" >&5
+ echo "$as_me:7490: checking for gcc -mpreferred-stack-boundary=2 support" >&5
echo $ECHO_N "checking for gcc -mpreferred-stack-boundary=2 support... $ECHO_C" >&6
if test "${ac_cv_c_gcc_stack_boundary+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7346,7 +7495,7 @@
saved_cflags=$CFLAGS
CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
cat >conftest.$ac_ext <<_ACEOF
-#line 7349 "configure"
+#line 7498 "configure"
#include "confdefs.h"
int
@@ -7358,16 +7507,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7361: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7510: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7364: \$? = $ac_status" >&5
+ echo "$as_me:7513: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7367: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7516: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7370: \$? = $ac_status" >&5
+ echo "$as_me:7519: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_gcc_stack_boundary="yes"
else
@@ -7379,7 +7528,7 @@
CFLAGS=$saved_cflags
fi
-echo "$as_me:7382: result: $ac_cv_c_gcc_stack_boundary" >&5
+echo "$as_me:7531: result: $ac_cv_c_gcc_stack_boundary" >&5
echo "${ECHO_T}$ac_cv_c_gcc_stack_boundary" >&6
if test "$ac_cv_c_gcc_stack_boundary" = "yes"
then
@@ -7387,7 +7536,7 @@
fi
fi
-echo "$as_me:7390: checking whether .type must sit inside a .def directive" >&5
+echo "$as_me:7539: checking whether .type must sit inside a .def directive" >&5
echo $ECHO_N "checking whether .type must sit inside a .def directive... $ECHO_C" >&6
if test "${ac_cv_c_type_in_def+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7401,7 +7550,7 @@
.long 0
EOF
cat >conftest.$ac_ext <<_ACEOF
-#line 7404 "configure"
+#line 7553 "configure"
#include "confdefs.h"
int
@@ -7413,16 +7562,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7416: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7565: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7419: \$? = $ac_status" >&5
+ echo "$as_me:7568: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7422: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7571: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7425: \$? = $ac_status" >&5
+ echo "$as_me:7574: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_type_in_def="yes"
else
@@ -7433,7 +7582,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$saved_libs
fi
-echo "$as_me:7436: result: $ac_cv_c_type_in_def" >&5
+echo "$as_me:7585: result: $ac_cv_c_type_in_def" >&5
echo "${ECHO_T}$ac_cv_c_type_in_def" >&6
if test "$ac_cv_c_type_in_def" = "yes"
then
@@ -7444,7 +7593,7 @@
fi
-echo "$as_me:7447: checking whether external symbols need an underscore prefix" >&5
+echo "$as_me:7596: checking whether external symbols need an underscore prefix" >&5
echo $ECHO_N "checking whether external symbols need an underscore prefix... $ECHO_C" >&6
if test "${ac_cv_c_extern_prefix+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7457,7 +7606,7 @@
.long 0
EOF
cat >conftest.$ac_ext <<_ACEOF
-#line 7460 "configure"
+#line 7609 "configure"
#include "confdefs.h"
extern int ac_test;
int
@@ -7469,16 +7618,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7472: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7621: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7475: \$? = $ac_status" >&5
+ echo "$as_me:7624: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7478: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7627: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7481: \$? = $ac_status" >&5
+ echo "$as_me:7630: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_extern_prefix="yes"
else
@@ -7489,7 +7638,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$saved_libs
fi
-echo "$as_me:7492: result: $ac_cv_c_extern_prefix" >&5
+echo "$as_me:7641: result: $ac_cv_c_extern_prefix" >&5
echo "${ECHO_T}$ac_cv_c_extern_prefix" >&6
if test "$ac_cv_c_extern_prefix" = "yes"
then
@@ -7500,7 +7649,7 @@
fi
-echo "$as_me:7503: checking whether stdcall symbols need to be decorated" >&5
+echo "$as_me:7652: checking whether stdcall symbols need to be decorated" >&5
echo $ECHO_N "checking whether stdcall symbols need to be decorated... $ECHO_C" >&6
if test "${ac_cv_c_stdcall_decoration+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7520,7 +7669,7 @@
EOF
fi
cat >conftest.$ac_ext <<_ACEOF
-#line 7523 "configure"
+#line 7672 "configure"
#include "confdefs.h"
extern void __attribute__((__stdcall__)) ac_test(void);
int
@@ -7532,16 +7681,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7535: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7684: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7538: \$? = $ac_status" >&5
+ echo "$as_me:7687: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7541: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7690: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7544: \$? = $ac_status" >&5
+ echo "$as_me:7693: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_stdcall_decoration="yes"
else
@@ -7552,7 +7701,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$saved_libs
fi
-echo "$as_me:7555: result: $ac_cv_c_stdcall_decoration" >&5
+echo "$as_me:7704: result: $ac_cv_c_stdcall_decoration" >&5
echo "${ECHO_T}$ac_cv_c_stdcall_decoration" >&6
if test "$ac_cv_c_stdcall_decoration" = "yes"
then
@@ -7563,7 +7712,7 @@
fi
-echo "$as_me:7566: checking whether assembler accepts .string" >&5
+echo "$as_me:7715: checking whether assembler accepts .string" >&5
echo $ECHO_N "checking whether assembler accepts .string... $ECHO_C" >&6
if test "${ac_cv_c_asm_string+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7574,7 +7723,7 @@
.string "test"
EOF
cat >conftest.$ac_ext <<_ACEOF
-#line 7577 "configure"
+#line 7726 "configure"
#include "confdefs.h"
int
@@ -7586,16 +7735,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7589: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7738: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7592: \$? = $ac_status" >&5
+ echo "$as_me:7741: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7595: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7744: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7598: \$? = $ac_status" >&5
+ echo "$as_me:7747: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_asm_string="yes"
else
@@ -7606,7 +7755,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$saved_libs
fi
-echo "$as_me:7609: result: $ac_cv_c_asm_string" >&5
+echo "$as_me:7758: result: $ac_cv_c_asm_string" >&5
echo "${ECHO_T}$ac_cv_c_asm_string" >&6
if test "$ac_cv_c_asm_string" = "yes"
then
@@ -7621,7 +7770,7 @@
LDDLLFLAGS=""
if test "$LIBEXT" = "so"
then
- echo "$as_me:7624: checking whether we can build a GNU style ELF dll" >&5
+ echo "$as_me:7773: checking whether we can build a GNU style ELF dll" >&5
echo $ECHO_N "checking whether we can build a GNU style ELF dll... $ECHO_C" >&6
if test "${ac_cv_c_dll_gnuelf+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7629,7 +7778,7 @@
saved_cflags=$CFLAGS
CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
cat >conftest.$ac_ext <<_ACEOF
-#line 7632 "configure"
+#line 7781 "configure"
#include "confdefs.h"
int
@@ -7641,16 +7790,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7644: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7793: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7647: \$? = $ac_status" >&5
+ echo "$as_me:7796: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7650: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7799: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7653: \$? = $ac_status" >&5
+ echo "$as_me:7802: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_dll_gnuelf="yes"
else
@@ -7662,14 +7811,14 @@
CFLAGS=$saved_cflags
fi
-echo "$as_me:7665: result: $ac_cv_c_dll_gnuelf" >&5
+echo "$as_me:7814: result: $ac_cv_c_dll_gnuelf" >&5
echo "${ECHO_T}$ac_cv_c_dll_gnuelf" >&6
if test "$ac_cv_c_dll_gnuelf" = "yes"
then
LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
LDDLLFLAGS="-Wl,-Bsymbolic"
else
- echo "$as_me:7672: checking whether we can build a UnixWare (Solaris) dll" >&5
+ echo "$as_me:7821: checking whether we can build a UnixWare (Solaris) dll" >&5
echo $ECHO_N "checking whether we can build a UnixWare (Solaris) dll... $ECHO_C" >&6
if test "${ac_cv_c_dll_unixware+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7677,7 +7826,7 @@
saved_cflags=$CFLAGS
CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
cat >conftest.$ac_ext <<_ACEOF
-#line 7680 "configure"
+#line 7829 "configure"
#include "confdefs.h"
int
@@ -7689,16 +7838,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7692: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7841: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7695: \$? = $ac_status" >&5
+ echo "$as_me:7844: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7698: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7847: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7701: \$? = $ac_status" >&5
+ echo "$as_me:7850: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_dll_unixware="yes"
else
@@ -7710,7 +7859,7 @@
CFLAGS=$saved_cflags
fi
-echo "$as_me:7713: result: $ac_cv_c_dll_unixware" >&5
+echo "$as_me:7862: result: $ac_cv_c_dll_unixware" >&5
echo "${ECHO_T}$ac_cv_c_dll_unixware" >&6
if test "$ac_cv_c_dll_unixware" = "yes"
then
@@ -7723,7 +7872,7 @@
LIBEXT="a"
# Extract the first word of "dllwrap", so it can be a program name with args.
set dummy dllwrap; ac_word=$2
-echo "$as_me:7726: checking for $ac_word" >&5
+echo "$as_me:7875: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_DLLWRAP+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7738,7 +7887,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_DLLWRAP="dllwrap"
-echo "$as_me:7741: found $ac_dir/$ac_word" >&5
+echo "$as_me:7890: found $ac_dir/$ac_word" >&5
break
done
@@ -7747,10 +7896,10 @@
fi
DLLWRAP=$ac_cv_prog_DLLWRAP
if test -n "$DLLWRAP"; then
- echo "$as_me:7750: result: $DLLWRAP" >&5
+ echo "$as_me:7899: result: $DLLWRAP" >&5
echo "${ECHO_T}$DLLWRAP" >&6
else
- echo "$as_me:7753: result: no" >&5
+ echo "$as_me:7902: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -7765,7 +7914,7 @@
fi
if test "$LIBEXT" = "a"; then
- { { echo "$as_me:7768: error: could not find a way to build shared libraries.
+ { { echo "$as_me:7917: error: could not find a way to build shared libraries.
It is currently not possible to build Wine without shared library
(.so) support to allow transparent switch between .so and .dll files.
If you are using Linux, you will need a newer binutils.
@@ -7793,7 +7942,7 @@
wine_cv_libc_reentrant=no
- echo "$as_me:7796: checking for reentrant libc: __errno_location" >&5
+ echo "$as_me:7945: checking for reentrant libc: __errno_location" >&5
echo $ECHO_N "checking for reentrant libc: __errno_location... $ECHO_C" >&6
if test "${wine_cv_libc_r___errno_location+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7802,7 +7951,7 @@
wine_cv_libc_r___errno_location=yes
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7805 "configure"
+#line 7954 "configure"
#include "confdefs.h"
int myerrno = 0;
char buf[256];
@@ -7810,15 +7959,15 @@
main(){connect(0,buf,255); exit(!myerrno);}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7813: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7962: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7816: \$? = $ac_status" >&5
+ echo "$as_me:7965: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7818: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7967: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7821: \$? = $ac_status" >&5
+ echo "$as_me:7970: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_libc_r___errno_location=yes
else
@@ -7831,14 +7980,14 @@
fi
fi
-echo "$as_me:7834: result: $wine_cv_libc_r___errno_location" >&5
+echo "$as_me:7983: result: $wine_cv_libc_r___errno_location" >&5
echo "${ECHO_T}$wine_cv_libc_r___errno_location" >&6
if test "$wine_cv_libc_r___errno_location" = "yes"
then
wine_cv_libc_reentrant=__errno_location
fi
- echo "$as_me:7841: checking for reentrant libc: __error" >&5
+ echo "$as_me:7990: checking for reentrant libc: __error" >&5
echo $ECHO_N "checking for reentrant libc: __error... $ECHO_C" >&6
if test "${wine_cv_libc_r___error+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7847,7 +7996,7 @@
wine_cv_libc_r___error=yes
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7850 "configure"
+#line 7999 "configure"
#include "confdefs.h"
int myerrno = 0;
char buf[256];
@@ -7855,15 +8004,15 @@
main(){connect(0,buf,255); exit(!myerrno);}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7858: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8007: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7861: \$? = $ac_status" >&5
+ echo "$as_me:8010: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7863: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8012: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7866: \$? = $ac_status" >&5
+ echo "$as_me:8015: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_libc_r___error=yes
else
@@ -7876,14 +8025,14 @@
fi
fi
-echo "$as_me:7879: result: $wine_cv_libc_r___error" >&5
+echo "$as_me:8028: result: $wine_cv_libc_r___error" >&5
echo "${ECHO_T}$wine_cv_libc_r___error" >&6
if test "$wine_cv_libc_r___error" = "yes"
then
wine_cv_libc_reentrant=__error
fi
- echo "$as_me:7886: checking for reentrant libc: ___errno" >&5
+ echo "$as_me:8035: checking for reentrant libc: ___errno" >&5
echo $ECHO_N "checking for reentrant libc: ___errno... $ECHO_C" >&6
if test "${wine_cv_libc_r____errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7892,7 +8041,7 @@
wine_cv_libc_r____errno=yes
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7895 "configure"
+#line 8044 "configure"
#include "confdefs.h"
int myerrno = 0;
char buf[256];
@@ -7900,15 +8049,15 @@
main(){connect(0,buf,255); exit(!myerrno);}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7903: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8052: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7906: \$? = $ac_status" >&5
+ echo "$as_me:8055: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7908: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8057: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7911: \$? = $ac_status" >&5
+ echo "$as_me:8060: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_libc_r____errno=yes
else
@@ -7921,14 +8070,14 @@
fi
fi
-echo "$as_me:7924: result: $wine_cv_libc_r____errno" >&5
+echo "$as_me:8073: result: $wine_cv_libc_r____errno" >&5
echo "${ECHO_T}$wine_cv_libc_r____errno" >&6
if test "$wine_cv_libc_r____errno" = "yes"
then
wine_cv_libc_reentrant=___errno
fi
- echo "$as_me:7931: checking for reentrant libc: __thr_errno" >&5
+ echo "$as_me:8080: checking for reentrant libc: __thr_errno" >&5
echo $ECHO_N "checking for reentrant libc: __thr_errno... $ECHO_C" >&6
if test "${wine_cv_libc_r___thr_errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7937,7 +8086,7 @@
wine_cv_libc_r___thr_errno=yes
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7940 "configure"
+#line 8089 "configure"
#include "confdefs.h"
int myerrno = 0;
char buf[256];
@@ -7945,15 +8094,15 @@
main(){connect(0,buf,255); exit(!myerrno);}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7948: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8097: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7951: \$? = $ac_status" >&5
+ echo "$as_me:8100: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7953: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8102: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7956: \$? = $ac_status" >&5
+ echo "$as_me:8105: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_libc_r___thr_errno=yes
else
@@ -7966,14 +8115,14 @@
fi
fi
-echo "$as_me:7969: result: $wine_cv_libc_r___thr_errno" >&5
+echo "$as_me:8118: result: $wine_cv_libc_r___thr_errno" >&5
echo "${ECHO_T}$wine_cv_libc_r___thr_errno" >&6
if test "$wine_cv_libc_r___thr_errno" = "yes"
then
wine_cv_libc_reentrant=__thr_errno
fi
- echo "$as_me:7976: checking for reentrant libc: __errno" >&5
+ echo "$as_me:8125: checking for reentrant libc: __errno" >&5
echo $ECHO_N "checking for reentrant libc: __errno... $ECHO_C" >&6
if test "${wine_cv_libc_r___errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7982,7 +8131,7 @@
wine_cv_libc_r___errno=yes
else
cat >conftest.$ac_ext <<_ACEOF
-#line 7985 "configure"
+#line 8134 "configure"
#include "confdefs.h"
int myerrno = 0;
char buf[256];
@@ -7990,15 +8139,15 @@
main(){connect(0,buf,255); exit(!myerrno);}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7993: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8142: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7996: \$? = $ac_status" >&5
+ echo "$as_me:8145: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7998: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8147: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8001: \$? = $ac_status" >&5
+ echo "$as_me:8150: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_libc_r___errno=yes
else
@@ -8011,7 +8160,7 @@
fi
fi
-echo "$as_me:8014: result: $wine_cv_libc_r___errno" >&5
+echo "$as_me:8163: result: $wine_cv_libc_r___errno" >&5
echo "${ECHO_T}$wine_cv_libc_r___errno" >&6
if test "$wine_cv_libc_r___errno" = "yes"
then
@@ -8029,7 +8178,7 @@
if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
then
-echo "$as_me:8032: checking for reentrant X libraries" >&5
+echo "$as_me:8181: checking for reentrant X libraries" >&5
echo $ECHO_N "checking for reentrant X libraries... $ECHO_C" >&6
if test "${wine_cv_x_reentrant+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8061,7 +8210,7 @@
fi
fi
fi
-echo "$as_me:8064: result: $wine_cv_x_reentrant" >&5
+echo "$as_me:8213: result: $wine_cv_x_reentrant" >&5
echo "${ECHO_T}$wine_cv_x_reentrant" >&6
else
wine_cv_x_reentrant=no
@@ -8077,13 +8226,13 @@
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
-echo "$as_me:8080: checking for working alloca.h" >&5
+echo "$as_me:8229: checking for working alloca.h" >&5
echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
if test "${ac_cv_working_alloca_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8086 "configure"
+#line 8235 "configure"
#include "confdefs.h"
#include <alloca.h>
int
@@ -8095,16 +8244,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8098: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8247: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8101: \$? = $ac_status" >&5
+ echo "$as_me:8250: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:8104: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8253: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8107: \$? = $ac_status" >&5
+ echo "$as_me:8256: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_working_alloca_h=yes
else
@@ -8114,7 +8263,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:8117: result: $ac_cv_working_alloca_h" >&5
+echo "$as_me:8266: result: $ac_cv_working_alloca_h" >&5
echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
if test $ac_cv_working_alloca_h = yes; then
@@ -8124,13 +8273,13 @@
fi
-echo "$as_me:8127: checking for alloca" >&5
+echo "$as_me:8276: checking for alloca" >&5
echo $ECHO_N "checking for alloca... $ECHO_C" >&6
if test "${ac_cv_func_alloca_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8133 "configure"
+#line 8282 "configure"
#include "confdefs.h"
#ifdef __GNUC__
# define alloca __builtin_alloca
@@ -8162,16 +8311,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8165: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8314: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8168: \$? = $ac_status" >&5
+ echo "$as_me:8317: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:8171: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8320: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8174: \$? = $ac_status" >&5
+ echo "$as_me:8323: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_alloca_works=yes
else
@@ -8181,7 +8330,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:8184: result: $ac_cv_func_alloca_works" >&5
+echo "$as_me:8333: result: $ac_cv_func_alloca_works" >&5
echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
if test $ac_cv_func_alloca_works = yes; then
@@ -8202,13 +8351,13 @@
#define C_ALLOCA 1
EOF
-echo "$as_me:8205: checking whether \`alloca.c' needs Cray hooks" >&5
+echo "$as_me:8354: checking whether \`alloca.c' needs Cray hooks" >&5
echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
if test "${ac_cv_os_cray+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8211 "configure"
+#line 8360 "configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
@@ -8226,18 +8375,18 @@
rm -f conftest*
fi
-echo "$as_me:8229: result: $ac_cv_os_cray" >&5
+echo "$as_me:8378: result: $ac_cv_os_cray" >&5
echo "${ECHO_T}$ac_cv_os_cray" >&6
if test $ac_cv_os_cray = yes; then
for ac_func in _getb67 GETB67 getb67; do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:8234: checking for $ac_func" >&5
+echo "$as_me:8383: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8240 "configure"
+#line 8389 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -8268,16 +8417,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8271: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8420: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8274: \$? = $ac_status" >&5
+ echo "$as_me:8423: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:8277: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8426: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8280: \$? = $ac_status" >&5
+ echo "$as_me:8429: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -8287,7 +8436,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:8290: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8439: result: `eval echo '${'$as_ac_var'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
@@ -8301,7 +8450,7 @@
done
fi
-echo "$as_me:8304: checking stack direction for C alloca" >&5
+echo "$as_me:8453: checking stack direction for C alloca" >&5
echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
if test "${ac_cv_c_stack_direction+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8310,7 +8459,7 @@
ac_cv_c_stack_direction=0
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8313 "configure"
+#line 8462 "configure"
#include "confdefs.h"
int
find_stack_direction ()
@@ -8333,15 +8482,15 @@
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:8336: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8485: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8339: \$? = $ac_status" >&5
+ echo "$as_me:8488: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:8341: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8490: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8344: \$? = $ac_status" >&5
+ echo "$as_me:8493: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_stack_direction=1
else
@@ -8353,7 +8502,7 @@
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
-echo "$as_me:8356: result: $ac_cv_c_stack_direction" >&5
+echo "$as_me:8505: result: $ac_cv_c_stack_direction" >&5
echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
cat >>confdefs.h <<EOF
@@ -8409,13 +8558,13 @@
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:8412: checking for $ac_func" >&5
+echo "$as_me:8561: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8418 "configure"
+#line 8567 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -8446,16 +8595,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8449: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8598: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8452: \$? = $ac_status" >&5
+ echo "$as_me:8601: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:8455: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8604: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8458: \$? = $ac_status" >&5
+ echo "$as_me:8607: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -8465,7 +8614,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:8468: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8617: result: `eval echo '${'$as_ac_var'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<EOF
@@ -8537,23 +8686,23 @@
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:8540: checking for $ac_header" >&5
+echo "$as_me:8689: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8546 "configure"
+#line 8695 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:8550: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:8699: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:8556: \$? = $ac_status" >&5
+ echo "$as_me:8705: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -8572,7 +8721,7 @@
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:8575: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:8724: result: `eval echo '${'$as_ac_Header'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
@@ -8582,13 +8731,13 @@
fi
done
-echo "$as_me:8585: checking whether stat file-mode macros are broken" >&5
+echo "$as_me:8734: checking whether stat file-mode macros are broken" >&5
echo $ECHO_N "checking whether stat file-mode macros are broken... $ECHO_C" >&6
if test "${ac_cv_header_stat_broken+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8591 "configure"
+#line 8740 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/stat.h>
@@ -8627,7 +8776,7 @@
rm -f conftest*
fi
-echo "$as_me:8630: result: $ac_cv_header_stat_broken" >&5
+echo "$as_me:8779: result: $ac_cv_header_stat_broken" >&5
echo "${ECHO_T}$ac_cv_header_stat_broken" >&6
if test $ac_cv_header_stat_broken = yes; then
@@ -8637,7 +8786,7 @@
fi
-echo "$as_me:8640: checking for $CC option to accept ANSI C" >&5
+echo "$as_me:8789: checking for $CC option to accept ANSI C" >&5
echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
if test "${ac_cv_prog_cc_stdc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8645,7 +8794,7 @@
ac_cv_prog_cc_stdc=no
ac_save_CC=$CC
cat >conftest.$ac_ext <<_ACEOF
-#line 8648 "configure"
+#line 8797 "configure"
#include "confdefs.h"
#include <stdarg.h>
#include <stdio.h>
@@ -8694,16 +8843,16 @@
do
CC="$ac_save_CC $ac_arg"
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8697: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8846: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8700: \$? = $ac_status" >&5
+ echo "$as_me:8849: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8703: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8852: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8706: \$? = $ac_status" >&5
+ echo "$as_me:8855: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cc_stdc=$ac_arg
break
@@ -8720,21 +8869,21 @@
case "x$ac_cv_prog_cc_stdc" in
x|xno)
- echo "$as_me:8723: result: none needed" >&5
+ echo "$as_me:8872: result: none needed" >&5
echo "${ECHO_T}none needed" >&6 ;;
*)
- echo "$as_me:8726: result: $ac_cv_prog_cc_stdc" >&5
+ echo "$as_me:8875: result: $ac_cv_prog_cc_stdc" >&5
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
CC="$CC $ac_cv_prog_cc_stdc" ;;
esac
-echo "$as_me:8731: checking for an ANSI C-conforming const" >&5
+echo "$as_me:8880: checking for an ANSI C-conforming const" >&5
echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
if test "${ac_cv_c_const+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8737 "configure"
+#line 8886 "configure"
#include "confdefs.h"
int
@@ -8792,16 +8941,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8795: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8944: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8798: \$? = $ac_status" >&5
+ echo "$as_me:8947: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8801: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8950: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8804: \$? = $ac_status" >&5
+ echo "$as_me:8953: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_const=yes
else
@@ -8811,7 +8960,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:8814: result: $ac_cv_c_const" >&5
+echo "$as_me:8963: result: $ac_cv_c_const" >&5
echo "${ECHO_T}$ac_cv_c_const" >&6
if test $ac_cv_c_const = no; then
@@ -8821,7 +8970,7 @@
fi
-echo "$as_me:8824: checking for inline" >&5
+echo "$as_me:8973: checking for inline" >&5
echo $ECHO_N "checking for inline... $ECHO_C" >&6
if test "${ac_cv_c_inline+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8829,7 +8978,7 @@
ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
cat >conftest.$ac_ext <<_ACEOF
-#line 8832 "configure"
+#line 8981 "configure"
#include "confdefs.h"
#ifndef __cplusplus
static $ac_kw int static_foo () {return 0; }
@@ -8838,16 +8987,16 @@
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8841: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8990: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8844: \$? = $ac_status" >&5
+ echo "$as_me:8993: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8847: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8996: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8850: \$? = $ac_status" >&5
+ echo "$as_me:8999: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_inline=$ac_kw; break
else
@@ -8858,7 +9007,7 @@
done
fi
-echo "$as_me:8861: result: $ac_cv_c_inline" >&5
+echo "$as_me:9010: result: $ac_cv_c_inline" >&5
echo "${ECHO_T}$ac_cv_c_inline" >&6
case $ac_cv_c_inline in
inline | yes) ;;
@@ -8873,13 +9022,13 @@
;;
esac
-echo "$as_me:8876: checking for ANSI C header files" >&5
+echo "$as_me:9025: checking for ANSI C header files" >&5
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
if test "${ac_cv_header_stdc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8882 "configure"
+#line 9031 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -8887,13 +9036,13 @@
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:8890: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9039: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:8896: \$? = $ac_status" >&5
+ echo "$as_me:9045: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -8915,7 +9064,7 @@
if test $ac_cv_header_stdc = yes; then
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
cat >conftest.$ac_ext <<_ACEOF
-#line 8918 "configure"
+#line 9067 "configure"
#include "confdefs.h"
#include <string.h>
@@ -8933,7 +9082,7 @@
if test $ac_cv_header_stdc = yes; then
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
cat >conftest.$ac_ext <<_ACEOF
-#line 8936 "configure"
+#line 9085 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -8954,7 +9103,7 @@
:
else
cat >conftest.$ac_ext <<_ACEOF
-#line 8957 "configure"
+#line 9106 "configure"
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
@@ -8980,15 +9129,15 @@
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:8983: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9132: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8986: \$? = $ac_status" >&5
+ echo "$as_me:9135: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:8988: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9137: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8991: \$? = $ac_status" >&5
+ echo "$as_me:9140: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -9001,7 +9150,7 @@
fi
fi
fi
-echo "$as_me:9004: result: $ac_cv_header_stdc" >&5
+echo "$as_me:9153: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
@@ -9017,28 +9166,28 @@
inttypes.h stdint.h unistd.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:9020: checking for $ac_header" >&5
+echo "$as_me:9169: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9026 "configure"
+#line 9175 "configure"
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9032: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9181: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9035: \$? = $ac_status" >&5
+ echo "$as_me:9184: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9038: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9187: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9041: \$? = $ac_status" >&5
+ echo "$as_me:9190: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
@@ -9048,7 +9197,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9051: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9200: result: `eval echo '${'$as_ac_Header'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
@@ -9058,13 +9207,13 @@
fi
done
-echo "$as_me:9061: checking for mode_t" >&5
+echo "$as_me:9210: checking for mode_t" >&5
echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
if test "${ac_cv_type_mode_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9067 "configure"
+#line 9216 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9079,16 +9228,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9082: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9231: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9085: \$? = $ac_status" >&5
+ echo "$as_me:9234: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9088: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9237: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9091: \$? = $ac_status" >&5
+ echo "$as_me:9240: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_mode_t=yes
else
@@ -9098,7 +9247,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9101: result: $ac_cv_type_mode_t" >&5
+echo "$as_me:9250: result: $ac_cv_type_mode_t" >&5
echo "${ECHO_T}$ac_cv_type_mode_t" >&6
if test $ac_cv_type_mode_t = yes; then
:
@@ -9110,13 +9259,13 @@
fi
-echo "$as_me:9113: checking for off_t" >&5
+echo "$as_me:9262: checking for off_t" >&5
echo $ECHO_N "checking for off_t... $ECHO_C" >&6
if test "${ac_cv_type_off_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9119 "configure"
+#line 9268 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9131,16 +9280,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9134: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9283: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9137: \$? = $ac_status" >&5
+ echo "$as_me:9286: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9140: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9289: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9143: \$? = $ac_status" >&5
+ echo "$as_me:9292: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_off_t=yes
else
@@ -9150,7 +9299,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9153: result: $ac_cv_type_off_t" >&5
+echo "$as_me:9302: result: $ac_cv_type_off_t" >&5
echo "${ECHO_T}$ac_cv_type_off_t" >&6
if test $ac_cv_type_off_t = yes; then
:
@@ -9162,13 +9311,13 @@
fi
-echo "$as_me:9165: checking for pid_t" >&5
+echo "$as_me:9314: checking for pid_t" >&5
echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
if test "${ac_cv_type_pid_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9171 "configure"
+#line 9320 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9183,16 +9332,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9186: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9335: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9189: \$? = $ac_status" >&5
+ echo "$as_me:9338: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9192: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9341: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9195: \$? = $ac_status" >&5
+ echo "$as_me:9344: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_pid_t=yes
else
@@ -9202,7 +9351,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9205: result: $ac_cv_type_pid_t" >&5
+echo "$as_me:9354: result: $ac_cv_type_pid_t" >&5
echo "${ECHO_T}$ac_cv_type_pid_t" >&6
if test $ac_cv_type_pid_t = yes; then
:
@@ -9214,13 +9363,13 @@
fi
-echo "$as_me:9217: checking for size_t" >&5
+echo "$as_me:9366: checking for size_t" >&5
echo $ECHO_N "checking for size_t... $ECHO_C" >&6
if test "${ac_cv_type_size_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9223 "configure"
+#line 9372 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9235,16 +9384,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9238: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9387: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9241: \$? = $ac_status" >&5
+ echo "$as_me:9390: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9244: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9393: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9247: \$? = $ac_status" >&5
+ echo "$as_me:9396: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_size_t=yes
else
@@ -9254,7 +9403,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9257: result: $ac_cv_type_size_t" >&5
+echo "$as_me:9406: result: $ac_cv_type_size_t" >&5
echo "${ECHO_T}$ac_cv_type_size_t" >&6
if test $ac_cv_type_size_t = yes; then
:
@@ -9266,13 +9415,13 @@
fi
-echo "$as_me:9269: checking for long long" >&5
+echo "$as_me:9418: checking for long long" >&5
echo $ECHO_N "checking for long long... $ECHO_C" >&6
if test "${ac_cv_type_long_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9275 "configure"
+#line 9424 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9287,16 +9436,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9290: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9439: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9293: \$? = $ac_status" >&5
+ echo "$as_me:9442: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9296: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9445: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9299: \$? = $ac_status" >&5
+ echo "$as_me:9448: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_long_long=yes
else
@@ -9306,10 +9455,10 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9309: result: $ac_cv_type_long_long" >&5
+echo "$as_me:9458: result: $ac_cv_type_long_long" >&5
echo "${ECHO_T}$ac_cv_type_long_long" >&6
-echo "$as_me:9312: checking size of long long" >&5
+echo "$as_me:9461: checking size of long long" >&5
echo $ECHO_N "checking size of long long... $ECHO_C" >&6
if test "${ac_cv_sizeof_long_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9318,7 +9467,7 @@
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 9321 "configure"
+#line 9470 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9330,21 +9479,21 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9333: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9482: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9336: \$? = $ac_status" >&5
+ echo "$as_me:9485: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9339: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9488: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9342: \$? = $ac_status" >&5
+ echo "$as_me:9491: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 9347 "configure"
+#line 9496 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9356,16 +9505,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9359: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9508: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9362: \$? = $ac_status" >&5
+ echo "$as_me:9511: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9365: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9514: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9368: \$? = $ac_status" >&5
+ echo "$as_me:9517: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -9381,7 +9530,7 @@
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 9384 "configure"
+#line 9533 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9393,16 +9542,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9396: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9545: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9399: \$? = $ac_status" >&5
+ echo "$as_me:9548: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9402: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9551: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9405: \$? = $ac_status" >&5
+ echo "$as_me:9554: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -9418,7 +9567,7 @@
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
-#line 9421 "configure"
+#line 9570 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9430,16 +9579,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9433: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9582: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9436: \$? = $ac_status" >&5
+ echo "$as_me:9585: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9439: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9588: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9442: \$? = $ac_status" >&5
+ echo "$as_me:9591: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -9452,12 +9601,12 @@
ac_cv_sizeof_long_long=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:9455: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:9604: error: cannot run test program while cross compiling" >&5
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9460 "configure"
+#line 9609 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9473,15 +9622,15 @@
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:9476: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9625: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:9479: \$? = $ac_status" >&5
+ echo "$as_me:9628: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:9481: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9630: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9484: \$? = $ac_status" >&5
+ echo "$as_me:9633: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_long_long=`cat conftest.val`
else
@@ -9497,19 +9646,19 @@
ac_cv_sizeof_long_long=0
fi
fi
-echo "$as_me:9500: result: $ac_cv_sizeof_long_long" >&5
+echo "$as_me:9649: result: $ac_cv_sizeof_long_long" >&5
echo "${ECHO_T}$ac_cv_sizeof_long_long" >&6
cat >>confdefs.h <<EOF
#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long
EOF
-echo "$as_me:9506: checking whether linux/input.h is for real" >&5
+echo "$as_me:9655: checking whether linux/input.h is for real" >&5
echo $ECHO_N "checking whether linux/input.h is for real... $ECHO_C" >&6
if test "${wine_cv_linux_input_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9512 "configure"
+#line 9661 "configure"
#include "confdefs.h"
#include <linux/input.h>
@@ -9527,16 +9676,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9530: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9679: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9533: \$? = $ac_status" >&5
+ echo "$as_me:9682: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9536: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9685: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9539: \$? = $ac_status" >&5
+ echo "$as_me:9688: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_linux_input_h=yes
else
@@ -9547,7 +9696,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9550: result: $wine_cv_linux_input_h" >&5
+echo "$as_me:9699: result: $wine_cv_linux_input_h" >&5
echo "${ECHO_T}$wine_cv_linux_input_h" >&6
if test "$wine_cv_linux_input_h" = "yes"
then
@@ -9558,13 +9707,13 @@
fi
-echo "$as_me:9561: checking whether we can use re-entrant gethostbyname_r Linux style" >&5
+echo "$as_me:9710: checking whether we can use re-entrant gethostbyname_r Linux style" >&5
echo $ECHO_N "checking whether we can use re-entrant gethostbyname_r Linux style... $ECHO_C" >&6
if test "${wine_cv_linux_gethostbyname_r_6+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9567 "configure"
+#line 9716 "configure"
#include "confdefs.h"
#include <netdb.h>
@@ -9590,16 +9739,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9593: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9742: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9596: \$? = $ac_status" >&5
+ echo "$as_me:9745: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9599: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9748: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9602: \$? = $ac_status" >&5
+ echo "$as_me:9751: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_linux_gethostbyname_r_6=yes
else
@@ -9611,7 +9760,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9614: result: $wine_cv_linux_gethostbyname_r_6" >&5
+echo "$as_me:9763: result: $wine_cv_linux_gethostbyname_r_6" >&5
echo "${ECHO_T}$wine_cv_linux_gethostbyname_r_6" >&6
if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
then
@@ -9624,13 +9773,13 @@
if test "$ac_cv_header_linux_joystick_h" = "yes"
then
- echo "$as_me:9627: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5
+ echo "$as_me:9776: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5
echo $ECHO_N "checking whether linux/joystick.h uses the Linux 2.2+ API... $ECHO_C" >&6
if test "${wine_cv_linux_joystick_22_api+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9633 "configure"
+#line 9782 "configure"
#include "confdefs.h"
#include <sys/ioctl.h>
@@ -9650,16 +9799,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9653: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9802: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9656: \$? = $ac_status" >&5
+ echo "$as_me:9805: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9659: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9808: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9662: \$? = $ac_status" >&5
+ echo "$as_me:9811: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_linux_joystick_22_api=yes
else
@@ -9670,7 +9819,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9673: result: $wine_cv_linux_joystick_22_api" >&5
+echo "$as_me:9822: result: $wine_cv_linux_joystick_22_api" >&5
echo "${ECHO_T}$wine_cv_linux_joystick_22_api" >&6
if test "$wine_cv_linux_joystick_22_api" = "yes"
then
@@ -9684,13 +9833,13 @@
if test "$ac_cv_header_sys_vfs_h" = "yes"
then
- echo "$as_me:9687: checking whether sys/vfs.h defines statfs" >&5
+ echo "$as_me:9836: checking whether sys/vfs.h defines statfs" >&5
echo $ECHO_N "checking whether sys/vfs.h defines statfs... $ECHO_C" >&6
if test "${wine_cv_sys_vfs_has_statfs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9693 "configure"
+#line 9842 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -9712,16 +9861,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9715: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9864: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9718: \$? = $ac_status" >&5
+ echo "$as_me:9867: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9721: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9870: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9724: \$? = $ac_status" >&5
+ echo "$as_me:9873: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_sys_vfs_has_statfs=yes
else
@@ -9733,7 +9882,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9736: result: $wine_cv_sys_vfs_has_statfs" >&5
+echo "$as_me:9885: result: $wine_cv_sys_vfs_has_statfs" >&5
echo "${ECHO_T}$wine_cv_sys_vfs_has_statfs" >&6
if test "$wine_cv_sys_vfs_has_statfs" = "yes"
then
@@ -9747,13 +9896,13 @@
if test "$ac_cv_header_sys_statfs_h" = "yes"
then
- echo "$as_me:9750: checking whether sys/statfs.h defines statfs" >&5
+ echo "$as_me:9899: checking whether sys/statfs.h defines statfs" >&5
echo $ECHO_N "checking whether sys/statfs.h defines statfs... $ECHO_C" >&6
if test "${wine_cv_sys_statfs_has_statfs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9756 "configure"
+#line 9905 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -9773,16 +9922,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9776: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9925: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9779: \$? = $ac_status" >&5
+ echo "$as_me:9928: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9782: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9931: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9785: \$? = $ac_status" >&5
+ echo "$as_me:9934: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_sys_statfs_has_statfs=yes
else
@@ -9794,7 +9943,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9797: result: $wine_cv_sys_statfs_has_statfs" >&5
+echo "$as_me:9946: result: $wine_cv_sys_statfs_has_statfs" >&5
echo "${ECHO_T}$wine_cv_sys_statfs_has_statfs" >&6
if test "$wine_cv_sys_statfs_has_statfs" = "yes"
then
@@ -9808,13 +9957,13 @@
if test "$ac_cv_header_sys_mount_h" = "yes"
then
- echo "$as_me:9811: checking whether sys/mount.h defines statfs" >&5
+ echo "$as_me:9960: checking whether sys/mount.h defines statfs" >&5
echo $ECHO_N "checking whether sys/mount.h defines statfs... $ECHO_C" >&6
if test "${wine_cv_sys_mount_has_statfs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9817 "configure"
+#line 9966 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -9834,16 +9983,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9837: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9986: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9840: \$? = $ac_status" >&5
+ echo "$as_me:9989: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9843: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9992: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9846: \$? = $ac_status" >&5
+ echo "$as_me:9995: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
wine_cv_sys_mount_has_statfs=yes
else
@@ -9855,7 +10004,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9858: result: $wine_cv_sys_mount_has_statfs" >&5
+echo "$as_me:10007: result: $wine_cv_sys_mount_has_statfs" >&5
echo "${ECHO_T}$wine_cv_sys_mount_has_statfs" >&6
if test "$wine_cv_sys_mount_has_statfs" = "yes"
then
@@ -9867,13 +10016,13 @@
fi
fi
-echo "$as_me:9870: checking for f_bfree in struct statfs" >&5
+echo "$as_me:10019: checking for f_bfree in struct statfs" >&5
echo $ECHO_N "checking for f_bfree in struct statfs... $ECHO_C" >&6
if test "${ac_cv_c_statfs_f_bfree+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9876 "configure"
+#line 10025 "configure"
#include "confdefs.h"
#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
@@ -9899,16 +10048,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9902: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10051: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9905: \$? = $ac_status" >&5
+ echo "$as_me:10054: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9908: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10057: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9911: \$? = $ac_status" >&5
+ echo "$as_me:10060: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_statfs_f_bfree="yes"
else
@@ -9918,7 +10067,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9921: result: $ac_cv_c_statfs_f_bfree" >&5
+echo "$as_me:10070: result: $ac_cv_c_statfs_f_bfree" >&5
echo "${ECHO_T}$ac_cv_c_statfs_f_bfree" >&6
if test "x$ac_cv_c_statfs_f_bfree" = "xyes"; then
@@ -9928,13 +10077,13 @@
fi
-echo "$as_me:9931: checking for f_bavail in struct statfs" >&5
+echo "$as_me:10080: checking for f_bavail in struct statfs" >&5
echo $ECHO_N "checking for f_bavail in struct statfs... $ECHO_C" >&6
if test "${ac_cv_c_statfs_f_bavail+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9937 "configure"
+#line 10086 "configure"
#include "confdefs.h"
#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
@@ -9960,16 +10109,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9963: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10112: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9966: \$? = $ac_status" >&5
+ echo "$as_me:10115: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9969: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10118: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9972: \$? = $ac_status" >&5
+ echo "$as_me:10121: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_statfs_f_bavail="yes"
else
@@ -9979,7 +10128,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9982: result: $ac_cv_c_statfs_f_bavail" >&5
+echo "$as_me:10131: result: $ac_cv_c_statfs_f_bavail" >&5
echo "${ECHO_T}$ac_cv_c_statfs_f_bavail" >&6
if test "x$ac_cv_c_statfs_f_bavail" = "xyes"; then
@@ -9989,13 +10138,13 @@
fi
-echo "$as_me:9992: checking for msg_accrights in struct msghdr" >&5
+echo "$as_me:10141: checking for msg_accrights in struct msghdr" >&5
echo $ECHO_N "checking for msg_accrights in struct msghdr... $ECHO_C" >&6
if test "${ac_cv_c_msghdr_msg_accrights+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9998 "configure"
+#line 10147 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -10008,16 +10157,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10011: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10160: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10014: \$? = $ac_status" >&5
+ echo "$as_me:10163: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10017: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10166: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10020: \$? = $ac_status" >&5
+ echo "$as_me:10169: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_msghdr_msg_accrights="yes"
else
@@ -10027,7 +10176,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10030: result: $ac_cv_c_msghdr_msg_accrights" >&5
+echo "$as_me:10179: result: $ac_cv_c_msghdr_msg_accrights" >&5
echo "${ECHO_T}$ac_cv_c_msghdr_msg_accrights" >&6
if test "x$ac_cv_c_msghdr_msg_accrights" = "xyes"; then
@@ -10037,13 +10186,13 @@
fi
-echo "$as_me:10040: checking for sa_len in struct sockaddr" >&5
+echo "$as_me:10189: checking for sa_len in struct sockaddr" >&5
echo $ECHO_N "checking for sa_len in struct sockaddr... $ECHO_C" >&6
if test "${ac_cv_c_sockaddr_sa_len+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 10046 "configure"
+#line 10195 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -10056,16 +10205,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10059: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10208: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10062: \$? = $ac_status" >&5
+ echo "$as_me:10211: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10065: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10214: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10068: \$? = $ac_status" >&5
+ echo "$as_me:10217: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_sockaddr_sa_len="yes"
else
@@ -10075,7 +10224,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10078: result: $ac_cv_c_sockaddr_sa_len" >&5
+echo "$as_me:10227: result: $ac_cv_c_sockaddr_sa_len" >&5
echo "${ECHO_T}$ac_cv_c_sockaddr_sa_len" >&6
if test "x$ac_cv_c_sockaddr_sa_len" = "xyes"; then
@@ -10085,13 +10234,13 @@
fi
-echo "$as_me:10088: checking for sun_len in struct sockaddr_un" >&5
+echo "$as_me:10237: checking for sun_len in struct sockaddr_un" >&5
echo $ECHO_N "checking for sun_len in struct sockaddr_un... $ECHO_C" >&6
if test "${ac_cv_c_sockaddr_un_sun_len+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 10094 "configure"
+#line 10243 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -10105,16 +10254,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10108: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10257: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10111: \$? = $ac_status" >&5
+ echo "$as_me:10260: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10114: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10263: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10117: \$? = $ac_status" >&5
+ echo "$as_me:10266: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_sockaddr_un_sun_len="yes"
else
@@ -10124,7 +10273,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10127: result: $ac_cv_c_sockaddr_un_sun_len" >&5
+echo "$as_me:10276: result: $ac_cv_c_sockaddr_un_sun_len" >&5
echo "${ECHO_T}$ac_cv_c_sockaddr_un_sun_len" >&6
if test "x$ac_cv_c_sockaddr_un_sun_len" = "xyes"; then
@@ -10136,13 +10285,13 @@
case $target_cpu in
*i345678986* )
- echo "$as_me:10139: checking whether we need to define __i386__" >&5
+ echo "$as_me:10288: checking whether we need to define __i386__" >&5
echo $ECHO_N "checking whether we need to define __i386__... $ECHO_C" >&6
if test "${ac_cv_cpp_def_i386+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 10145 "configure"
+#line 10294 "configure"
#include "confdefs.h"
#ifndef __i386__
yes
@@ -10157,7 +10306,7 @@
rm -f conftest*
fi
-echo "$as_me:10160: result: $ac_cv_cpp_def_i386" >&5
+echo "$as_me:10309: result: $ac_cv_cpp_def_i386" >&5
echo "${ECHO_T}$ac_cv_cpp_def_i386" >&6
;;
esac
@@ -10211,7 +10360,7 @@
MAKE_PROG_RULES=programs/Makeprog.rules
-ac_config_files="$ac_config_files Make.rules dlls/Makedll.rules programs/Makeprog.rules Makefile console/Makefile controls/Makefile debugger/Makefile dlls/Makefile dlls/advapi32/Makefile dlls/avicap32/Makefile dlls/avifil32/Makefile dlls/comctl32/Makefile dlls/commdlg/Makefile dlls/crtdll/Makefile dlls/crypt32/Makefile dlls/dciman32/Makefile dlls/ddraw/Makefile dlls/devenum/Makefile dlls/dinput/Makefile dlls/dplay/Makefile dlls/dplayx/Makefile dlls/dsound/Makefile dlls/gdi/Makefile dlls/glu32/Makefile dlls/icmp/Makefile dlls/imagehlp/Makefile dlls/imm32/Makefile dlls/kernel/Makefile dlls/lzexpand/Makefile dlls/mapi32/Makefile dlls/mpr/Makefile dlls/msacm/Makefile dlls/msdmo/Makefile dlls/msimg32/Makefile dlls/msnet32/Makefile dlls/msrle32/Makefile dlls/msvcrt/Makefile dlls/msvcrt20/Makefile dlls/msvideo/Makefile dlls/netapi32/Makefile dlls/ntdll/Makefile dlls/odbc32/Makefile dlls/ole32/Makefile dlls/oleaut32/Makefile dlls/olecli/Makefile dlls/oledlg/Makefile dlls/olepro32/Makefile dlls/olesvr/Makefile dlls/opengl32/Makefile dlls/psapi/Makefile dlls/qcap/Makefile dlls/quartz/Makefile dlls/rasapi32/Makefile dlls/richedit/Makefile dlls/rpcrt4/Makefile dlls/serialui/Makefile dlls/setupapi/Makefile dlls/shdocvw/Makefile dlls/shell32/Makefile dlls/shfolder/Makefile dlls/shlwapi/Makefile dlls/sti/Makefile dlls/tapi32/Makefile dlls/ttydrv/Makefile dlls/url/Makefile dlls/urlmon/Makefile dlls/user/Makefile dlls/version/Makefile dlls/win32s/Makefile dlls/winaspi/Makefile dlls/winedos/Makefile dlls/wineps/Makefile dlls/wininet/Makefile dlls/winmm/Makefile dlls/winmm/joystick/Makefile dlls/winmm/mcianim/Makefile dlls/winmm/mciavi/Makefile dlls/winmm/mcicda/Makefile dlls/winmm/mciseq/Makefile dlls/winmm/mciwave/Makefile dlls/winmm/midimap/Makefile dlls/winmm/wavemap/Makefile dlls/winmm/winearts/Makefile dlls/winmm/wineoss/Makefile dlls/winnls/Makefile dlls/winsock/Makefile dlls/winspool/Makefile dlls/wintrust/Makefile dlls/wow32/Makefile dlls/wsock32/Makefile dlls/x11drv/Makefile documentation/Makefile files/Makefile graphics/Makefile graphics/enhmetafiledrv/Makefile graphics/metafiledrv/Makefile graphics/win16drv/Makefile graphics/x11drv/Makefile if1632/Makefile include/Makefile library/Makefile libtest/Makefile loader/Makefile loader/ne/Makefile memory/Makefile misc/Makefile miscemu/Makefile msdos/Makefile objects/Makefile ole/Makefile programs/Makefile programs/avitools/Makefile programs/clock/Makefile programs/cmdlgtst/Makefile programs/control/Makefile programs/notepad/Makefile programs/osversioncheck/Makefile programs/progman/Makefile programs/regapi/Makefile programs/regtest/Makefile programs/uninstaller/Makefile programs/view/Makefile programs/wcmd/Makefile programs/wineconsole/Makefile programs/winemine/Makefile programs/winetest/Makefile programs/winhelp/Makefile programs/winver/Makefile relay32/Makefile scheduler/Makefile server/Makefile tools/Makefile tools/winapi/Makefile tools/winebuild/Makefile tools/winedump/Makefile tools/wmc/Makefile tools/wrc/Makefile tsx11/Makefile unicode/Makefile win32/Makefile windows/Makefile windows/x11drv/Makefile"
+ac_config_files="$ac_config_files Make.rules dlls/Makedll.rules programs/Makeprog.rules Makefile console/Makefile controls/Makefile debugger/Makefile dlls/Makefile dlls/advapi32/Makefile dlls/avicap32/Makefile dlls/avifil32/Makefile dlls/comctl32/Makefile dlls/commdlg/Makefile dlls/crtdll/Makefile dlls/crypt32/Makefile dlls/dciman32/Makefile dlls/ddraw/Makefile dlls/devenum/Makefile dlls/dinput/Makefile dlls/dplay/Makefile dlls/dplayx/Makefile dlls/dsound/Makefile dlls/gdi/Makefile dlls/glu32/Makefile dlls/icmp/Makefile dlls/imagehlp/Makefile dlls/imm32/Makefile dlls/kernel/Makefile dlls/lzexpand/Makefile dlls/mapi32/Makefile dlls/mpr/Makefile dlls/msacm/Makefile dlls/msdmo/Makefile dlls/msimg32/Makefile dlls/msnet32/Makefile dlls/msrle32/Makefile dlls/msvcrt/Makefile dlls/msvcrt20/Makefile dlls/msvideo/Makefile dlls/netapi32/Makefile dlls/ntdll/Makefile dlls/odbc32/Makefile dlls/ole32/Makefile dlls/oleaut32/Makefile dlls/olecli/Makefile dlls/oledlg/Makefile dlls/olepro32/Makefile dlls/olesvr/Makefile dlls/opengl32/Makefile dlls/psapi/Makefile dlls/qcap/Makefile dlls/quartz/Makefile dlls/rasapi32/Makefile dlls/richedit/Makefile dlls/rpcrt4/Makefile dlls/serialui/Makefile dlls/setupapi/Makefile dlls/shdocvw/Makefile dlls/shell32/Makefile dlls/shfolder/Makefile dlls/shlwapi/Makefile dlls/sti/Makefile dlls/tapi32/Makefile dlls/ttydrv/Makefile dlls/twain/Makefile dlls/url/Makefile dlls/urlmon/Makefile dlls/user/Makefile dlls/version/Makefile dlls/win32s/Makefile dlls/winaspi/Makefile dlls/winedos/Makefile dlls/wineps/Makefile dlls/wininet/Makefile dlls/winmm/Makefile dlls/winmm/joystick/Makefile dlls/winmm/mcianim/Makefile dlls/winmm/mciavi/Makefile dlls/winmm/mcicda/Makefile dlls/winmm/mciseq/Makefile dlls/winmm/mciwave/Makefile dlls/winmm/midimap/Makefile dlls/winmm/wavemap/Makefile dlls/winmm/winearts/Makefile dlls/winmm/wineoss/Makefile dlls/winnls/Makefile dlls/winsock/Makefile dlls/winspool/Makefile dlls/wintrust/Makefile dlls/wow32/Makefile dlls/wsock32/Makefile dlls/x11drv/Makefile documentation/Makefile files/Makefile graphics/Makefile graphics/enhmetafiledrv/Makefile graphics/metafiledrv/Makefile graphics/win16drv/Makefile graphics/x11drv/Makefile if1632/Makefile include/Makefile library/Makefile libtest/Makefile loader/Makefile loader/ne/Makefile memory/Makefile misc/Makefile miscemu/Makefile msdos/Makefile objects/Makefile ole/Makefile programs/Makefile programs/avitools/Makefile programs/clock/Makefile programs/cmdlgtst/Makefile programs/control/Makefile programs/notepad/Makefile programs/osversioncheck/Makefile programs/progman/Makefile programs/regapi/Makefile programs/regtest/Makefile programs/uninstaller/Makefile programs/view/Makefile programs/wcmd/Makefile programs/wineconsole/Makefile programs/winemine/Makefile programs/winetest/Makefile programs/winhelp/Makefile programs/winver/Makefile relay32/Makefile scheduler/Makefile server/Makefile tools/Makefile tools/winapi/Makefile tools/winebuild/Makefile tools/winedump/Makefile tools/wmc/Makefile tools/wrc/Makefile tsx11/Makefile unicode/Makefile win32/Makefile windows/Makefile windows/x11drv/Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@@ -10292,7 +10441,7 @@
: ${CONFIG_STATUS=./config.status}
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-{ echo "$as_me:10295: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:10444: creating $CONFIG_STATUS" >&5
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
@@ -10468,7 +10617,7 @@
echo "$ac_cs_version"; exit 0 ;;
--he | --h)
# Conflict between --help and --header
- { { echo "$as_me:10471: error: ambiguous option: $1
+ { { echo "$as_me:10620: error: ambiguous option: $1
Try \`$0 --help' for more information." >&5
echo "$as_me: error: ambiguous option: $1
Try \`$0 --help' for more information." >&2;}
@@ -10487,7 +10636,7 @@
ac_need_defaults=false;;
# This is an error.
- -*) { { echo "$as_me:10490: error: unrecognized option: $1
+ -*) { { echo "$as_me:10639: error: unrecognized option: $1
Try \`$0 --help' for more information." >&5
echo "$as_me: error: unrecognized option: $1
Try \`$0 --help' for more information." >&2;}
@@ -10595,6 +10744,7 @@
"dlls/sti/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/sti/Makefile" ;;
"dlls/tapi32/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/tapi32/Makefile" ;;
"dlls/ttydrv/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/ttydrv/Makefile" ;;
+ "dlls/twain/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/twain/Makefile" ;;
"dlls/url/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/url/Makefile" ;;
"dlls/urlmon/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/urlmon/Makefile" ;;
"dlls/user/Makefile" ) CONFIG_FILES="$CONFIG_FILES dlls/user/Makefile" ;;
@@ -10693,7 +10843,7 @@
"programs/winetest/tests" ) CONFIG_COMMANDS="$CONFIG_COMMANDS programs/winetest/tests" ;;
"include/wine/version.h" ) CONFIG_COMMANDS="$CONFIG_COMMANDS include/wine/version.h" ;;
"include/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/config.h" ;;
- *) { { echo "$as_me:10696: error: invalid argument: $ac_config_target" >&5
+ *) { { echo "$as_me:10846: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
@@ -10827,6 +10977,9 @@
s,@GLU32FILES@,$GLU32FILES,;t t
s,@CURSESLIBS@,$CURSESLIBS,;t t
s,@CUPSLIBS@,$CUPSLIBS,;t t
+s,@sane_devel@,$sane_devel,;t t
+s,@SANELIBS@,$SANELIBS,;t t
+s,@SANEINCL@,$SANEINCL,;t t
s,@ft_devel@,$ft_devel,;t t
s,@ft_devel2@,$ft_devel2,;t t
s,@FREETYPELIBS@,$FREETYPELIBS,;t t
@@ -10962,7 +11115,7 @@
esac
if test x"$ac_file" != x-; then
- { echo "$as_me:10965: creating $ac_file" >&5
+ { echo "$as_me:11118: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
rm -f "$ac_file"
fi
@@ -10980,7 +11133,7 @@
-) echo $tmp/stdin ;;
[\\/$]*)
# Absolute (can't be DOS-style, as IFS=:)
- test -f "$f" || { { echo "$as_me:10983: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:11136: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -10993,7 +11146,7 @@
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:10996: error: cannot find input file: $f" >&5
+ { { echo "$as_me:11149: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -11054,7 +11207,7 @@
* ) ac_file_in=$ac_file.in ;;
esac
- test x"$ac_file" != x- && { echo "$as_me:11057: creating $ac_file" >&5
+ test x"$ac_file" != x- && { echo "$as_me:11210: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
# First look for the input files in the build tree, otherwise in the
@@ -11065,7 +11218,7 @@
-) echo $tmp/stdin ;;
[\\/$]*)
# Absolute (can't be DOS-style, as IFS=:)
- test -f "$f" || { { echo "$as_me:11068: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:11221: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -11078,7 +11231,7 @@
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:11081: error: cannot find input file: $f" >&5
+ { { echo "$as_me:11234: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -11195,7 +11348,7 @@
rm -f $tmp/in
if test x"$ac_file" != x-; then
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
- { echo "$as_me:11198: $ac_file is unchanged" >&5
+ { echo "$as_me:11351: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
@@ -11246,50 +11399,50 @@
ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
case $ac_dest in
- dlls/ddraw/d3ddevice ) test -d "dlls/ddraw/d3ddevice" || ({ echo "$as_me:11249: creating dlls/ddraw/d3ddevice" >&5
+ dlls/ddraw/d3ddevice ) test -d "dlls/ddraw/d3ddevice" || ({ echo "$as_me:11402: creating dlls/ddraw/d3ddevice" >&5
echo "$as_me: creating dlls/ddraw/d3ddevice" >&6;} && mkdir "dlls/ddraw/d3ddevice") ;;
- dlls/ddraw/dclipper ) test -d "dlls/ddraw/dclipper" || ({ echo "$as_me:11251: creating dlls/ddraw/dclipper" >&5
+ dlls/ddraw/dclipper ) test -d "dlls/ddraw/dclipper" || ({ echo "$as_me:11404: creating dlls/ddraw/dclipper" >&5
echo "$as_me: creating dlls/ddraw/dclipper" >&6;} && mkdir "dlls/ddraw/dclipper") ;;
- dlls/ddraw/ddraw ) test -d "dlls/ddraw/ddraw" || ({ echo "$as_me:11253: creating dlls/ddraw/ddraw" >&5
+ dlls/ddraw/ddraw ) test -d "dlls/ddraw/ddraw" || ({ echo "$as_me:11406: creating dlls/ddraw/ddraw" >&5
echo "$as_me: creating dlls/ddraw/ddraw" >&6;} && mkdir "dlls/ddraw/ddraw") ;;
- dlls/ddraw/direct3d ) test -d "dlls/ddraw/direct3d" || ({ echo "$as_me:11255: creating dlls/ddraw/direct3d" >&5
+ dlls/ddraw/direct3d ) test -d "dlls/ddraw/direct3d" || ({ echo "$as_me:11408: creating dlls/ddraw/direct3d" >&5
echo "$as_me: creating dlls/ddraw/direct3d" >&6;} && mkdir "dlls/ddraw/direct3d") ;;
- dlls/ddraw/dpalette ) test -d "dlls/ddraw/dpalette" || ({ echo "$as_me:11257: creating dlls/ddraw/dpalette" >&5
+ dlls/ddraw/dpalette ) test -d "dlls/ddraw/dpalette" || ({ echo "$as_me:11410: creating dlls/ddraw/dpalette" >&5
echo "$as_me: creating dlls/ddraw/dpalette" >&6;} && mkdir "dlls/ddraw/dpalette") ;;
- dlls/ddraw/dsurface ) test -d "dlls/ddraw/dsurface" || ({ echo "$as_me:11259: creating dlls/ddraw/dsurface" >&5
+ dlls/ddraw/dsurface ) test -d "dlls/ddraw/dsurface" || ({ echo "$as_me:11412: creating dlls/ddraw/dsurface" >&5
echo "$as_me: creating dlls/ddraw/dsurface" >&6;} && mkdir "dlls/ddraw/dsurface") ;;
- dlls/dinput/joystick ) test -d "dlls/dinput/joystick" || ({ echo "$as_me:11261: creating dlls/dinput/joystick" >&5
+ dlls/dinput/joystick ) test -d "dlls/dinput/joystick" || ({ echo "$as_me:11414: creating dlls/dinput/joystick" >&5
echo "$as_me: creating dlls/dinput/joystick" >&6;} && mkdir "dlls/dinput/joystick") ;;
- dlls/dinput/keyboard ) test -d "dlls/dinput/keyboard" || ({ echo "$as_me:11263: creating dlls/dinput/keyboard" >&5
+ dlls/dinput/keyboard ) test -d "dlls/dinput/keyboard" || ({ echo "$as_me:11416: creating dlls/dinput/keyboard" >&5
echo "$as_me: creating dlls/dinput/keyboard" >&6;} && mkdir "dlls/dinput/keyboard") ;;
- dlls/dinput/mouse ) test -d "dlls/dinput/mouse" || ({ echo "$as_me:11265: creating dlls/dinput/mouse" >&5
+ dlls/dinput/mouse ) test -d "dlls/dinput/mouse" || ({ echo "$as_me:11418: creating dlls/dinput/mouse" >&5
echo "$as_me: creating dlls/dinput/mouse" >&6;} && mkdir "dlls/dinput/mouse") ;;
- dlls/kernel/messages ) test -d "dlls/kernel/messages" || ({ echo "$as_me:11267: creating dlls/kernel/messages" >&5
+ dlls/kernel/messages ) test -d "dlls/kernel/messages" || ({ echo "$as_me:11420: creating dlls/kernel/messages" >&5
echo "$as_me: creating dlls/kernel/messages" >&6;} && mkdir "dlls/kernel/messages") ;;
- dlls/kernel/tests ) test -d "dlls/kernel/tests" || ({ echo "$as_me:11269: creating dlls/kernel/tests" >&5
+ dlls/kernel/tests ) test -d "dlls/kernel/tests" || ({ echo "$as_me:11422: creating dlls/kernel/tests" >&5
echo "$as_me: creating dlls/kernel/tests" >&6;} && mkdir "dlls/kernel/tests") ;;
- dlls/user/dde ) test -d "dlls/user/dde" || ({ echo "$as_me:11271: creating dlls/user/dde" >&5
+ dlls/user/dde ) test -d "dlls/user/dde" || ({ echo "$as_me:11424: creating dlls/user/dde" >&5
echo "$as_me: creating dlls/user/dde" >&6;} && mkdir "dlls/user/dde") ;;
- dlls/user/resources ) test -d "dlls/user/resources" || ({ echo "$as_me:11273: creating dlls/user/resources" >&5
+ dlls/user/resources ) test -d "dlls/user/resources" || ({ echo "$as_me:11426: creating dlls/user/resources" >&5
echo "$as_me: creating dlls/user/resources" >&6;} && mkdir "dlls/user/resources") ;;
- dlls/user/tests ) test -d "dlls/user/tests" || ({ echo "$as_me:11275: creating dlls/user/tests" >&5
+ dlls/user/tests ) test -d "dlls/user/tests" || ({ echo "$as_me:11428: creating dlls/user/tests" >&5
echo "$as_me: creating dlls/user/tests" >&6;} && mkdir "dlls/user/tests") ;;
- dlls/wineps/data ) test -d "dlls/wineps/data" || ({ echo "$as_me:11277: creating dlls/wineps/data" >&5
+ dlls/wineps/data ) test -d "dlls/wineps/data" || ({ echo "$as_me:11430: creating dlls/wineps/data" >&5
echo "$as_me: creating dlls/wineps/data" >&6;} && mkdir "dlls/wineps/data") ;;
- include/wine ) test -d "include/wine" || ({ echo "$as_me:11279: creating include/wine" >&5
+ include/wine ) test -d "include/wine" || ({ echo "$as_me:11432: creating include/wine" >&5
echo "$as_me: creating include/wine" >&6;} && mkdir "include/wine") ;;
- programs/regapi/tests ) test -d "programs/regapi/tests" || ({ echo "$as_me:11281: creating programs/regapi/tests" >&5
+ programs/regapi/tests ) test -d "programs/regapi/tests" || ({ echo "$as_me:11434: creating programs/regapi/tests" >&5
echo "$as_me: creating programs/regapi/tests" >&6;} && mkdir "programs/regapi/tests") ;;
- programs/winetest/tests ) test -d "programs/winetest/tests" || ({ echo "$as_me:11283: creating programs/winetest/tests" >&5
+ programs/winetest/tests ) test -d "programs/winetest/tests" || ({ echo "$as_me:11436: creating programs/winetest/tests" >&5
echo "$as_me: creating programs/winetest/tests" >&6;} && mkdir "programs/winetest/tests") ;;
- include/wine/version.h ) { echo "$as_me:11285: creating include/wine/version.h" >&5
+ include/wine/version.h ) { echo "$as_me:11438: creating include/wine/version.h" >&5
echo "$as_me: creating include/wine/version.h" >&6;}
cat >$tmp/version.h <<CEOF
/* Generated automatically by configure; DO NOT EDIT! */
#define WINE_RELEASE_INFO "Wine version $wine_version"
CEOF
if cmp -s $tmp/version.h include/wine/version.h 2>/dev/null; then
- { echo "$as_me:11292: include/wine/version.h is unchanged" >&5
+ { echo "$as_me:11445: include/wine/version.h is unchanged" >&5
echo "$as_me: include/wine/version.h is unchanged" >&6;}
rm -f $tmp/version.h
else