+ amend treatment of infocmp "-r" option to retain the 1023-byte limit
unless "-T" is given (cf: 981017).
+ modify comp_captab.c generation to use big-strings.
+ make _nc_capalias_table and _nc_infoalias_table private accessed via
_nc_get_alias_table() since the tables are used only within the tic
library.
+ modify configure script to skip Intel compiler in CF_C_INLINE.
+ make _nc_info_hash_table and _nc_cap_hash_table private accessed via
_nc_get_hash_table() since the tables are used only within the tic
library.
20 files changed:
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
--- $Id: NEWS,v 1.1148 2007/07/28 22:19:17 tom Exp $
+-- $Id: NEWS,v 1.1151 2007/08/12 13:56:58 tom Exp $
-------------------------------------------------------------------------------
This is a log of changes that ncurses has gone through since Zeyd started
-------------------------------------------------------------------------------
This is a log of changes that ncurses has gone through since Zeyd started
Changes through 1.9.9e did not credit all contributions;
it is not possible to add this information.
Changes through 1.9.9e did not credit all contributions;
it is not possible to add this information.
+20070812
+ + amend treatment of infocmp "-r" option to retain the 1023-byte limit
+ unless "-T" is given (cf: 981017).
+ + modify comp_captab.c generation to use big-strings.
+ + make _nc_capalias_table and _nc_infoalias_table private accessed via
+ _nc_get_alias_table() since the tables are used only within the tic
+ library.
+ + modify configure script to skip Intel compiler in CF_C_INLINE.
+ + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
+ _nc_get_hash_table() since the tables are used only within the tic
+ library.
+
20070728
+ make _nc_capalias_table and _nc_infoalias_table private, accessed via
_nc_get_alias_table() since they are used only by parse_entry.c
20070728
+ make _nc_capalias_table and _nc_infoalias_table private, accessed via
_nc_get_alias_table() since they are used only by parse_entry.c
dnl
dnl Author: Thomas E. Dickey 1995-on
dnl
dnl
dnl Author: Thomas E. Dickey 1995-on
dnl
-dnl $Id: aclocal.m4,v 1.435 2007/07/14 13:40:10 tom Exp $
+dnl $Id: aclocal.m4,v 1.436 2007/08/11 18:12:19 tom Exp $
dnl Macros used in NCURSES auto-configuration script.
dnl
dnl These macros are maintained separately from NCURSES. The copyright on
dnl Macros used in NCURSES auto-configuration script.
dnl
dnl These macros are maintained separately from NCURSES. The copyright on
test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST)
])dnl
dnl ---------------------------------------------------------------------------
test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST)
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_C_INLINE version: 1 updated: 2007/04/28 15:03:44
+dnl CF_C_INLINE version: 2 updated: 2007/08/11 14:09:50
dnl -----------
dnl Check if the C compiler supports "inline".
dnl $1 is the name of a shell variable to set if inline is supported
dnl -----------
dnl Check if the C compiler supports "inline".
dnl $1 is the name of a shell variable to set if inline is supported
AC_C_INLINE
$1=
if test "$ac_cv_c_inline" != no ; then
AC_C_INLINE
$1=
if test "$ac_cv_c_inline" != no ; then
- $1=inline
- if test "$GCC" = yes
- then
- AC_CACHE_CHECK(if gcc supports options to tune inlining,cf_cv_gcc_inline,[
- cf_save_CFLAGS=$CFLAGS
- CFLAGS="$CFLAGS --param max-inline-insns-single=$2"
- AC_TRY_COMPILE([inline int foo(void) { return 1; }],
- [${cf_cv_main_return:-return} foo()],
- [cf_cv_gcc_inline=yes],
- [cf_cv_gcc_inline=no])
- CFLAGS=$cf_save_CFLAGS
- ])
- if test "$cf_cv_gcc_inline" = yes ; then
- CF_ADD_CFLAGS([--param max-inline-insns-single=$2])
- fi
- fi
+ $1=inline
+ if test "$INTEL_COMPILER" = yes
+ then
+ :
+ elif test "$GCC" = yes
+ then
+ AC_CACHE_CHECK(if gcc supports options to tune inlining,cf_cv_gcc_inline,[
+ cf_save_CFLAGS=$CFLAGS
+ CFLAGS="$CFLAGS --param max-inline-insns-single=$2"
+ AC_TRY_COMPILE([inline int foo(void) { return 1; }],
+ [${cf_cv_main_return:-return} foo()],
+ [cf_cv_gcc_inline=yes],
+ [cf_cv_gcc_inline=no])
+ CFLAGS=$cf_save_CFLAGS
+ ])
+ if test "$cf_cv_gcc_inline" = yes ; then
+ CF_ADD_CFLAGS([--param max-inline-insns-single=$2])
+ fi
+ fi
])dnl
dnl ---------------------------------------------------------------------------
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_GCC_ATTRIBUTES version: 10 updated: 2005/05/28 13:16:28
+dnl CF_GCC_ATTRIBUTES version: 11 updated: 2007/07/29 09:55:12
dnl -----------------
dnl Test for availability of useful gcc __attribute__ directives to quiet
dnl compiler warnings. Though useful, not all are supported -- and contrary
dnl -----------------
dnl Test for availability of useful gcc __attribute__ directives to quiet
dnl compiler warnings. Though useful, not all are supported -- and contrary
then
AC_CHECKING([for $CC __attribute__ directives])
cat > conftest.$ac_ext <<EOF
then
AC_CHECKING([for $CC __attribute__ directives])
cat > conftest.$ac_ext <<EOF
-#line __oline__ "configure"
+#line __oline__ "${as_me-configure}"
#include "confdefs.h"
#include "conftest.h"
#include "conftest.i"
#include "confdefs.h"
#include "conftest.h"
#include "conftest.i"
fi
])dnl
dnl ---------------------------------------------------------------------------
fi
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_GCC_WARNINGS version: 21 updated: 2007/06/27 18:12:15
+dnl CF_GCC_WARNINGS version: 22 updated: 2007/07/29 09:55:12
dnl ---------------
dnl Check if the compiler supports useful warning options. There's a few that
dnl we don't use, simply because they're too noisy:
dnl ---------------
dnl Check if the compiler supports useful warning options. There's a few that
dnl we don't use, simply because they're too noisy:
CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
cat > conftest.$ac_ext <<EOF
CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
cat > conftest.$ac_ext <<EOF
-#line __oline__ "configure"
+#line __oline__ "${as_me-configure}"
int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
EOF
int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
EOF
fi
])dnl
dnl ---------------------------------------------------------------------------
fi
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_MSG_LOG version: 3 updated: 1997/09/07 14:05:52
+dnl CF_MSG_LOG version: 4 updated: 2007/07/29 09:55:12
dnl ----------
dnl Write a debug message to config.log, along with the line number in the
dnl configure script.
AC_DEFUN([CF_MSG_LOG],[
dnl ----------
dnl Write a debug message to config.log, along with the line number in the
dnl configure script.
AC_DEFUN([CF_MSG_LOG],[
-echo "(line __oline__) testing $* ..." 1>&AC_FD_CC
+echo "${as_me-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_NCURSES_ABI_6 version: 1 updated: 2005/09/17 18:42:49
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_NCURSES_ABI_6 version: 1 updated: 2005/09/17 18:42:49
$1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
])dnl
dnl ---------------------------------------------------------------------------
$1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_VERBOSE version: 2 updated: 1997/09/05 10:45:14
+dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
dnl ----------
dnl Use AC_VERBOSE w/o the warnings
AC_DEFUN([CF_VERBOSE],
[test -n "$verbose" && echo " $1" 1>&AC_FD_MSG
dnl ----------
dnl Use AC_VERBOSE w/o the warnings
AC_DEFUN([CF_VERBOSE],
[test -n "$verbose" && echo " $1" 1>&AC_FD_MSG
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_WCHAR_TYPE version: 2 updated: 2004/01/17 19:18:20
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_WCHAR_TYPE version: 2 updated: 2004/01/17 19:18:20
if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
test -n "$verbose" && echo " assuming we really have GPM library" 1>&6
if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
test -n "$verbose" && echo " assuming we really have GPM library" 1>&6
+echo "${as_me-configure}:4362: testing assuming we really have GPM library ..." 1>&5
+
cat >>confdefs.h <<\EOF
#define HAVE_LIBGPM 1
EOF
else
cat >>confdefs.h <<\EOF
#define HAVE_LIBGPM 1
EOF
else
- echo "$as_me:4367: checking for Gpm_Open in -lgpm" >&5
+ echo "$as_me:4369: checking for Gpm_Open in -lgpm" >&5
echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4394: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4396: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4397: \$? = $ac_status" >&5
+ echo "$as_me:4399: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4400: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4402: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4403: \$? = $ac_status" >&5
+ echo "$as_me:4405: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_gpm_Gpm_Open=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_gpm_Gpm_Open=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4414: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:4416: result: $ac_cv_lib_gpm_Gpm_Open" >&5
echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
if test $ac_cv_lib_gpm_Gpm_Open = yes; then
:
else
echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
if test $ac_cv_lib_gpm_Gpm_Open = yes; then
:
else
- { { echo "$as_me:4420: error: Cannot link with GPM library" >&5
+ { { echo "$as_me:4422: error: Cannot link with GPM library" >&5
echo "$as_me: error: Cannot link with GPM library" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: Cannot link with GPM library" >&2;}
{ (exit 1); exit 1; }; }
fi
- test "$with_gpm" != maybe && { echo "$as_me:4430: WARNING: Cannot find GPM header" >&5
+ test "$with_gpm" != maybe && { echo "$as_me:4432: WARNING: Cannot find GPM header" >&5
echo "$as_me: WARNING: Cannot find GPM header" >&2;}
with_gpm=no
echo "$as_me: WARNING: Cannot find GPM header" >&2;}
with_gpm=no
fi
if test "$with_gpm" != no ; then
fi
if test "$with_gpm" != no ; then
- echo "$as_me:4439: checking if you want to load GPM dynamically" >&5
+ echo "$as_me:4441: checking if you want to load GPM dynamically" >&5
echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6
# Check whether --with-dlsym or --without-dlsym was given.
echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6
# Check whether --with-dlsym or --without-dlsym was given.
- echo "$as_me:4449: result: $with_dlsym" >&5
+ echo "$as_me:4451: result: $with_dlsym" >&5
echo "${ECHO_T}$with_dlsym" >&6
if test "$with_dlsym" = yes ; then
cf_have_dlsym=no
echo "${ECHO_T}$with_dlsym" >&6
if test "$with_dlsym" = yes ; then
cf_have_dlsym=no
-echo "$as_me:4454: checking for dlsym" >&5
+echo "$as_me:4456: checking for dlsym" >&5
echo $ECHO_N "checking for dlsym... $ECHO_C" >&6
if test "${ac_cv_func_dlsym+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for dlsym... $ECHO_C" >&6
if test "${ac_cv_func_dlsym+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char dlsym (); below. */
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char dlsym (); below. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4491: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4493: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4494: \$? = $ac_status" >&5
+ echo "$as_me:4496: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4497: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4499: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4500: \$? = $ac_status" >&5
+ echo "$as_me:4502: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_dlsym=yes
else
(exit $ac_status); }; }; then
ac_cv_func_dlsym=yes
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:4510: result: $ac_cv_func_dlsym" >&5
+echo "$as_me:4512: result: $ac_cv_func_dlsym" >&5
echo "${ECHO_T}$ac_cv_func_dlsym" >&6
if test $ac_cv_func_dlsym = yes; then
cf_have_dlsym=yes
else
cf_have_libdl=no
echo "${ECHO_T}$ac_cv_func_dlsym" >&6
if test $ac_cv_func_dlsym = yes; then
cf_have_dlsym=yes
else
cf_have_libdl=no
-echo "$as_me:4517: checking for dlsym in -ldl" >&5
+echo "$as_me:4519: checking for dlsym in -ldl" >&5
echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
if test "${ac_cv_lib_dl_dlsym+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
if test "${ac_cv_lib_dl_dlsym+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4544: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4546: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4547: \$? = $ac_status" >&5
+ echo "$as_me:4549: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4550: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4552: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4553: \$? = $ac_status" >&5
+ echo "$as_me:4555: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dl_dlsym=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_dl_dlsym=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4564: result: $ac_cv_lib_dl_dlsym" >&5
+echo "$as_me:4566: result: $ac_cv_lib_dl_dlsym" >&5
echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
if test $ac_cv_lib_dl_dlsym = yes; then
echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
if test $ac_cv_lib_dl_dlsym = yes; then
if test "$cf_have_dlsym" = yes ; then
test "$cf_have_libdl" = yes && LIBS="-ldl $LIBS"
if test "$cf_have_dlsym" = yes ; then
test "$cf_have_libdl" = yes && LIBS="-ldl $LIBS"
- echo "$as_me:4577: checking whether able to link to dl*() functions" >&5
+ echo "$as_me:4579: checking whether able to link to dl*() functions" >&5
echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <dlfcn.h>
int
#include "confdefs.h"
#include <dlfcn.h>
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4598: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4600: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4601: \$? = $ac_status" >&5
+ echo "$as_me:4603: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4604: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4606: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4607: \$? = $ac_status" >&5
+ echo "$as_me:4609: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cat >>confdefs.h <<\EOF
(exit $ac_status); }; }; then
cat >>confdefs.h <<\EOF
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
- { { echo "$as_me:4618: error: Cannot link test program for libdl" >&5
+ { { echo "$as_me:4620: error: Cannot link test program for libdl" >&5
echo "$as_me: error: Cannot link test program for libdl" >&2;}
{ (exit 1); exit 1; }; }
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
echo "$as_me: error: Cannot link test program for libdl" >&2;}
{ (exit 1); exit 1; }; }
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
- echo "$as_me:4623: result: ok" >&5
+ echo "$as_me:4625: result: ok" >&5
echo "${ECHO_T}ok" >&6
else
echo "${ECHO_T}ok" >&6
else
- { { echo "$as_me:4626: error: Cannot find dlsym function" >&5
+ { { echo "$as_me:4628: error: Cannot find dlsym function" >&5
echo "$as_me: error: Cannot find dlsym function" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: Cannot find dlsym function" >&2;}
{ (exit 1); exit 1; }; }
fi
if test "$with_gpm" != yes ; then
test -n "$verbose" && echo " assuming soname for gpm is $with_gpm" 1>&6
if test "$with_gpm" != yes ; then
test -n "$verbose" && echo " assuming soname for gpm is $with_gpm" 1>&6
+echo "${as_me-configure}:4636: testing assuming soname for gpm is $with_gpm ..." 1>&5
+
cf_cv_gpm_soname="$with_gpm"
else
cf_cv_gpm_soname="$with_gpm"
else
-echo "$as_me:4637: checking for soname of gpm library" >&5
+echo "$as_me:4641: checking for soname of gpm library" >&5
echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6
if test "${cf_cv_gpm_soname+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6
if test "${cf_cv_gpm_soname+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
CF_EOF
cf_save_LIBS="$LIBS"
LIBS="-lgpm $LIBS"
CF_EOF
cf_save_LIBS="$LIBS"
LIBS="-lgpm $LIBS"
- if { (eval echo "$as_me:4655: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:4659: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4658: \$? = $ac_status" >&5
+ echo "$as_me:4662: \$? = $ac_status" >&5
(exit $ac_status); } ; then
(exit $ac_status); } ; then
- if { (eval echo "$as_me:4660: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:4664: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4663: \$? = $ac_status" >&5
+ echo "$as_me:4667: \$? = $ac_status" >&5
(exit $ac_status); } ; then
cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.`
test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown
(exit $ac_status); } ; then
cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.`
test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown
-echo "$as_me:4674: result: $cf_cv_gpm_soname" >&5
+echo "$as_me:4678: result: $cf_cv_gpm_soname" >&5
echo "${ECHO_T}$cf_cv_gpm_soname" >&6
fi
echo "${ECHO_T}$cf_cv_gpm_soname" >&6
fi
#define HAVE_LIBGPM 1
EOF
#define HAVE_LIBGPM 1
EOF
-echo "$as_me:4690: checking for Gpm_Wgetch in -lgpm" >&5
+echo "$as_me:4694: checking for Gpm_Wgetch in -lgpm" >&5
echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6
if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6
if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4717: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4721: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4720: \$? = $ac_status" >&5
+ echo "$as_me:4724: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4723: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4727: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4726: \$? = $ac_status" >&5
+ echo "$as_me:4730: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_gpm_Gpm_Wgetch=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_gpm_Gpm_Wgetch=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4737: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
+echo "$as_me:4741: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6
if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then
echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6
if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then
-echo "$as_me:4741: checking if GPM is weakly bound to curses library" >&5
+echo "$as_me:4745: checking if GPM is weakly bound to curses library" >&5
echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6
if test "${cf_cv_check_gpm_wgetch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6
if test "${cf_cv_check_gpm_wgetch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
# to rely on the static library, noting that some packagers may not
# include it.
LIBS="-static -lgpm -dynamic $LIBS"
# to rely on the static library, noting that some packagers may not
# include it.
LIBS="-static -lgpm -dynamic $LIBS"
- if { (eval echo "$as_me:4765: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:4769: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4768: \$? = $ac_status" >&5
+ echo "$as_me:4772: \$? = $ac_status" >&5
(exit $ac_status); } ; then
(exit $ac_status); } ; then
- if { (eval echo "$as_me:4770: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:4774: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4773: \$? = $ac_status" >&5
+ echo "$as_me:4777: \$? = $ac_status" >&5
(exit $ac_status); } ; then
cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'`
test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
(exit $ac_status); } ; then
cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'`
test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
-echo "$as_me:4785: result: $cf_cv_check_gpm_wgetch" >&5
+echo "$as_me:4789: result: $cf_cv_check_gpm_wgetch" >&5
echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6
if test "$cf_cv_check_gpm_wgetch" != yes ; then
echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6
if test "$cf_cv_check_gpm_wgetch" != yes ; then
- { echo "$as_me:4789: WARNING: GPM library is already linked with curses - read the FAQ" >&5
+ { echo "$as_me:4793: WARNING: GPM library is already linked with curses - read the FAQ" >&5
echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;}
fi
echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;}
fi
# not everyone has "test -c"
if test -c /dev/sysmouse 2>/dev/null ; then
# not everyone has "test -c"
if test -c /dev/sysmouse 2>/dev/null ; then
-echo "$as_me:4799: checking if you want to use sysmouse" >&5
+echo "$as_me:4803: checking if you want to use sysmouse" >&5
echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6
# Check whether --with-sysmouse or --without-sysmouse was given.
echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6
# Check whether --with-sysmouse or --without-sysmouse was given.
fi;
if test "$cf_with_sysmouse" != no ; then
cat >conftest.$ac_ext <<_ACEOF
fi;
if test "$cf_with_sysmouse" != no ; then
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <osreldate.h>
#include "confdefs.h"
#include <osreldate.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4834: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4838: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4837: \$? = $ac_status" >&5
+ echo "$as_me:4841: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4840: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4844: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4843: \$? = $ac_status" >&5
+ echo "$as_me:4847: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_with_sysmouse=yes
else
(exit $ac_status); }; }; then
cf_with_sysmouse=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:4853: result: $cf_with_sysmouse" >&5
+echo "$as_me:4857: result: $cf_with_sysmouse" >&5
echo "${ECHO_T}$cf_with_sysmouse" >&6
test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF
#define USE_SYSMOUSE 1
echo "${ECHO_T}$cf_with_sysmouse" >&6
test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF
#define USE_SYSMOUSE 1
test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
fi
test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
fi
-echo "$as_me:4871: checking for default loader flags" >&5
+echo "$as_me:4875: checking for default loader flags" >&5
echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
case $DFT_LWR_MODEL in
libtool) LD_MODEL='' ;;
echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
case $DFT_LWR_MODEL in
libtool) LD_MODEL='' ;;
profile) LD_MODEL='-pg';;
shared) LD_MODEL='' ;;
esac
profile) LD_MODEL='-pg';;
shared) LD_MODEL='' ;;
esac
-echo "$as_me:4880: result: $LD_MODEL" >&5
+echo "$as_me:4884: result: $LD_MODEL" >&5
echo "${ECHO_T}$LD_MODEL" >&6
case $DFT_LWR_MODEL in
shared)
echo "${ECHO_T}$LD_MODEL" >&6
case $DFT_LWR_MODEL in
shared)
-echo "$as_me:4885: checking if rpath option should be used" >&5
+echo "$as_me:4889: checking if rpath option should be used" >&5
echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6
# Check whether --enable-rpath or --disable-rpath was given.
echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6
# Check whether --enable-rpath or --disable-rpath was given.
else
cf_cv_ld_rpath=no
fi;
else
cf_cv_ld_rpath=no
fi;
-echo "$as_me:4895: result: $cf_cv_ld_rpath" >&5
+echo "$as_me:4899: result: $cf_cv_ld_rpath" >&5
echo "${ECHO_T}$cf_cv_ld_rpath" >&6
echo "${ECHO_T}$cf_cv_ld_rpath" >&6
-echo "$as_me:4897: checking if shared libraries should be relinked during install" >&5
+echo "$as_me:4901: checking if shared libraries should be relinked during install" >&5
echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6
# Check whether --enable-rpath or --disable-rpath was given.
echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6
# Check whether --enable-rpath or --disable-rpath was given.
else
cf_cv_do_relink=yes
fi;
else
cf_cv_do_relink=yes
fi;
-echo "$as_me:4907: result: $cf_cv_do_relink" >&5
+echo "$as_me:4911: result: $cf_cv_do_relink" >&5
echo "${ECHO_T}$cf_cv_do_relink" >&6
;;
esac
echo "${ECHO_T}$cf_cv_do_relink" >&6
;;
esac
- echo "$as_me:4919: checking if release/abi version should be used for shared libs" >&5
+ echo "$as_me:4923: checking if release/abi version should be used for shared libs" >&5
echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
# Check whether --with-shlib-version or --without-shlib-version was given.
echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
# Check whether --with-shlib-version or --without-shlib-version was given.
cf_cv_shlib_version=$withval
;;
*)
cf_cv_shlib_version=$withval
;;
*)
- { { echo "$as_me:4934: error: option value must be one of: rel, abi, auto or no" >&5
+ { { echo "$as_me:4938: error: option value must be one of: rel, abi, auto or no" >&5
echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;}
{ (exit 1); exit 1; }; }
;;
echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;}
{ (exit 1); exit 1; }; }
;;
else
cf_cv_shlib_version=auto
fi;
else
cf_cv_shlib_version=auto
fi;
- echo "$as_me:4943: result: $cf_cv_shlib_version" >&5
+ echo "$as_me:4947: result: $cf_cv_shlib_version" >&5
echo "${ECHO_T}$cf_cv_shlib_version" >&6
cf_cv_rm_so_locs=no
echo "${ECHO_T}$cf_cv_shlib_version" >&6
cf_cv_rm_so_locs=no
CC_SHARED_OPTS=
if test "$GCC" = yes
then
CC_SHARED_OPTS=
if test "$GCC" = yes
then
- echo "$as_me:4952: checking which $CC option to use" >&5
+ echo "$as_me:4956: checking which $CC option to use" >&5
echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
cf_save_CFLAGS="$CFLAGS"
for CC_SHARED_OPTS in -fPIC -fpic ''
do
CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
cf_save_CFLAGS="$CFLAGS"
for CC_SHARED_OPTS in -fPIC -fpic ''
do
CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdio.h>
int
#include "confdefs.h"
#include <stdio.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4971: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4975: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4974: \$? = $ac_status" >&5
+ echo "$as_me:4978: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4977: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4981: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4980: \$? = $ac_status" >&5
+ echo "$as_me:4984: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
(exit $ac_status); }; }; then
break
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
- echo "$as_me:4989: result: $CC_SHARED_OPTS" >&5
+ echo "$as_me:4993: result: $CC_SHARED_OPTS" >&5
echo "${ECHO_T}$CC_SHARED_OPTS" >&6
CFLAGS="$cf_save_CFLAGS"
fi
echo "${ECHO_T}$CC_SHARED_OPTS" >&6
CFLAGS="$cf_save_CFLAGS"
fi
MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
cf_cv_shlib_version_infix=yes
MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
cf_cv_shlib_version_infix=yes
- echo "$as_me:5025: checking if ld -search_paths_first works" >&5
+ echo "$as_me:5029: checking if ld -search_paths_first works" >&5
echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
cf_save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
cat >conftest.$ac_ext <<_ACEOF
cf_save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
int
#include "confdefs.h"
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5046: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5050: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5049: \$? = $ac_status" >&5
+ echo "$as_me:5053: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5052: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5056: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5055: \$? = $ac_status" >&5
+ echo "$as_me:5059: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_ldflags_search_paths_first=yes
else
(exit $ac_status); }; }; then
cf_cv_ldflags_search_paths_first=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LDFLAGS=$cf_save_LDFLAGS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LDFLAGS=$cf_save_LDFLAGS
fi
-echo "$as_me:5066: result: $cf_cv_ldflags_search_paths_first" >&5
+echo "$as_me:5070: result: $cf_cv_ldflags_search_paths_first" >&5
echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
if test $cf_cv_ldflags_search_paths_first = yes; then
LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
if test $cf_cv_ldflags_search_paths_first = yes; then
LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
;;
*)
test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
;;
*)
- { echo "$as_me:5262: WARNING: ignored --with-shlib-version" >&5
+ { echo "$as_me:5266: WARNING: ignored --with-shlib-version" >&5
echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
;;
esac
echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
;;
esac
esac
if test -n "$cf_ld_rpath_opt" ; then
esac
if test -n "$cf_ld_rpath_opt" ; then
- echo "$as_me:5270: checking if we need a space after rpath option" >&5
+ echo "$as_me:5274: checking if we need a space after rpath option" >&5
echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
cf_save_LIBS="$LIBS"
LIBS="$LIBS ${cf_ld_rpath_opt}$libdir"
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
cf_save_LIBS="$LIBS"
LIBS="$LIBS ${cf_ld_rpath_opt}$libdir"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
int
#include "confdefs.h"
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5287: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5291: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5290: \$? = $ac_status" >&5
+ echo "$as_me:5294: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5293: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5297: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5296: \$? = $ac_status" >&5
+ echo "$as_me:5300: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_rpath_space=no
else
(exit $ac_status); }; }; then
cf_rpath_space=no
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS="$cf_save_LIBS"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS="$cf_save_LIBS"
- echo "$as_me:5306: result: $cf_rpath_space" >&5
+ echo "$as_me:5310: result: $cf_rpath_space" >&5
echo "${ECHO_T}$cf_rpath_space" >&6
test "$cf_rpath_space" = yes && cf_ld_rpath_opt="$cf_ld_rpath_opt "
MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${libdir}"
echo "${ECHO_T}$cf_rpath_space" >&6
test "$cf_rpath_space" = yes && cf_ld_rpath_opt="$cf_ld_rpath_opt "
MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${libdir}"
if test "$CC_SHARED_OPTS" = "unknown"; then
for model in $cf_list_models; do
if test "$model" = "shared"; then
if test "$CC_SHARED_OPTS" = "unknown"; then
for model in $cf_list_models; do
if test "$model" = "shared"; then
- { { echo "$as_me:5315: error: Shared libraries are not supported in this version" >&5
+ { { echo "$as_me:5319: error: Shared libraries are not supported in this version" >&5
echo "$as_me: error: Shared libraries are not supported in this version" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: Shared libraries are not supported in this version" >&2;}
{ (exit 1); exit 1; }; }
fi
###############################################################################
### use option --disable-overwrite to leave out the link to -lcurses
###############################################################################
### use option --disable-overwrite to leave out the link to -lcurses
-echo "$as_me:5325: checking if you wish to install ncurses overwriting curses" >&5
+echo "$as_me:5329: checking if you wish to install ncurses overwriting curses" >&5
echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6
# Check whether --enable-overwrite or --disable-overwrite was given.
echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6
# Check whether --enable-overwrite or --disable-overwrite was given.
else
if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
fi;
else
if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
fi;
-echo "$as_me:5335: result: $with_overwrite" >&5
+echo "$as_me:5339: result: $with_overwrite" >&5
echo "${ECHO_T}$with_overwrite" >&6
echo "${ECHO_T}$with_overwrite" >&6
-echo "$as_me:5338: checking if external terminfo-database is used" >&5
+echo "$as_me:5342: checking if external terminfo-database is used" >&5
echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6
# Check whether --enable-database or --disable-database was given.
echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6
# Check whether --enable-database or --disable-database was given.
else
use_database=yes
fi;
else
use_database=yes
fi;
-echo "$as_me:5348: result: $use_database" >&5
+echo "$as_me:5352: result: $use_database" >&5
echo "${ECHO_T}$use_database" >&6
case $host_os in #(vi
echo "${ECHO_T}$use_database" >&6
case $host_os in #(vi
#define USE_DATABASE 1
EOF
#define USE_DATABASE 1
EOF
- echo "$as_me:5370: checking which terminfo source-file will be installed" >&5
+ echo "$as_me:5374: checking which terminfo source-file will be installed" >&5
echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6
# Check whether --enable-database or --disable-database was given.
echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6
# Check whether --enable-database or --disable-database was given.
enableval="$enable_database"
TERMINFO_SRC=$withval
fi;
enableval="$enable_database"
TERMINFO_SRC=$withval
fi;
- echo "$as_me:5378: result: $TERMINFO_SRC" >&5
+ echo "$as_me:5382: result: $TERMINFO_SRC" >&5
echo "${ECHO_T}$TERMINFO_SRC" >&6
echo "${ECHO_T}$TERMINFO_SRC" >&6
- echo "$as_me:5381: checking whether to use hashed database instead of directory/tree" >&5
+ echo "$as_me:5385: checking whether to use hashed database instead of directory/tree" >&5
echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6
# Check whether --with-hashed-db or --without-hashed-db was given.
echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6
# Check whether --with-hashed-db or --without-hashed-db was given.
else
with_hashed_db=no
fi;
else
with_hashed_db=no
fi;
- echo "$as_me:5391: result: $with_hashed_db" >&5
+ echo "$as_me:5395: result: $with_hashed_db" >&5
echo "${ECHO_T}$with_hashed_db" >&6
fi
echo "${ECHO_T}$with_hashed_db" >&6
fi
-echo "$as_me:5395: checking for list of fallback descriptions" >&5
+echo "$as_me:5399: checking for list of fallback descriptions" >&5
echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6
# Check whether --with-fallbacks or --without-fallbacks was given.
echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6
# Check whether --with-fallbacks or --without-fallbacks was given.
-echo "$as_me:5405: result: $with_fallback" >&5
+echo "$as_me:5409: result: $with_fallback" >&5
echo "${ECHO_T}$with_fallback" >&6
FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
echo "${ECHO_T}$with_fallback" >&6
FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
-echo "$as_me:5409: checking if you want modern xterm or antique" >&5
+echo "$as_me:5413: checking if you want modern xterm or antique" >&5
echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6
# Check whether --with-xterm-new or --without-xterm-new was given.
echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6
# Check whether --with-xterm-new or --without-xterm-new was given.
no) with_xterm_new=xterm-old;;
*) with_xterm_new=xterm-new;;
esac
no) with_xterm_new=xterm-old;;
*) with_xterm_new=xterm-new;;
esac
-echo "$as_me:5423: result: $with_xterm_new" >&5
+echo "$as_me:5427: result: $with_xterm_new" >&5
echo "${ECHO_T}$with_xterm_new" >&6
WHICH_XTERM=$with_xterm_new
echo "${ECHO_T}$with_xterm_new" >&6
WHICH_XTERM=$with_xterm_new
-echo "$as_me:5433: checking for list of terminfo directories" >&5
+echo "$as_me:5437: checking for list of terminfo directories" >&5
echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6
# Check whether --with-terminfo-dirs or --without-terminfo-dirs was given.
echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6
# Check whether --with-terminfo-dirs or --without-terminfo-dirs was given.
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
;;
*)
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
;;
*)
- { { echo "$as_me:5473: error: expected a pathname, not \"$cf_src_path\"" >&5
+ { { echo "$as_me:5477: error: expected a pathname, not \"$cf_src_path\"" >&5
echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
{ (exit 1); exit 1; }; }
;;
echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
{ (exit 1); exit 1; }; }
;;
eval 'TERMINFO_DIRS="$cf_dst_path"'
eval 'TERMINFO_DIRS="$cf_dst_path"'
-echo "$as_me:5486: result: $TERMINFO_DIRS" >&5
+echo "$as_me:5490: result: $TERMINFO_DIRS" >&5
echo "${ECHO_T}$TERMINFO_DIRS" >&6
test -n "$TERMINFO_DIRS" && cat >>confdefs.h <<EOF
#define TERMINFO_DIRS "$TERMINFO_DIRS"
EOF
echo "${ECHO_T}$TERMINFO_DIRS" >&6
test -n "$TERMINFO_DIRS" && cat >>confdefs.h <<EOF
#define TERMINFO_DIRS "$TERMINFO_DIRS"
EOF
-echo "$as_me:5492: checking for default terminfo directory" >&5
+echo "$as_me:5496: checking for default terminfo directory" >&5
echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6
# Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given.
echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6
# Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given.
withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
;;
*)
withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
;;
*)
- { { echo "$as_me:5528: error: expected a pathname, not \"$withval\"" >&5
+ { { echo "$as_me:5532: error: expected a pathname, not \"$withval\"" >&5
echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
{ (exit 1); exit 1; }; }
;;
echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
{ (exit 1); exit 1; }; }
;;
-echo "$as_me:5537: result: $TERMINFO" >&5
+echo "$as_me:5541: result: $TERMINFO" >&5
echo "${ECHO_T}$TERMINFO" >&6
cat >>confdefs.h <<EOF
#define TERMINFO "$TERMINFO"
echo "${ECHO_T}$TERMINFO" >&6
cat >>confdefs.h <<EOF
#define TERMINFO "$TERMINFO"
### use option --disable-big-core to make tic run on small machines
### We need 4Mb, check if we can allocate 50% more than that.
### use option --disable-big-core to make tic run on small machines
### We need 4Mb, check if we can allocate 50% more than that.
-echo "$as_me:5547: checking if big-core option selected" >&5
+echo "$as_me:5551: checking if big-core option selected" >&5
echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6
# Check whether --enable-big-core or --disable-big-core was given.
echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6
# Check whether --enable-big-core or --disable-big-core was given.
with_big_core=no
else
cat >conftest.$ac_ext <<_ACEOF
with_big_core=no
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest$ac_exeext
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:5573: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5577: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5576: \$? = $ac_status" >&5
+ echo "$as_me:5580: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:5578: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5582: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5581: \$? = $ac_status" >&5
+ echo "$as_me:5585: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
with_big_core=yes
else
(exit $ac_status); }; }; then
with_big_core=yes
else
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi;
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi;
-echo "$as_me:5593: result: $with_big_core" >&5
+echo "$as_me:5597: result: $with_big_core" >&5
echo "${ECHO_T}$with_big_core" >&6
test "$with_big_core" = "yes" && cat >>confdefs.h <<\EOF
#define HAVE_BIG_CORE 1
echo "${ECHO_T}$with_big_core" >&6
test "$with_big_core" = "yes" && cat >>confdefs.h <<\EOF
#define HAVE_BIG_CORE 1
### ISO C only guarantees 512-char strings, we have tables which load faster
### when constructed using "big" strings.
### ISO C only guarantees 512-char strings, we have tables which load faster
### when constructed using "big" strings.
-echo "$as_me:5601: checking if big-strings option selected" >&5
+echo "$as_me:5605: checking if big-strings option selected" >&5
echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6
# Check whether --enable-big-strings or --disable-big-strings was given.
echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6
# Check whether --enable-big-strings or --disable-big-strings was given.
else
with_big_strings=yes
fi;
else
with_big_strings=yes
fi;
-echo "$as_me:5611: result: $with_big_strings" >&5
+echo "$as_me:5615: result: $with_big_strings" >&5
echo "${ECHO_T}$with_big_strings" >&6
USE_BIG_STRINGS=0
test "$with_big_strings" = "yes" && USE_BIG_STRINGS=1
### use option --enable-termcap to compile in the termcap fallback support
echo "${ECHO_T}$with_big_strings" >&6
USE_BIG_STRINGS=0
test "$with_big_strings" = "yes" && USE_BIG_STRINGS=1
### use option --enable-termcap to compile in the termcap fallback support
-echo "$as_me:5618: checking if you want termcap-fallback support" >&5
+echo "$as_me:5622: checking if you want termcap-fallback support" >&5
echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6
# Check whether --enable-termcap or --disable-termcap was given.
echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6
# Check whether --enable-termcap or --disable-termcap was given.
-echo "$as_me:5628: result: $with_termcap" >&5
+echo "$as_me:5632: result: $with_termcap" >&5
echo "${ECHO_T}$with_termcap" >&6
if test "$with_termcap" != "yes" ; then
if test "$use_database" = no ; then
if test -z "$with_fallback" ; then
echo "${ECHO_T}$with_termcap" >&6
if test "$with_termcap" != "yes" ; then
if test "$use_database" = no ; then
if test -z "$with_fallback" ; then
- { { echo "$as_me:5634: error: You have disabled the database w/o specifying fallbacks" >&5
+ { { echo "$as_me:5638: error: You have disabled the database w/o specifying fallbacks" >&5
echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;}
{ (exit 1); exit 1; }; }
fi
else
if test "$with_ticlib" != no ; then
else
if test "$with_ticlib" != no ; then
- { { echo "$as_me:5646: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
+ { { echo "$as_me:5650: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;}
{ (exit 1); exit 1; }; }
fi
#define USE_TERMCAP 1
EOF
#define USE_TERMCAP 1
EOF
-echo "$as_me:5655: checking for list of termcap files" >&5
+echo "$as_me:5659: checking for list of termcap files" >&5
echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6
# Check whether --with-termpath or --without-termpath was given.
echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6
# Check whether --with-termpath or --without-termpath was given.
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
;;
*)
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
;;
*)
- { { echo "$as_me:5695: error: expected a pathname, not \"$cf_src_path\"" >&5
+ { { echo "$as_me:5699: error: expected a pathname, not \"$cf_src_path\"" >&5
echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
{ (exit 1); exit 1; }; }
;;
echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
{ (exit 1); exit 1; }; }
;;
eval 'TERMPATH="$cf_dst_path"'
eval 'TERMPATH="$cf_dst_path"'
-echo "$as_me:5708: result: $TERMPATH" >&5
+echo "$as_me:5712: result: $TERMPATH" >&5
echo "${ECHO_T}$TERMPATH" >&6
test -n "$TERMPATH" && cat >>confdefs.h <<EOF
#define TERMPATH "$TERMPATH"
EOF
### use option --enable-getcap to use a hacked getcap for reading termcaps
echo "${ECHO_T}$TERMPATH" >&6
test -n "$TERMPATH" && cat >>confdefs.h <<EOF
#define TERMPATH "$TERMPATH"
EOF
### use option --enable-getcap to use a hacked getcap for reading termcaps
-echo "$as_me:5715: checking if fast termcap-loader is needed" >&5
+echo "$as_me:5719: checking if fast termcap-loader is needed" >&5
echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6
# Check whether --enable-getcap or --disable-getcap was given.
echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6
# Check whether --enable-getcap or --disable-getcap was given.
-echo "$as_me:5725: result: $with_getcap" >&5
+echo "$as_me:5729: result: $with_getcap" >&5
echo "${ECHO_T}$with_getcap" >&6
test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF
#define USE_GETCAP 1
EOF
echo "${ECHO_T}$with_getcap" >&6
test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF
#define USE_GETCAP 1
EOF
-echo "$as_me:5731: checking if translated termcaps will be cached in ~/.terminfo" >&5
+echo "$as_me:5735: checking if translated termcaps will be cached in ~/.terminfo" >&5
echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6
# Check whether --enable-getcap-cache or --disable-getcap-cache was given.
echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6
# Check whether --enable-getcap-cache or --disable-getcap-cache was given.
else
with_getcap_cache=no
fi;
else
with_getcap_cache=no
fi;
-echo "$as_me:5741: result: $with_getcap_cache" >&5
+echo "$as_me:5745: result: $with_getcap_cache" >&5
echo "${ECHO_T}$with_getcap_cache" >&6
test "$with_getcap_cache" = "yes" && cat >>confdefs.h <<\EOF
#define USE_GETCAP_CACHE 1
echo "${ECHO_T}$with_getcap_cache" >&6
test "$with_getcap_cache" = "yes" && cat >>confdefs.h <<\EOF
#define USE_GETCAP_CACHE 1
fi
### Use option --disable-home-terminfo to completely remove ~/.terminfo
fi
### Use option --disable-home-terminfo to completely remove ~/.terminfo
-echo "$as_me:5750: checking if ~/.terminfo is wanted" >&5
+echo "$as_me:5754: checking if ~/.terminfo is wanted" >&5
echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6
# Check whether --enable-home-terminfo or --disable-home-terminfo was given.
echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6
# Check whether --enable-home-terminfo or --disable-home-terminfo was given.
else
with_home_terminfo=yes
fi;
else
with_home_terminfo=yes
fi;
-echo "$as_me:5760: result: $with_home_terminfo" >&5
+echo "$as_me:5764: result: $with_home_terminfo" >&5
echo "${ECHO_T}$with_home_terminfo" >&6
test "$with_home_terminfo" = "yes" && cat >>confdefs.h <<\EOF
#define USE_HOME_TERMINFO 1
EOF
echo "${ECHO_T}$with_home_terminfo" >&6
test "$with_home_terminfo" = "yes" && cat >>confdefs.h <<\EOF
#define USE_HOME_TERMINFO 1
EOF
-echo "$as_me:5766: checking if you want to use restricted environment when running as root" >&5
+echo "$as_me:5770: checking if you want to use restricted environment when running as root" >&5
echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6
# Check whether --enable-root-environ or --disable-root-environ was given.
echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6
# Check whether --enable-root-environ or --disable-root-environ was given.
else
with_root_environ=yes
fi;
else
with_root_environ=yes
fi;
-echo "$as_me:5776: result: $with_root_environ" >&5
+echo "$as_me:5780: result: $with_root_environ" >&5
echo "${ECHO_T}$with_root_environ" >&6
test "$with_root_environ" = yes && cat >>confdefs.h <<\EOF
#define USE_ROOT_ENVIRON 1
echo "${ECHO_T}$with_root_environ" >&6
test "$with_root_environ" = yes && cat >>confdefs.h <<\EOF
#define USE_ROOT_ENVIRON 1
unlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
unlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5790: checking for $ac_func" >&5
+echo "$as_me:5794: 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
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
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5827: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5831: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5830: \$? = $ac_status" >&5
+ echo "$as_me:5834: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5833: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5837: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5836: \$? = $ac_status" >&5
+ echo "$as_me:5840: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5846: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5850: 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
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<EOF
symlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
symlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5863: checking for $ac_func" >&5
+echo "$as_me:5867: 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
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
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5900: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5904: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5903: \$? = $ac_status" >&5
+ echo "$as_me:5907: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5906: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5910: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5909: \$? = $ac_status" >&5
+ echo "$as_me:5913: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5919: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5923: 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
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<EOF
- echo "$as_me:5930: checking if link/symlink functions work" >&5
+ echo "$as_me:5934: checking if link/symlink functions work" >&5
echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6
if test "${cf_cv_link_funcs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6
if test "${cf_cv_link_funcs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
eval 'ac_cv_func_'$cf_func'=error'
else
cat >conftest.$ac_ext <<_ACEOF
eval 'ac_cv_func_'$cf_func'=error'
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include "confdefs.h"
#include <sys/types.h>
_ACEOF
rm -f conftest$ac_exeext
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:5973: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5977: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5976: \$? = $ac_status" >&5
+ echo "$as_me:5980: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:5978: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5982: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5981: \$? = $ac_status" >&5
+ echo "$as_me:5985: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
(exit $ac_status); }; }; then
cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
fi
test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
fi
-echo "$as_me:5999: result: $cf_cv_link_funcs" >&5
+echo "$as_me:6003: result: $cf_cv_link_funcs" >&5
echo "${ECHO_T}$cf_cv_link_funcs" >&6
test "$ac_cv_func_link" = yes && cat >>confdefs.h <<\EOF
#define HAVE_LINK 1
echo "${ECHO_T}$cf_cv_link_funcs" >&6
test "$ac_cv_func_link" = yes && cat >>confdefs.h <<\EOF
#define HAVE_LINK 1
# soft links (symbolic links) are useful for some systems where hard links do
# not work, or to make it simpler to copy terminfo trees around.
if test "$ac_cv_func_symlink" = yes ; then
# soft links (symbolic links) are useful for some systems where hard links do
# not work, or to make it simpler to copy terminfo trees around.
if test "$ac_cv_func_symlink" = yes ; then
- echo "$as_me:6017: checking if tic should use symbolic links" >&5
+ echo "$as_me:6021: checking if tic should use symbolic links" >&5
echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
# Check whether --enable-symlinks or --disable-symlinks was given.
echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
# Check whether --enable-symlinks or --disable-symlinks was given.
else
with_symlinks=no
fi;
else
with_symlinks=no
fi;
- echo "$as_me:6027: result: $with_symlinks" >&5
+ echo "$as_me:6031: result: $with_symlinks" >&5
echo "${ECHO_T}$with_symlinks" >&6
fi
# If we have hard links and did not choose to use soft links instead, there is
# no reason to make this choice optional - use the hard links.
if test "$with_symlinks" = no ; then
echo "${ECHO_T}$with_symlinks" >&6
fi
# If we have hard links and did not choose to use soft links instead, there is
# no reason to make this choice optional - use the hard links.
if test "$with_symlinks" = no ; then
- echo "$as_me:6034: checking if tic should use hard links" >&5
+ echo "$as_me:6038: checking if tic should use hard links" >&5
echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6
if test "$ac_cv_func_link" = yes ; then
with_links=yes
else
with_links=no
fi
echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6
if test "$ac_cv_func_link" = yes ; then
with_links=yes
else
with_links=no
fi
- echo "$as_me:6041: result: $with_links" >&5
+ echo "$as_me:6045: result: $with_links" >&5
echo "${ECHO_T}$with_links" >&6
fi
echo "${ECHO_T}$with_links" >&6
fi
EOF
### use option --enable-broken-linker to force on use of broken-linker support
EOF
### use option --enable-broken-linker to force on use of broken-linker support
-echo "$as_me:6054: checking if you want broken-linker support code" >&5
+echo "$as_me:6058: checking if you want broken-linker support code" >&5
echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
# Check whether --enable-broken_linker or --disable-broken_linker was given.
echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
# Check whether --enable-broken_linker or --disable-broken_linker was given.
else
with_broken_linker=${BROKEN_LINKER-no}
fi;
else
with_broken_linker=${BROKEN_LINKER-no}
fi;
-echo "$as_me:6064: result: $with_broken_linker" >&5
+echo "$as_me:6068: result: $with_broken_linker" >&5
echo "${ECHO_T}$with_broken_linker" >&6
BROKEN_LINKER=0
echo "${ECHO_T}$with_broken_linker" >&6
BROKEN_LINKER=0
BROKEN_LINKER=1
test -n "$verbose" && echo " cygwin linker is broken anyway" 1>&6
BROKEN_LINKER=1
test -n "$verbose" && echo " cygwin linker is broken anyway" 1>&6
+echo "${as_me-configure}:6088: testing cygwin linker is broken anyway ..." 1>&5
+
;;
esac
fi
### use option --enable-bsdpad to have tputs process BSD-style prefix padding
;;
esac
fi
### use option --enable-bsdpad to have tputs process BSD-style prefix padding
-echo "$as_me:6089: checking if tputs should process BSD-style prefix padding" >&5
+echo "$as_me:6095: checking if tputs should process BSD-style prefix padding" >&5
echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6
# Check whether --enable-bsdpad or --disable-bsdpad was given.
echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6
# Check whether --enable-bsdpad or --disable-bsdpad was given.
-echo "$as_me:6099: result: $with_bsdpad" >&5
+echo "$as_me:6105: result: $with_bsdpad" >&5
echo "${ECHO_T}$with_bsdpad" >&6
test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF
#define BSD_TPUTS 1
echo "${ECHO_T}$with_bsdpad" >&6
test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF
#define BSD_TPUTS 1
# Check to define _XOPEN_SOURCE "automatically"
# Check to define _XOPEN_SOURCE "automatically"
-echo "$as_me:6116: checking if $CC -U and -D options work together" >&5
+echo "$as_me:6122: checking if $CC -U and -D options work together" >&5
echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6
if test "${cf_cv_cc_u_d_options+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6
if test "${cf_cv_cc_u_d_options+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
cf_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
cat >conftest.$ac_ext <<_ACEOF
cf_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
int
#include "confdefs.h"
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6144: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6150: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6147: \$? = $ac_status" >&5
+ echo "$as_me:6153: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6150: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6156: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6153: \$? = $ac_status" >&5
+ echo "$as_me:6159: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_cc_u_d_options=yes
(exit $ac_status); }; }; then
cf_cv_cc_u_d_options=yes
CPPFLAGS="$cf_save_CPPFLAGS"
fi
CPPFLAGS="$cf_save_CPPFLAGS"
fi
-echo "$as_me:6167: result: $cf_cv_cc_u_d_options" >&5
+echo "$as_me:6173: result: $cf_cv_cc_u_d_options" >&5
echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6
cf_XOPEN_SOURCE=500
echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6
cf_XOPEN_SOURCE=500
;;
linux*|gnu*|k*bsd*-gnu) #(vi
;;
linux*|gnu*|k*bsd*-gnu) #(vi
-echo "$as_me:6193: checking if we must define _GNU_SOURCE" >&5
+echo "$as_me:6199: checking if we must define _GNU_SOURCE" >&5
echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
if test "${cf_cv_gnu_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
if test "${cf_cv_gnu_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6215: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6221: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6218: \$? = $ac_status" >&5
+ echo "$as_me:6224: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6221: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6227: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6224: \$? = $ac_status" >&5
+ echo "$as_me:6230: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
cf_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
cat >conftest.$ac_ext <<_ACEOF
cf_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6248: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6254: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6251: \$? = $ac_status" >&5
+ echo "$as_me:6257: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6254: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6260: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6257: \$? = $ac_status" >&5
+ echo "$as_me:6263: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6272: result: $cf_cv_gnu_source" >&5
+echo "$as_me:6278: result: $cf_cv_gnu_source" >&5
echo "${ECHO_T}$cf_cv_gnu_source" >&6
test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
echo "${ECHO_T}$cf_cv_gnu_source" >&6
test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
;;
*)
CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
;;
*)
- echo "$as_me:6299: checking if we should define _XOPEN_SOURCE" >&5
+ echo "$as_me:6305: checking if we should define _XOPEN_SOURCE" >&5
echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
if test "${cf_cv_xopen_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
if test "${cf_cv_xopen_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6321: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6327: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6324: \$? = $ac_status" >&5
+ echo "$as_me:6330: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6327: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6333: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6330: \$? = $ac_status" >&5
+ echo "$as_me:6336: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_xopen_source=no
else
(exit $ac_status); }; }; then
cf_cv_xopen_source=no
else
cf_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
cat >conftest.$ac_ext <<_ACEOF
cf_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6354: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6360: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6357: \$? = $ac_status" >&5
+ echo "$as_me:6363: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6360: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6366: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6363: \$? = $ac_status" >&5
+ echo "$as_me:6369: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_xopen_source=no
else
(exit $ac_status); }; }; then
cf_cv_xopen_source=no
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6378: result: $cf_cv_xopen_source" >&5
+echo "$as_me:6384: result: $cf_cv_xopen_source" >&5
echo "${ECHO_T}$cf_cv_xopen_source" >&6
if test "$cf_cv_xopen_source" != no ; then
echo "${ECHO_T}$cf_cv_xopen_source" >&6
if test "$cf_cv_xopen_source" != no ; then
sed -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?[ ]/ /g' \
-e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?$//g'`
sed -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?[ ]/ /g' \
-e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?$//g'`
-echo "$as_me:6412: checking if we should define _POSIX_C_SOURCE" >&5
+echo "$as_me:6418: checking if we should define _POSIX_C_SOURCE" >&5
echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
if test "${cf_cv_posix_c_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
if test "${cf_cv_posix_c_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
-echo "(line 6418) testing if the symbol is already defined go no further ..." 1>&5
+echo "${as_me-configure}:6424: testing if the symbol is already defined go no further ..." 1>&5
cat >conftest.$ac_ext <<_ACEOF
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6436: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6442: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6439: \$? = $ac_status" >&5
+ echo "$as_me:6445: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6442: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6448: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6445: \$? = $ac_status" >&5
+ echo "$as_me:6451: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_posix_c_source=no
else
(exit $ac_status); }; }; then
cf_cv_posix_c_source=no
else
esac
if test "$cf_want_posix_source" = yes ; then
cat >conftest.$ac_ext <<_ACEOF
esac
if test "$cf_want_posix_source" = yes ; then
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6481: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6487: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6484: \$? = $ac_status" >&5
+ echo "$as_me:6490: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6487: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6493: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6490: \$? = $ac_status" >&5
+ echo "$as_me:6496: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
(exit $ac_status); }; }; then
:
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "(line 6501) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
+echo "${as_me-configure}:6507: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
CFLAGS="$cf_trim_CFLAGS"
CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
CFLAGS="$cf_trim_CFLAGS"
CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
-echo "(line 6506) testing if the second compile does not leave our definition intact error ..." 1>&5
+echo "${as_me-configure}:6512: testing if the second compile does not leave our definition intact error ..." 1>&5
cat >conftest.$ac_ext <<_ACEOF
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
int
#include "confdefs.h"
#include <sys/types.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6524: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6530: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6527: \$? = $ac_status" >&5
+ echo "$as_me:6533: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6530: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6536: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6533: \$? = $ac_status" >&5
+ echo "$as_me:6539: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
(exit $ac_status); }; }; then
:
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6549: result: $cf_cv_posix_c_source" >&5
+echo "$as_me:6555: result: $cf_cv_posix_c_source" >&5
echo "${ECHO_T}$cf_cv_posix_c_source" >&6
if test "$cf_cv_posix_c_source" != no ; then
echo "${ECHO_T}$cf_cv_posix_c_source" >&6
if test "$cf_cv_posix_c_source" != no ; then
# Work around breakage on OS X
# Work around breakage on OS X
-echo "$as_me:6568: checking if SIGWINCH is defined" >&5
+echo "$as_me:6574: checking if SIGWINCH is defined" >&5
echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
if test "${cf_cv_define_sigwinch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
if test "${cf_cv_define_sigwinch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include "confdefs.h"
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6590: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6596: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6593: \$? = $ac_status" >&5
+ echo "$as_me:6599: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6596: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6602: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6599: \$? = $ac_status" >&5
+ echo "$as_me:6605: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_define_sigwinch=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
(exit $ac_status); }; }; then
cf_cv_define_sigwinch=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#undef _XOPEN_SOURCE
#include "confdefs.h"
#undef _XOPEN_SOURCE
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6624: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6630: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6627: \$? = $ac_status" >&5
+ echo "$as_me:6633: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6630: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6636: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6633: \$? = $ac_status" >&5
+ echo "$as_me:6639: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_define_sigwinch=maybe
else
(exit $ac_status); }; }; then
cf_cv_define_sigwinch=maybe
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6647: result: $cf_cv_define_sigwinch" >&5
+echo "$as_me:6653: result: $cf_cv_define_sigwinch" >&5
echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
if test "$cf_cv_define_sigwinch" = maybe ; then
echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
if test "$cf_cv_define_sigwinch" = maybe ; then
-echo "$as_me:6651: checking for actual SIGWINCH definition" >&5
+echo "$as_me:6657: checking for actual SIGWINCH definition" >&5
echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
if test "${cf_cv_fixup_sigwinch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
if test "${cf_cv_fixup_sigwinch+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
while test $cf_sigwinch != 1
do
cat >conftest.$ac_ext <<_ACEOF
while test $cf_sigwinch != 1
do
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#undef _XOPEN_SOURCE
#include "confdefs.h"
#undef _XOPEN_SOURCE
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6684: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6690: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6687: \$? = $ac_status" >&5
+ echo "$as_me:6693: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6690: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6696: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6693: \$? = $ac_status" >&5
+ echo "$as_me:6699: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_fixup_sigwinch=$cf_sigwinch
break
(exit $ac_status); }; }; then
cf_cv_fixup_sigwinch=$cf_sigwinch
break
-echo "$as_me:6707: result: $cf_cv_fixup_sigwinch" >&5
+echo "$as_me:6713: result: $cf_cv_fixup_sigwinch" >&5
echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
if test "$cf_cv_fixup_sigwinch" != unknown ; then
echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
if test "$cf_cv_fixup_sigwinch" != unknown ; then
# Checks for CODESET support.
# Checks for CODESET support.
- echo "$as_me:6717: checking for nl_langinfo and CODESET" >&5
+ echo "$as_me:6723: checking for nl_langinfo and CODESET" >&5
echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
if test "${am_cv_langinfo_codeset+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
if test "${am_cv_langinfo_codeset+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <langinfo.h>
int
#include "confdefs.h"
#include <langinfo.h>
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6735: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6741: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6738: \$? = $ac_status" >&5
+ echo "$as_me:6744: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6741: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6747: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6744: \$? = $ac_status" >&5
+ echo "$as_me:6750: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
am_cv_langinfo_codeset=yes
else
(exit $ac_status); }; }; then
am_cv_langinfo_codeset=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:6755: result: $am_cv_langinfo_codeset" >&5
+echo "$as_me:6761: result: $am_cv_langinfo_codeset" >&5
echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
if test $am_cv_langinfo_codeset = yes; then
echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
if test $am_cv_langinfo_codeset = yes; then
NCURSES_OK_WCHAR_T=
NCURSES_OK_WINT_T=
NCURSES_OK_WCHAR_T=
NCURSES_OK_WINT_T=
-echo "$as_me:6769: checking if you want wide-character code" >&5
+echo "$as_me:6775: checking if you want wide-character code" >&5
echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
# Check whether --enable-widec or --disable-widec was given.
echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
# Check whether --enable-widec or --disable-widec was given.
-echo "$as_me:6779: result: $with_widec" >&5
+echo "$as_me:6785: result: $with_widec" >&5
echo "${ECHO_T}$with_widec" >&6
if test "$with_widec" = yes ; then
LIB_SUFFIX="w${LIB_SUFFIX}"
echo "${ECHO_T}$with_widec" >&6
if test "$with_widec" = yes ; then
LIB_SUFFIX="w${LIB_SUFFIX}"
#define USE_WIDEC_SUPPORT 1
EOF
#define USE_WIDEC_SUPPORT 1
EOF
-echo "$as_me:6787: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
+echo "$as_me:6793: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include "confdefs.h"
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6806: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6812: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6809: \$? = $ac_status" >&5
+ echo "$as_me:6815: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6812: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6818: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6815: \$? = $ac_status" >&5
+ echo "$as_me:6821: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=no
else
(exit $ac_status); }; }; then
cf_result=no
else
cf_result=yes
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cf_result=yes
fi
rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:6824: result: $cf_result" >&5
+echo "$as_me:6830: result: $cf_result" >&5
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = yes ; then
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
elif test "x" != "x" ; then
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = yes ; then
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
elif test "x" != "x" ; then
- echo "$as_me:6830: checking checking for compatible value versus " >&5
+ echo "$as_me:6836: checking checking for compatible value versus " >&5
echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include "confdefs.h"
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6849: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6855: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6852: \$? = $ac_status" >&5
+ echo "$as_me:6858: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6855: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6861: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6858: \$? = $ac_status" >&5
+ echo "$as_me:6864: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=yes
else
(exit $ac_status); }; }; then
cf_result=yes
else
cf_result=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cf_result=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
- echo "$as_me:6867: result: $cf_result" >&5
+ echo "$as_me:6873: result: $cf_result" >&5
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = no ; then
# perhaps we can override it - try...
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = no ; then
# perhaps we can override it - try...
for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:6881: checking for $ac_func" >&5
+echo "$as_me:6887: 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
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
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6918: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6924: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6921: \$? = $ac_status" >&5
+ echo "$as_me:6927: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6924: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6930: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6927: \$? = $ac_status" >&5
+ echo "$as_me:6933: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:6937: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:6943: 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
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<EOF
if test "$ac_cv_func_putwc" != yes ; then
if test "$ac_cv_func_putwc" != yes ; then
-echo "$as_me:6949: checking for putwc in libutf8" >&5
+echo "$as_me:6955: checking for putwc in libutf8" >&5
echo $ECHO_N "checking for putwc in libutf8... $ECHO_C" >&6
if test "${cf_cv_libutf8+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for putwc in libutf8... $ECHO_C" >&6
if test "${cf_cv_libutf8+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
cf_save_LIBS="$LIBS"
LIBS="-lutf8 $LIBS"
cat >conftest.$ac_ext <<_ACEOF
cf_save_LIBS="$LIBS"
LIBS="-lutf8 $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <libutf8.h>
#include "confdefs.h"
#include <libutf8.h>
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6971: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6977: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6974: \$? = $ac_status" >&5
+ echo "$as_me:6980: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6977: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6983: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6980: \$? = $ac_status" >&5
+ echo "$as_me:6986: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_libutf8=yes
else
(exit $ac_status); }; }; then
cf_cv_libutf8=yes
else
-echo "$as_me:6992: result: $cf_cv_libutf8" >&5
+echo "$as_me:6998: result: $cf_cv_libutf8" >&5
echo "${ECHO_T}$cf_cv_libutf8" >&6
if test "$cf_cv_libutf8" = yes ; then
echo "${ECHO_T}$cf_cv_libutf8" >&6
if test "$cf_cv_libutf8" = yes ; then
fi
# This is needed on Tru64 5.0 to declare mbstate_t
fi
# This is needed on Tru64 5.0 to declare mbstate_t
-echo "$as_me:7009: checking if we must include wchar.h to declare mbstate_t" >&5
+echo "$as_me:7015: checking if we must include wchar.h to declare mbstate_t" >&5
echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
if test "${cf_cv_mbstate_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
if test "${cf_cv_mbstate_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7034: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7040: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7037: \$? = $ac_status" >&5
+ echo "$as_me:7043: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7040: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7046: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7043: \$? = $ac_status" >&5
+ echo "$as_me:7049: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_mbstate_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
(exit $ac_status); }; }; then
cf_cv_mbstate_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7069: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7075: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7072: \$? = $ac_status" >&5
+ echo "$as_me:7078: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7075: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7081: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7078: \$? = $ac_status" >&5
+ echo "$as_me:7084: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_mbstate_t=yes
else
(exit $ac_status); }; }; then
cf_cv_mbstate_t=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7090: result: $cf_cv_mbstate_t" >&5
+echo "$as_me:7096: result: $cf_cv_mbstate_t" >&5
echo "${ECHO_T}$cf_cv_mbstate_t" >&6
if test "$cf_cv_mbstate_t" = yes ; then
echo "${ECHO_T}$cf_cv_mbstate_t" >&6
if test "$cf_cv_mbstate_t" = yes ; then
fi
# This is needed on Tru64 5.0 to declare wchar_t
fi
# This is needed on Tru64 5.0 to declare wchar_t
-echo "$as_me:7107: checking if we must include wchar.h to declare wchar_t" >&5
+echo "$as_me:7113: checking if we must include wchar.h to declare wchar_t" >&5
echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
if test "${cf_cv_wchar_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
if test "${cf_cv_wchar_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7132: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7138: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7135: \$? = $ac_status" >&5
+ echo "$as_me:7141: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7138: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7144: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7141: \$? = $ac_status" >&5
+ echo "$as_me:7147: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_wchar_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
(exit $ac_status); }; }; then
cf_cv_wchar_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7167: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7173: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7170: \$? = $ac_status" >&5
+ echo "$as_me:7176: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7173: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7179: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7176: \$? = $ac_status" >&5
+ echo "$as_me:7182: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_wchar_t=yes
else
(exit $ac_status); }; }; then
cf_cv_wchar_t=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7188: result: $cf_cv_wchar_t" >&5
+echo "$as_me:7194: result: $cf_cv_wchar_t" >&5
echo "${ECHO_T}$cf_cv_wchar_t" >&6
if test "$cf_cv_wchar_t" = yes ; then
echo "${ECHO_T}$cf_cv_wchar_t" >&6
if test "$cf_cv_wchar_t" = yes ; then
fi
# This is needed on Tru64 5.0 to declare wint_t
fi
# This is needed on Tru64 5.0 to declare wint_t
-echo "$as_me:7210: checking if we must include wchar.h to declare wint_t" >&5
+echo "$as_me:7216: checking if we must include wchar.h to declare wint_t" >&5
echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
if test "${cf_cv_wint_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
if test "${cf_cv_wint_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7235: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7241: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7238: \$? = $ac_status" >&5
+ echo "$as_me:7244: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7241: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7247: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7244: \$? = $ac_status" >&5
+ echo "$as_me:7250: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_wint_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
(exit $ac_status); }; }; then
cf_cv_wint_t=no
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7270: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7276: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7273: \$? = $ac_status" >&5
+ echo "$as_me:7279: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7276: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7282: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7279: \$? = $ac_status" >&5
+ echo "$as_me:7285: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_wint_t=yes
else
(exit $ac_status); }; }; then
cf_cv_wint_t=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7291: result: $cf_cv_wint_t" >&5
+echo "$as_me:7297: result: $cf_cv_wint_t" >&5
echo "${ECHO_T}$cf_cv_wint_t" >&6
if test "$cf_cv_wint_t" = yes ; then
echo "${ECHO_T}$cf_cv_wint_t" >&6
if test "$cf_cv_wint_t" = yes ; then
-echo "$as_me:7330: checking whether to enable _LP64 definition in curses.h" >&5
+echo "$as_me:7336: checking whether to enable _LP64 definition in curses.h" >&5
echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6
# Check whether --enable-lp64 or --disable-lp64 was given.
echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6
# Check whether --enable-lp64 or --disable-lp64 was given.
else
with_lp64=$default_with_lp64
fi;
else
with_lp64=$default_with_lp64
fi;
-echo "$as_me:7340: result: $with_lp64" >&5
+echo "$as_me:7346: result: $with_lp64" >&5
echo "${ECHO_T}$with_lp64" >&6
if test "$with_lp64" = yes ; then
echo "${ECHO_T}$with_lp64" >&6
if test "$with_lp64" = yes ; then
fi;
if test "$enable_largefile" != no; then
fi;
if test "$enable_largefile" != no; then
- echo "$as_me:7356: checking for special C compiler options needed for large files" >&5
+ echo "$as_me:7362: checking for special C compiler options needed for large files" >&5
echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_largefile_CC+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_largefile_CC+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
# IRIX 6.2 and later do not support large files by default,
# so use the C compiler's -n32 option if that helps.
cat >conftest.$ac_ext <<_ACEOF
# IRIX 6.2 and later do not support large files by default,
# so use the C compiler's -n32 option if that helps.
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7388: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7394: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7391: \$? = $ac_status" >&5
+ echo "$as_me:7397: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7394: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7400: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7397: \$? = $ac_status" >&5
+ echo "$as_me:7403: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
(exit $ac_status); }; }; then
break
else
rm -f conftest.$ac_objext
CC="$CC -n32"
rm -f conftest.$ac_objext
rm -f conftest.$ac_objext
CC="$CC -n32"
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7407: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7413: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7410: \$? = $ac_status" >&5
+ echo "$as_me:7416: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7413: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7419: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7416: \$? = $ac_status" >&5
+ echo "$as_me:7422: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sys_largefile_CC=' -n32'; break
else
(exit $ac_status); }; }; then
ac_cv_sys_largefile_CC=' -n32'; break
else
rm -f conftest.$ac_ext
fi
fi
rm -f conftest.$ac_ext
fi
fi
-echo "$as_me:7430: result: $ac_cv_sys_largefile_CC" >&5
+echo "$as_me:7436: result: $ac_cv_sys_largefile_CC" >&5
echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
if test "$ac_cv_sys_largefile_CC" != no; then
CC=$CC$ac_cv_sys_largefile_CC
fi
echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
if test "$ac_cv_sys_largefile_CC" != no; then
CC=$CC$ac_cv_sys_largefile_CC
fi
- echo "$as_me:7436: checking for _FILE_OFFSET_BITS value needed for large files" >&5
+ echo "$as_me:7442: checking for _FILE_OFFSET_BITS value needed for large files" >&5
echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_file_offset_bits+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_file_offset_bits+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
while :; do
ac_cv_sys_file_offset_bits=no
cat >conftest.$ac_ext <<_ACEOF
while :; do
ac_cv_sys_file_offset_bits=no
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7464: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7470: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7467: \$? = $ac_status" >&5
+ echo "$as_me:7473: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7470: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7476: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7473: \$? = $ac_status" >&5
+ echo "$as_me:7479: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
(exit $ac_status); }; }; then
break
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
#include "confdefs.h"
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7503: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7509: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7506: \$? = $ac_status" >&5
+ echo "$as_me:7512: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7509: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7515: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7512: \$? = $ac_status" >&5
+ echo "$as_me:7518: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sys_file_offset_bits=64; break
else
(exit $ac_status); }; }; then
ac_cv_sys_file_offset_bits=64; break
else
-echo "$as_me:7523: result: $ac_cv_sys_file_offset_bits" >&5
+echo "$as_me:7529: result: $ac_cv_sys_file_offset_bits" >&5
echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
if test "$ac_cv_sys_file_offset_bits" != no; then
echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
if test "$ac_cv_sys_file_offset_bits" != no; then
- echo "$as_me:7533: checking for _LARGE_FILES value needed for large files" >&5
+ echo "$as_me:7539: checking for _LARGE_FILES value needed for large files" >&5
echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_large_files+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_large_files+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
while :; do
ac_cv_sys_large_files=no
cat >conftest.$ac_ext <<_ACEOF
while :; do
ac_cv_sys_large_files=no
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
#include "confdefs.h"
#include <sys/types.h>
/* Check that off_t can represent 2**63 - 1 correctly.
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7561: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7567: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7564: \$? = $ac_status" >&5
+ echo "$as_me:7570: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7567: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7573: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7570: \$? = $ac_status" >&5
+ echo "$as_me:7576: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
(exit $ac_status); }; }; then
break
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#define _LARGE_FILES 1
#include <sys/types.h>
#include "confdefs.h"
#define _LARGE_FILES 1
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7600: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7606: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7603: \$? = $ac_status" >&5
+ echo "$as_me:7609: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7606: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7612: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7609: \$? = $ac_status" >&5
+ echo "$as_me:7615: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sys_large_files=1; break
else
(exit $ac_status); }; }; then
ac_cv_sys_large_files=1; break
else
-echo "$as_me:7620: result: $ac_cv_sys_large_files" >&5
+echo "$as_me:7626: result: $ac_cv_sys_large_files" >&5
echo "${ECHO_T}$ac_cv_sys_large_files" >&6
if test "$ac_cv_sys_large_files" != no; then
echo "${ECHO_T}$ac_cv_sys_large_files" >&6
if test "$ac_cv_sys_large_files" != no; then
fi
if test "$enable_largefile" != no ; then
fi
if test "$enable_largefile" != no ; then
- echo "$as_me:7633: checking for _LARGEFILE_SOURCE value needed for large files" >&5
+ echo "$as_me:7639: checking for _LARGEFILE_SOURCE value needed for large files" >&5
echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_largefile_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_largefile_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
while :; do
ac_cv_sys_largefile_source=no
cat >conftest.$ac_ext <<_ACEOF
while :; do
ac_cv_sys_largefile_source=no
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdio.h>
int
#include "confdefs.h"
#include <stdio.h>
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7653: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7659: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7656: \$? = $ac_status" >&5
+ echo "$as_me:7662: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7659: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7665: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7662: \$? = $ac_status" >&5
+ echo "$as_me:7668: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
(exit $ac_status); }; }; then
break
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#define _LARGEFILE_SOURCE 1
#include <stdio.h>
#include "confdefs.h"
#define _LARGEFILE_SOURCE 1
#include <stdio.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7684: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7690: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7687: \$? = $ac_status" >&5
+ echo "$as_me:7693: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7690: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7696: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7693: \$? = $ac_status" >&5
+ echo "$as_me:7699: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sys_largefile_source=1; break
else
(exit $ac_status); }; }; then
ac_cv_sys_largefile_source=1; break
else
-echo "$as_me:7704: result: $ac_cv_sys_largefile_source" >&5
+echo "$as_me:7710: result: $ac_cv_sys_largefile_source" >&5
echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
if test "$ac_cv_sys_largefile_source" != no; then
echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
if test "$ac_cv_sys_largefile_source" != no; then
# We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
# in glibc 2.1.3, but that breaks too many other things.
# If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
# We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
# in glibc 2.1.3, but that breaks too many other things.
# If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
-echo "$as_me:7718: checking for fseeko" >&5
+echo "$as_me:7724: checking for fseeko" >&5
echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
if test "${ac_cv_func_fseeko+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
if test "${ac_cv_func_fseeko+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdio.h>
int
#include "confdefs.h"
#include <stdio.h>
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7736: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7742: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7739: \$? = $ac_status" >&5
+ echo "$as_me:7745: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7742: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7748: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7745: \$? = $ac_status" >&5
+ echo "$as_me:7751: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_fseeko=yes
else
(exit $ac_status); }; }; then
ac_cv_func_fseeko=yes
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:7755: result: $ac_cv_func_fseeko" >&5
+echo "$as_me:7761: result: $ac_cv_func_fseeko" >&5
echo "${ECHO_T}$ac_cv_func_fseeko" >&6
if test $ac_cv_func_fseeko = yes; then
echo "${ECHO_T}$ac_cv_func_fseeko" >&6
if test $ac_cv_func_fseeko = yes; then
test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
- echo "$as_me:7776: checking whether to use struct dirent64" >&5
+ echo "$as_me:7782: checking whether to use struct dirent64" >&5
echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
if test "${cf_cv_struct_dirent64+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
if test "${cf_cv_struct_dirent64+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include "confdefs.h"
#include <sys/types.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7804: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7810: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:7807: \$? = $ac_status" >&5
+ echo "$as_me:7813: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:7810: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7816: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7813: \$? = $ac_status" >&5
+ echo "$as_me:7819: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_struct_dirent64=yes
else
(exit $ac_status); }; }; then
cf_cv_struct_dirent64=yes
else
rm -f conftest.$ac_objext conftest.$ac_ext
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:7824: result: $cf_cv_struct_dirent64" >&5
+echo "$as_me:7830: result: $cf_cv_struct_dirent64" >&5
echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
#define HAVE_STRUCT_DIRENT64 1
echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
#define HAVE_STRUCT_DIRENT64 1
fi
### use option --disable-tparm-varargs to make tparm() conform to X/Open
fi
### use option --disable-tparm-varargs to make tparm() conform to X/Open
-echo "$as_me:7833: checking if you want tparm not to use X/Open fixed-parameter list" >&5
+echo "$as_me:7839: checking if you want tparm not to use X/Open fixed-parameter list" >&5
echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6
# Check whether --enable-tparm-varargs or --disable-tparm-varargs was given.
echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6
# Check whether --enable-tparm-varargs or --disable-tparm-varargs was given.
else
with_tparm_varargs=yes
fi;
else
with_tparm_varargs=yes
fi;
-echo "$as_me:7843: result: $with_tparm_varargs" >&5
+echo "$as_me:7849: result: $with_tparm_varargs" >&5
echo "${ECHO_T}$with_tparm_varargs" >&6
NCURSES_TPARM_VARARGS=0
test "$with_tparm_varargs" = yes && NCURSES_TPARM_VARARGS=1
### use option --with-bool to override bool's type
echo "${ECHO_T}$with_tparm_varargs" >&6
NCURSES_TPARM_VARARGS=0
test "$with_tparm_varargs" = yes && NCURSES_TPARM_VARARGS=1
### use option --with-bool to override bool's type
-echo "$as_me:7849: checking for type of bool" >&5
+echo "$as_me:7855: checking for type of bool" >&5
echo $ECHO_N "checking for type of bool... $ECHO_C" >&6
# Check whether --with-bool or --without-bool was given.
echo $ECHO_N "checking for type of bool... $ECHO_C" >&6
# Check whether --with-bool or --without-bool was given.
else
NCURSES_BOOL=auto
fi;
else
NCURSES_BOOL=auto
fi;
-echo "$as_me:7859: result: $NCURSES_BOOL" >&5
+echo "$as_me:7865: result: $NCURSES_BOOL" >&5
echo "${ECHO_T}$NCURSES_BOOL" >&6
echo "${ECHO_T}$NCURSES_BOOL" >&6
-echo "$as_me:7862: checking for alternate terminal capabilities file" >&5
+echo "$as_me:7868: checking for alternate terminal capabilities file" >&5
echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6
# Check whether --with-caps or --without-caps was given.
echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6
# Check whether --with-caps or --without-caps was given.
TERMINFO_CAPS=Caps
fi;
test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
TERMINFO_CAPS=Caps
fi;
test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
-echo "$as_me:7873: result: $TERMINFO_CAPS" >&5
+echo "$as_me:7879: result: $TERMINFO_CAPS" >&5
echo "${ECHO_T}$TERMINFO_CAPS" >&6
### use option --with-chtype to override chtype's type
echo "${ECHO_T}$TERMINFO_CAPS" >&6
### use option --with-chtype to override chtype's type
-echo "$as_me:7877: checking for type of chtype" >&5
+echo "$as_me:7883: checking for type of chtype" >&5
echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
# Check whether --with-chtype or --without-chtype was given.
echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
# Check whether --with-chtype or --without-chtype was given.
else
NCURSES_CHTYPE=auto
fi;
else
NCURSES_CHTYPE=auto
fi;
-echo "$as_me:7887: result: $NCURSES_CHTYPE" >&5
+echo "$as_me:7893: result: $NCURSES_CHTYPE" >&5
echo "${ECHO_T}$NCURSES_CHTYPE" >&6
### use option --with-ospeed to override ospeed's type
echo "${ECHO_T}$NCURSES_CHTYPE" >&6
### use option --with-ospeed to override ospeed's type
-echo "$as_me:7891: checking for type of ospeed" >&5
+echo "$as_me:7897: checking for type of ospeed" >&5
echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6
# Check whether --with-ospeed or --without-ospeed was given.
echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6
# Check whether --with-ospeed or --without-ospeed was given.
else
NCURSES_OSPEED=short
fi;
else
NCURSES_OSPEED=short
fi;
-echo "$as_me:7901: result: $NCURSES_OSPEED" >&5
+echo "$as_me:7907: result: $NCURSES_OSPEED" >&5
echo "${ECHO_T}$NCURSES_OSPEED" >&6
### use option --with-mmask-t to override mmask_t's type
echo "${ECHO_T}$NCURSES_OSPEED" >&6
### use option --with-mmask-t to override mmask_t's type
-echo "$as_me:7905: checking for type of mmask_t" >&5
+echo "$as_me:7911: checking for type of mmask_t" >&5
echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6
# Check whether --with-mmask-t or --without-mmask-t was given.
echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6
# Check whether --with-mmask-t or --without-mmask-t was given.
else
NCURSES_MMASK_T=auto
fi;
else
NCURSES_MMASK_T=auto
fi;
-echo "$as_me:7915: result: $NCURSES_MMASK_T" >&5
+echo "$as_me:7921: result: $NCURSES_MMASK_T" >&5
echo "${ECHO_T}$NCURSES_MMASK_T" >&6
### Enable compiling-in rcs id's
echo "${ECHO_T}$NCURSES_MMASK_T" >&6
### Enable compiling-in rcs id's
-echo "$as_me:7919: checking if RCS identifiers should be compiled-in" >&5
+echo "$as_me:7925: checking if RCS identifiers should be compiled-in" >&5
echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
# Check whether --with-rcs-ids or --without-rcs-ids was given.
echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
# Check whether --with-rcs-ids or --without-rcs-ids was given.
-echo "$as_me:7929: result: $with_rcs_ids" >&5
+echo "$as_me:7935: result: $with_rcs_ids" >&5
echo "${ECHO_T}$with_rcs_ids" >&6
test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF
#define USE_RCS_IDS 1
echo "${ECHO_T}$with_rcs_ids" >&6
test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF
#define USE_RCS_IDS 1
###############################################################################
###############################################################################
-echo "$as_me:7937: checking format of man-pages" >&5
+echo "$as_me:7943: checking format of man-pages" >&5
echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6
# Check whether --with-manpage-format or --without-manpage-format was given.
echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6
# Check whether --with-manpage-format or --without-manpage-format was given.
-echo "$as_me:8026: result: $MANPAGE_FORMAT" >&5
+echo "$as_me:8032: result: $MANPAGE_FORMAT" >&5
echo "${ECHO_T}$MANPAGE_FORMAT" >&6
if test -n "$cf_unknown" ; then
echo "${ECHO_T}$MANPAGE_FORMAT" >&6
if test -n "$cf_unknown" ; then
- { echo "$as_me:8029: WARNING: Unexpected manpage-format $cf_unknown" >&5
+ { echo "$as_me:8035: WARNING: Unexpected manpage-format $cf_unknown" >&5
echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;}
fi
echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;}
fi
-echo "$as_me:8033: checking for manpage renaming" >&5
+echo "$as_me:8039: checking for manpage renaming" >&5
echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6
# Check whether --with-manpage-renames or --without-manpage-renames was given.
echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6
# Check whether --with-manpage-renames or --without-manpage-renames was given.
if test -f $srcdir/man/$MANPAGE_RENAMES ; then
MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
elif test ! -f $MANPAGE_RENAMES ; then
if test -f $srcdir/man/$MANPAGE_RENAMES ; then
MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
elif test ! -f $MANPAGE_RENAMES ; then
- { { echo "$as_me:8061: error: not a filename: $MANPAGE_RENAMES" >&5
+ { { echo "$as_me:8067: error: not a filename: $MANPAGE_RENAMES" >&5
echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
{ (exit 1); exit 1; }; }
fi
-echo "$as_me:8075: result: $MANPAGE_RENAMES" >&5
+echo "$as_me:8081: result: $MANPAGE_RENAMES" >&5
echo "${ECHO_T}$MANPAGE_RENAMES" >&6
echo "${ECHO_T}$MANPAGE_RENAMES" >&6
-echo "$as_me:8078: checking if manpage aliases will be installed" >&5
+echo "$as_me:8084: checking if manpage aliases will be installed" >&5
echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6
# Check whether --with-manpage-aliases or --without-manpage-aliases was given.
echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6
# Check whether --with-manpage-aliases or --without-manpage-aliases was given.
-echo "$as_me:8089: result: $MANPAGE_ALIASES" >&5
+echo "$as_me:8095: result: $MANPAGE_ALIASES" >&5
echo "${ECHO_T}$MANPAGE_ALIASES" >&6
if test "$LN_S" = "ln -s"; then
echo "${ECHO_T}$MANPAGE_ALIASES" >&6
if test "$LN_S" = "ln -s"; then
MANPAGE_SYMLINKS=no
if test "$MANPAGE_ALIASES" = yes ; then
MANPAGE_SYMLINKS=no
if test "$MANPAGE_ALIASES" = yes ; then
-echo "$as_me:8100: checking if manpage symlinks should be used" >&5
+echo "$as_me:8106: checking if manpage symlinks should be used" >&5
echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6
# Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6
# Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
if test "$$cf_use_symlinks" = no; then
if test "$MANPAGE_SYMLINKS" = yes ; then
if test "$$cf_use_symlinks" = no; then
if test "$MANPAGE_SYMLINKS" = yes ; then
- { echo "$as_me:8113: WARNING: cannot make symlinks" >&5
+ { echo "$as_me:8119: WARNING: cannot make symlinks" >&5
echo "$as_me: WARNING: cannot make symlinks" >&2;}
MANPAGE_SYMLINKS=no
fi
fi
echo "$as_me: WARNING: cannot make symlinks" >&2;}
MANPAGE_SYMLINKS=no
fi
fi
-echo "$as_me:8119: result: $MANPAGE_SYMLINKS" >&5
+echo "$as_me:8125: result: $MANPAGE_SYMLINKS" >&5
echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
fi
echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
fi
-echo "$as_me:8123: checking for manpage tbl" >&5
+echo "$as_me:8129: checking for manpage tbl" >&5
echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6
# Check whether --with-manpage-tbl or --without-manpage-tbl was given.
echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6
# Check whether --with-manpage-tbl or --without-manpage-tbl was given.
-echo "$as_me:8134: result: $MANPAGE_TBL" >&5
+echo "$as_me:8140: result: $MANPAGE_TBL" >&5
echo "${ECHO_T}$MANPAGE_TBL" >&6
if test "$prefix" = "NONE" ; then
echo "${ECHO_T}$MANPAGE_TBL" >&6
if test "$prefix" = "NONE" ; then
###############################################################################
### Note that some functions (such as const) are normally disabled anyway.
###############################################################################
### Note that some functions (such as const) are normally disabled anyway.
-echo "$as_me:8445: checking if you want to build with function extensions" >&5
+echo "$as_me:8451: checking if you want to build with function extensions" >&5
echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
# Check whether --enable-ext-funcs or --disable-ext-funcs was given.
echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
# Check whether --enable-ext-funcs or --disable-ext-funcs was given.
else
with_ext_funcs=yes
fi;
else
with_ext_funcs=yes
fi;
-echo "$as_me:8455: result: $with_ext_funcs" >&5
+echo "$as_me:8461: result: $with_ext_funcs" >&5
echo "${ECHO_T}$with_ext_funcs" >&6
if test "$with_ext_funcs" = yes ; then
NCURSES_EXT_FUNCS=1
echo "${ECHO_T}$with_ext_funcs" >&6
if test "$with_ext_funcs" = yes ; then
NCURSES_EXT_FUNCS=1
fi
### use option --enable-const to turn on use of const beyond that in XSI.
fi
### use option --enable-const to turn on use of const beyond that in XSI.
-echo "$as_me:8492: checking for extended use of const keyword" >&5
+echo "$as_me:8498: checking for extended use of const keyword" >&5
echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
# Check whether --enable-const or --disable-const was given.
echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
# Check whether --enable-const or --disable-const was given.
else
with_ext_const=no
fi;
else
with_ext_const=no
fi;
-echo "$as_me:8502: result: $with_ext_const" >&5
+echo "$as_me:8508: result: $with_ext_const" >&5
echo "${ECHO_T}$with_ext_const" >&6
NCURSES_CONST='/*nothing*/'
if test "$with_ext_const" = yes ; then
NCURSES_CONST=const
fi
echo "${ECHO_T}$with_ext_const" >&6
NCURSES_CONST='/*nothing*/'
if test "$with_ext_const" = yes ; then
NCURSES_CONST=const
fi
-echo "$as_me:8509: checking if you want \$NCURSES_NO_PADDING code" >&5
+echo "$as_me:8515: checking if you want \$NCURSES_NO_PADDING code" >&5
echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6
# Check whether --enable-no-padding or --disable-no-padding was given.
echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6
# Check whether --enable-no-padding or --disable-no-padding was given.
else
with_no_padding=$with_ext_funcs
fi;
else
with_no_padding=$with_ext_funcs
fi;
-echo "$as_me:8519: result: $with_no_padding" >&5
+echo "$as_me:8525: result: $with_no_padding" >&5
echo "${ECHO_T}$with_no_padding" >&6
test "$with_no_padding" = yes && cat >>confdefs.h <<\EOF
#define NCURSES_NO_PADDING 1
EOF
echo "${ECHO_T}$with_no_padding" >&6
test "$with_no_padding" = yes && cat >>confdefs.h <<\EOF
#define NCURSES_NO_PADDING 1
EOF
-echo "$as_me:8525: checking for ANSI C header files" >&5
+echo "$as_me:8531: 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
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
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include <float.h>
_ACEOF
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:8539: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:8545: \"$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
(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:8545: \$? = $ac_status" >&5
+ echo "$as_me:8551: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
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
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
#include "confdefs.h"
#include <string.h>
#include "confdefs.h"
#include <string.h>
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
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
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
:
else
cat >conftest.$ac_ext <<_ACEOF
:
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
}
_ACEOF
rm -f conftest$ac_exeext
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:8632: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8638: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8635: \$? = $ac_status" >&5
+ echo "$as_me:8641: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:8637: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8643: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8640: \$? = $ac_status" >&5
+ echo "$as_me:8646: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
(exit $ac_status); }; }; then
:
else
-echo "$as_me:8653: result: $ac_cv_header_stdc" >&5
+echo "$as_me:8659: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
inttypes.h stdint.h unistd.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
inttypes.h stdint.h unistd.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:8669: checking for $ac_header" >&5
+echo "$as_me:8675: 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
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
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8681: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8687: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8684: \$? = $ac_status" >&5
+ echo "$as_me:8690: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8687: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8693: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8690: \$? = $ac_status" >&5
+ echo "$as_me:8696: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:8700: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:8706: 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
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
-echo "$as_me:8710: checking for signed char" >&5
+echo "$as_me:8716: checking for signed char" >&5
echo $ECHO_N "checking for signed char... $ECHO_C" >&6
if test "${ac_cv_type_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for signed char... $ECHO_C" >&6
if test "${ac_cv_type_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8731: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8737: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8734: \$? = $ac_status" >&5
+ echo "$as_me:8740: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8737: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8743: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8740: \$? = $ac_status" >&5
+ echo "$as_me:8746: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_signed_char=yes
else
(exit $ac_status); }; }; then
ac_cv_type_signed_char=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:8750: result: $ac_cv_type_signed_char" >&5
+echo "$as_me:8756: result: $ac_cv_type_signed_char" >&5
echo "${ECHO_T}$ac_cv_type_signed_char" >&6
echo "${ECHO_T}$ac_cv_type_signed_char" >&6
-echo "$as_me:8753: checking size of signed char" >&5
+echo "$as_me:8759: checking size of signed char" >&5
echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
if test "${ac_cv_sizeof_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
if test "${ac_cv_sizeof_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8774: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8780: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8777: \$? = $ac_status" >&5
+ echo "$as_me:8783: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8780: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8786: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8783: \$? = $ac_status" >&5
+ echo "$as_me:8789: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8800: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8806: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8803: \$? = $ac_status" >&5
+ echo "$as_me:8809: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8806: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8812: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8809: \$? = $ac_status" >&5
+ echo "$as_me:8815: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8837: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8843: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8840: \$? = $ac_status" >&5
+ echo "$as_me:8846: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8843: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8849: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8846: \$? = $ac_status" >&5
+ echo "$as_me:8852: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8874: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8880: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8877: \$? = $ac_status" >&5
+ echo "$as_me:8883: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:8880: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8886: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8883: \$? = $ac_status" >&5
+ echo "$as_me:8889: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
ac_cv_sizeof_signed_char=$ac_lo
else
if test "$cross_compiling" = yes; then
ac_cv_sizeof_signed_char=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:8896: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:8902: 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
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
$ac_includes_default
int
#include "confdefs.h"
$ac_includes_default
int
}
_ACEOF
rm -f conftest$ac_exeext
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:8917: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8923: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8920: \$? = $ac_status" >&5
+ echo "$as_me:8926: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:8922: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8928: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8925: \$? = $ac_status" >&5
+ echo "$as_me:8931: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_signed_char=`cat conftest.val`
else
(exit $ac_status); }; }; then
ac_cv_sizeof_signed_char=`cat conftest.val`
else
ac_cv_sizeof_signed_char=0
fi
fi
ac_cv_sizeof_signed_char=0
fi
fi
-echo "$as_me:8941: result: $ac_cv_sizeof_signed_char" >&5
+echo "$as_me:8947: result: $ac_cv_sizeof_signed_char" >&5
echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
cat >>confdefs.h <<EOF
#define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
cat >>confdefs.h <<EOF
#define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
else
NCURSES_SBOOL="char"
fi
else
NCURSES_SBOOL="char"
fi
-echo "$as_me:8952: checking if you want to use signed Boolean array in term.h" >&5
+echo "$as_me:8958: checking if you want to use signed Boolean array in term.h" >&5
echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6
# Check whether --enable-signed-char or --disable-signed-char was given.
echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6
# Check whether --enable-signed-char or --disable-signed-char was given.
else
with_signed_char=no
fi;
else
with_signed_char=no
fi;
-echo "$as_me:8962: result: $with_signed_char" >&5
+echo "$as_me:8968: result: $with_signed_char" >&5
echo "${ECHO_T}$with_signed_char" >&6
test "$with_signed_char" != yes && NCURSES_SBOOL="char"
### use option --enable-sigwinch to turn on use of SIGWINCH logic
echo "${ECHO_T}$with_signed_char" >&6
test "$with_signed_char" != yes && NCURSES_SBOOL="char"
### use option --enable-sigwinch to turn on use of SIGWINCH logic
-echo "$as_me:8967: checking if you want SIGWINCH handler" >&5
+echo "$as_me:8973: checking if you want SIGWINCH handler" >&5
echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6
# Check whether --enable-sigwinch or --disable-sigwinch was given.
echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6
# Check whether --enable-sigwinch or --disable-sigwinch was given.
else
with_sigwinch=$with_ext_funcs
fi;
else
with_sigwinch=$with_ext_funcs
fi;
-echo "$as_me:8977: result: $with_sigwinch" >&5
+echo "$as_me:8983: result: $with_sigwinch" >&5
echo "${ECHO_T}$with_sigwinch" >&6
test "$with_sigwinch" = yes && cat >>confdefs.h <<\EOF
#define USE_SIGWINCH 1
EOF
### use option --enable-tcap-names to allow user to define new capabilities
echo "${ECHO_T}$with_sigwinch" >&6
test "$with_sigwinch" = yes && cat >>confdefs.h <<\EOF
#define USE_SIGWINCH 1
EOF
### use option --enable-tcap-names to allow user to define new capabilities
-echo "$as_me:8984: checking if you want user-definable terminal capabilities like termcap" >&5
+echo "$as_me:8990: checking if you want user-definable terminal capabilities like termcap" >&5
echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6
# Check whether --enable-tcap-names or --disable-tcap-names was given.
echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6
# Check whether --enable-tcap-names or --disable-tcap-names was given.
else
with_tcap_names=$with_ext_funcs
fi;
else
with_tcap_names=$with_ext_funcs
fi;
-echo "$as_me:8994: result: $with_tcap_names" >&5
+echo "$as_me:9000: result: $with_tcap_names" >&5
echo "${ECHO_T}$with_tcap_names" >&6
NCURSES_XNAMES=0
test "$with_tcap_names" = yes && NCURSES_XNAMES=1
echo "${ECHO_T}$with_tcap_names" >&6
NCURSES_XNAMES=0
test "$with_tcap_names" = yes && NCURSES_XNAMES=1
###############################################################################
# These options are relatively safe to experiment with.
###############################################################################
# These options are relatively safe to experiment with.
-echo "$as_me:9002: checking if you want all development code" >&5
+echo "$as_me:9008: checking if you want all development code" >&5
echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
# Check whether --with-develop or --without-develop was given.
echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
# Check whether --with-develop or --without-develop was given.
-echo "$as_me:9012: result: $with_develop" >&5
+echo "$as_me:9018: result: $with_develop" >&5
echo "${ECHO_T}$with_develop" >&6
### use option --enable-hard-tabs to turn on use of hard-tabs optimize
echo "${ECHO_T}$with_develop" >&6
### use option --enable-hard-tabs to turn on use of hard-tabs optimize
-echo "$as_me:9016: checking if you want hard-tabs code" >&5
+echo "$as_me:9022: checking if you want hard-tabs code" >&5
echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6
# Check whether --enable-hard-tabs or --disable-hard-tabs was given.
echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6
# Check whether --enable-hard-tabs or --disable-hard-tabs was given.
else
enable_hard_tabs=$with_develop
fi;
else
enable_hard_tabs=$with_develop
fi;
-echo "$as_me:9026: result: $enable_hard_tabs" >&5
+echo "$as_me:9032: result: $enable_hard_tabs" >&5
echo "${ECHO_T}$enable_hard_tabs" >&6
test "$enable_hard_tabs" = yes && cat >>confdefs.h <<\EOF
#define USE_HARD_TABS 1
EOF
### use option --enable-xmc-glitch to turn on use of magic-cookie optimize
echo "${ECHO_T}$enable_hard_tabs" >&6
test "$enable_hard_tabs" = yes && cat >>confdefs.h <<\EOF
#define USE_HARD_TABS 1
EOF
### use option --enable-xmc-glitch to turn on use of magic-cookie optimize
-echo "$as_me:9033: checking if you want limited support for xmc" >&5
+echo "$as_me:9039: checking if you want limited support for xmc" >&5
echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6
# Check whether --enable-xmc-glitch or --disable-xmc-glitch was given.
echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6
# Check whether --enable-xmc-glitch or --disable-xmc-glitch was given.
else
enable_xmc_glitch=$with_develop
fi;
else
enable_xmc_glitch=$with_develop
fi;
-echo "$as_me:9043: result: $enable_xmc_glitch" >&5
+echo "$as_me:9049: result: $enable_xmc_glitch" >&5
echo "${ECHO_T}$enable_xmc_glitch" >&6
test "$enable_xmc_glitch" = yes && cat >>confdefs.h <<\EOF
#define USE_XMC_SUPPORT 1
echo "${ECHO_T}$enable_xmc_glitch" >&6
test "$enable_xmc_glitch" = yes && cat >>confdefs.h <<\EOF
#define USE_XMC_SUPPORT 1
###############################################################################
# These are just experimental, probably should not be in a package:
###############################################################################
# These are just experimental, probably should not be in a package:
-echo "$as_me:9052: checking if you do not want to assume colors are white-on-black" >&5
+echo "$as_me:9058: checking if you do not want to assume colors are white-on-black" >&5
echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6
# Check whether --enable-assumed-color or --disable-assumed-color was given.
echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6
# Check whether --enable-assumed-color or --disable-assumed-color was given.
else
with_assumed_color=yes
fi;
else
with_assumed_color=yes
fi;
-echo "$as_me:9062: result: $with_assumed_color" >&5
+echo "$as_me:9068: result: $with_assumed_color" >&5
echo "${ECHO_T}$with_assumed_color" >&6
test "$with_assumed_color" = yes && cat >>confdefs.h <<\EOF
#define USE_ASSUMED_COLOR 1
EOF
### use option --enable-hashmap to turn on use of hashmap scrolling logic
echo "${ECHO_T}$with_assumed_color" >&6
test "$with_assumed_color" = yes && cat >>confdefs.h <<\EOF
#define USE_ASSUMED_COLOR 1
EOF
### use option --enable-hashmap to turn on use of hashmap scrolling logic
-echo "$as_me:9069: checking if you want hashmap scrolling-optimization code" >&5
+echo "$as_me:9075: checking if you want hashmap scrolling-optimization code" >&5
echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6
# Check whether --enable-hashmap or --disable-hashmap was given.
echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6
# Check whether --enable-hashmap or --disable-hashmap was given.
else
with_hashmap=yes
fi;
else
with_hashmap=yes
fi;
-echo "$as_me:9079: result: $with_hashmap" >&5
+echo "$as_me:9085: result: $with_hashmap" >&5
echo "${ECHO_T}$with_hashmap" >&6
test "$with_hashmap" = yes && cat >>confdefs.h <<\EOF
#define USE_HASHMAP 1
EOF
### use option --enable-colorfgbg to turn on use of $COLORFGBG environment
echo "${ECHO_T}$with_hashmap" >&6
test "$with_hashmap" = yes && cat >>confdefs.h <<\EOF
#define USE_HASHMAP 1
EOF
### use option --enable-colorfgbg to turn on use of $COLORFGBG environment
-echo "$as_me:9086: checking if you want colorfgbg code" >&5
+echo "$as_me:9092: checking if you want colorfgbg code" >&5
echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6
# Check whether --enable-colorfgbg or --disable-colorfgbg was given.
echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6
# Check whether --enable-colorfgbg or --disable-colorfgbg was given.
else
with_colorfgbg=no
fi;
else
with_colorfgbg=no
fi;
-echo "$as_me:9096: result: $with_colorfgbg" >&5
+echo "$as_me:9102: result: $with_colorfgbg" >&5
echo "${ECHO_T}$with_colorfgbg" >&6
test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF
#define USE_COLORFGBG 1
EOF
### use option --enable-ext-colors to turn on use of colors beyond 16.
echo "${ECHO_T}$with_colorfgbg" >&6
test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF
#define USE_COLORFGBG 1
EOF
### use option --enable-ext-colors to turn on use of colors beyond 16.
-echo "$as_me:9103: checking if you want to use experimental extended colors" >&5
+echo "$as_me:9109: checking if you want to use experimental extended colors" >&5
echo $ECHO_N "checking if you want to use experimental extended colors... $ECHO_C" >&6
# Check whether --enable-ext-colors or --disable-ext-colors was given.
echo $ECHO_N "checking if you want to use experimental extended colors... $ECHO_C" >&6
# Check whether --enable-ext-colors or --disable-ext-colors was given.
else
with_ext_colors=no
fi;
else
with_ext_colors=no
fi;
-echo "$as_me:9113: result: $with_ext_colors" >&5
+echo "$as_me:9119: result: $with_ext_colors" >&5
echo "${ECHO_T}$with_ext_colors" >&6
NCURSES_EXT_COLORS=0
if test "$with_ext_colors" = yes ; then
if test "$with_widec" != yes ; then
echo "${ECHO_T}$with_ext_colors" >&6
NCURSES_EXT_COLORS=0
if test "$with_ext_colors" = yes ; then
if test "$with_widec" != yes ; then
- { { echo "$as_me:9118: error: This option applies only to wide-character library" >&5
+ { { echo "$as_me:9124: error: This option applies only to wide-character library" >&5
echo "$as_me: error: This option applies only to wide-character library" >&2;}
{ (exit 1); exit 1; }; }
else
echo "$as_me: error: This option applies only to wide-character library" >&2;}
{ (exit 1); exit 1; }; }
else
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
- { echo "$as_me:9129: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
+ { echo "$as_me:9135: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
fi
### use option --enable-ext-mouse to modify coding to support 5-button mice
fi
### use option --enable-ext-mouse to modify coding to support 5-button mice
-echo "$as_me:9144: checking if you want to use experimental extended mouse encoding" >&5
+echo "$as_me:9150: checking if you want to use experimental extended mouse encoding" >&5
echo $ECHO_N "checking if you want to use experimental extended mouse encoding... $ECHO_C" >&6
# Check whether --enable-ext-mouse or --disable-ext-mouse was given.
echo $ECHO_N "checking if you want to use experimental extended mouse encoding... $ECHO_C" >&6
# Check whether --enable-ext-mouse or --disable-ext-mouse was given.
else
with_ext_mouse=no
fi;
else
with_ext_mouse=no
fi;
-echo "$as_me:9154: result: $with_ext_mouse" >&5
+echo "$as_me:9160: result: $with_ext_mouse" >&5
echo "${ECHO_T}$with_ext_mouse" >&6
NCURSES_MOUSE_VERSION=1
if test "$with_ext_mouse" = yes ; then
echo "${ECHO_T}$with_ext_mouse" >&6
NCURSES_MOUSE_VERSION=1
if test "$with_ext_mouse" = yes ; then
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
- { echo "$as_me:9165: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
+ { echo "$as_me:9171: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
# Reentrant code has to be opaque; there's little advantage to making ncurses
# opaque outside of that, so there is no --enable-opaque option.
# Reentrant code has to be opaque; there's little advantage to making ncurses
# opaque outside of that, so there is no --enable-opaque option.
-echo "$as_me:9175: checking if you want experimental reentrant code" >&5
+echo "$as_me:9181: checking if you want experimental reentrant code" >&5
echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
# Check whether --enable-reentrant or --disable-reentrant was given.
echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
# Check whether --enable-reentrant or --disable-reentrant was given.
else
with_reentrant=no
fi;
else
with_reentrant=no
fi;
-echo "$as_me:9185: result: $with_reentrant" >&5
+echo "$as_me:9191: result: $with_reentrant" >&5
echo "${ECHO_T}$with_reentrant" >&6
if test "$with_reentrant" = yes ; then
cf_cv_enable_reentrant=1
echo "${ECHO_T}$with_reentrant" >&6
if test "$with_reentrant" = yes ; then
cf_cv_enable_reentrant=1
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
5.*)
cf_cv_rel_version=6.0
cf_cv_abi_version=6
- { echo "$as_me:9202: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
+ { echo "$as_me:9208: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
;;
esac
-echo "$as_me:9215: checking if you want experimental safe-sprintf code" >&5
+echo "$as_me:9221: checking if you want experimental safe-sprintf code" >&5
echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6
# Check whether --enable-safe-sprintf or --disable-safe-sprintf was given.
echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6
# Check whether --enable-safe-sprintf or --disable-safe-sprintf was given.
else
with_safe_sprintf=no
fi;
else
with_safe_sprintf=no
fi;
-echo "$as_me:9225: result: $with_safe_sprintf" >&5
+echo "$as_me:9231: result: $with_safe_sprintf" >&5
echo "${ECHO_T}$with_safe_sprintf" >&6
test "$with_safe_sprintf" = yes && cat >>confdefs.h <<\EOF
#define USE_SAFE_SPRINTF 1
echo "${ECHO_T}$with_safe_sprintf" >&6
test "$with_safe_sprintf" = yes && cat >>confdefs.h <<\EOF
#define USE_SAFE_SPRINTF 1
### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
# when hashmap is used scroll hints are useless
if test "$with_hashmap" = no ; then
### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
# when hashmap is used scroll hints are useless
if test "$with_hashmap" = no ; then
-echo "$as_me:9234: checking if you want to experiment without scrolling-hints code" >&5
+echo "$as_me:9240: checking if you want to experiment without scrolling-hints code" >&5
echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
# Check whether --enable-scroll-hints or --disable-scroll-hints was given.
echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
# Check whether --enable-scroll-hints or --disable-scroll-hints was given.
else
with_scroll_hints=yes
fi;
else
with_scroll_hints=yes
fi;
-echo "$as_me:9244: result: $with_scroll_hints" >&5
+echo "$as_me:9250: result: $with_scroll_hints" >&5
echo "${ECHO_T}$with_scroll_hints" >&6
test "$with_scroll_hints" = yes && cat >>confdefs.h <<\EOF
#define USE_SCROLL_HINTS 1
echo "${ECHO_T}$with_scroll_hints" >&6
test "$with_scroll_hints" = yes && cat >>confdefs.h <<\EOF
#define USE_SCROLL_HINTS 1
-echo "$as_me:9252: checking if you want experimental wgetch-events code" >&5
+echo "$as_me:9258: checking if you want experimental wgetch-events code" >&5
echo $ECHO_N "checking if you want experimental wgetch-events code... $ECHO_C" >&6
# Check whether --enable-wgetch-events or --disable-wgetch-events was given.
echo $ECHO_N "checking if you want experimental wgetch-events code... $ECHO_C" >&6
# Check whether --enable-wgetch-events or --disable-wgetch-events was given.
else
with_wgetch_events=no
fi;
else
with_wgetch_events=no
fi;
-echo "$as_me:9262: result: $with_wgetch_events" >&5
+echo "$as_me:9268: result: $with_wgetch_events" >&5
echo "${ECHO_T}$with_wgetch_events" >&6
test "$with_wgetch_events" = yes && cat >>confdefs.h <<\EOF
#define NCURSES_WGETCH_EVENTS 1
echo "${ECHO_T}$with_wgetch_events" >&6
test "$with_wgetch_events" = yes && cat >>confdefs.h <<\EOF
#define NCURSES_WGETCH_EVENTS 1
###############################################################################
### use option --disable-echo to suppress full display compiling commands
###############################################################################
### use option --disable-echo to suppress full display compiling commands
-echo "$as_me:9271: checking if you want to display full commands during build" >&5
+echo "$as_me:9277: checking if you want to display full commands during build" >&5
echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
# Check whether --enable-echo or --disable-echo was given.
echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
# Check whether --enable-echo or --disable-echo was given.
test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
fi
test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
fi
-echo "$as_me:9288: result: $with_echo" >&5
+echo "$as_me:9294: result: $with_echo" >&5
echo "${ECHO_T}$with_echo" >&6
### use option --enable-warnings to turn on all gcc warnings
echo "${ECHO_T}$with_echo" >&6
### use option --enable-warnings to turn on all gcc warnings
-echo "$as_me:9292: checking if you want to see compiler warnings" >&5
+echo "$as_me:9298: checking if you want to see compiler warnings" >&5
echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
# Check whether --enable-warnings or --disable-warnings was given.
echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
# Check whether --enable-warnings or --disable-warnings was given.
enableval="$enable_warnings"
with_warnings=$enableval
fi;
enableval="$enable_warnings"
with_warnings=$enableval
fi;
-echo "$as_me:9300: result: $with_warnings" >&5
+echo "$as_me:9306: result: $with_warnings" >&5
echo "${ECHO_T}$with_warnings" >&6
if test -n "$with_warnings"; then
echo "${ECHO_T}$with_warnings" >&6
if test -n "$with_warnings"; then
if test "$GCC" = yes ; then
case $host_os in
linux*|gnu*)
if test "$GCC" = yes ; then
case $host_os in
linux*|gnu*)
- echo "$as_me:9311: checking if this is really Intel C compiler" >&5
+ echo "$as_me:9317: checking if this is really Intel C compiler" >&5
echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
cf_save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -no-gcc"
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
cf_save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -no-gcc"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
int
#include "confdefs.h"
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9333: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9339: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9336: \$? = $ac_status" >&5
+ echo "$as_me:9342: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9339: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9345: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9342: \$? = $ac_status" >&5
+ echo "$as_me:9348: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
INTEL_COMPILER=yes
cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
(exit $ac_status); }; }; then
INTEL_COMPILER=yes
cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CFLAGS="$cf_save_CFLAGS"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CFLAGS="$cf_save_CFLAGS"
- echo "$as_me:9353: result: $INTEL_COMPILER" >&5
+ echo "$as_me:9359: result: $INTEL_COMPILER" >&5
echo "${ECHO_T}$INTEL_COMPILER" >&6
;;
esac
fi
cat > conftest.$ac_ext <<EOF
echo "${ECHO_T}$INTEL_COMPILER" >&6
;;
esac
fi
cat > conftest.$ac_ext <<EOF
+#line 9366 "${as_me-configure}"
int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
EOF
int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
EOF
# remark #981: operands are evaluated in unspecified order
# warning #269: invalid format string conversion
# remark #981: operands are evaluated in unspecified order
# warning #269: invalid format string conversion
- { echo "$as_me:9378: checking for $CC warning options..." >&5
+ { echo "$as_me:9384: checking for $CC warning options..." >&5
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CFLAGS="$CFLAGS"
EXTRA_CFLAGS="-Wall"
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CFLAGS="$CFLAGS"
EXTRA_CFLAGS="-Wall"
wd981
do
CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
wd981
do
CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
- if { (eval echo "$as_me:9395: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:9401: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9398: \$? = $ac_status" >&5
+ echo "$as_me:9404: \$? = $ac_status" >&5
(exit $ac_status); }; then
(exit $ac_status); }; then
- test -n "$verbose" && echo "$as_me:9400: result: ... -$cf_opt" >&5
+ test -n "$verbose" && echo "$as_me:9406: result: ... -$cf_opt" >&5
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
fi
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
fi
elif test "$GCC" = yes
then
elif test "$GCC" = yes
then
- { echo "$as_me:9409: checking for $CC warning options..." >&5
+ { echo "$as_me:9415: checking for $CC warning options..." >&5
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CFLAGS="$CFLAGS"
EXTRA_CFLAGS="-W -Wall"
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CFLAGS="$CFLAGS"
EXTRA_CFLAGS="-W -Wall"
Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum
do
CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum
do
CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
- if { (eval echo "$as_me:9429: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:9435: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9432: \$? = $ac_status" >&5
+ echo "$as_me:9438: \$? = $ac_status" >&5
(exit $ac_status); }; then
(exit $ac_status); }; then
- test -n "$verbose" && echo "$as_me:9434: result: ... -$cf_opt" >&5
+ test -n "$verbose" && echo "$as_me:9440: result: ... -$cf_opt" >&5
echo "${ECHO_T}... -$cf_opt" >&6
case $cf_opt in #(vi
Wcast-qual) #(vi
echo "${ECHO_T}... -$cf_opt" >&6
case $cf_opt in #(vi
Wcast-qual) #(vi
3.3*)
test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6
3.3*)
test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6
+echo "${as_me-configure}:9451: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
+
if test "$GCC" = yes ; then
case $host_os in
linux*|gnu*)
if test "$GCC" = yes ; then
case $host_os in
linux*|gnu*)
- echo "$as_me:9463: checking if this is really Intel C++ compiler" >&5
+ echo "$as_me:9471: checking if this is really Intel C++ compiler" >&5
echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6
cf_save_CFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -no-gcc"
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6
cf_save_CFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -no-gcc"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
int
#include "confdefs.h"
int
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9485: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9493: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9488: \$? = $ac_status" >&5
+ echo "$as_me:9496: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9491: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9499: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9494: \$? = $ac_status" >&5
+ echo "$as_me:9502: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
INTEL_CPLUSPLUS=yes
cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
(exit $ac_status); }; }; then
INTEL_CPLUSPLUS=yes
cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CXXFLAGS="$cf_save_CFLAGS"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CXXFLAGS="$cf_save_CFLAGS"
- echo "$as_me:9505: result: $INTEL_CPLUSPLUS" >&5
+ echo "$as_me:9513: result: $INTEL_CPLUSPLUS" >&5
echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6
;;
esac
echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6
;;
esac
ac_main_return=return
cat > conftest.$ac_ext <<EOF
ac_main_return=return
cat > conftest.$ac_ext <<EOF
int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
EOF
int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
EOF
# remark #981: operands are evaluated in unspecified order
# warning #269: invalid format string conversion
# remark #981: operands are evaluated in unspecified order
# warning #269: invalid format string conversion
- { echo "$as_me:9537: checking for $CC warning options..." >&5
+ { echo "$as_me:9545: checking for $CC warning options..." >&5
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CXXFLAGS="$CXXFLAGS"
EXTRA_CXXFLAGS="-Wall"
echo "$as_me: checking for $CC warning options..." >&6;}
cf_save_CXXFLAGS="$CXXFLAGS"
EXTRA_CXXFLAGS="-Wall"
wd981
do
CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
wd981
do
CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
- if { (eval echo "$as_me:9554: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:9562: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9557: \$? = $ac_status" >&5
+ echo "$as_me:9565: \$? = $ac_status" >&5
(exit $ac_status); }; then
(exit $ac_status); }; then
- test -n "$verbose" && echo "$as_me:9559: result: ... -$cf_opt" >&5
+ test -n "$verbose" && echo "$as_me:9567: result: ... -$cf_opt" >&5
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
fi
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
fi
elif test "$GXX" = yes
then
elif test "$GXX" = yes
then
- { echo "$as_me:9568: checking for $CXX warning options..." >&5
+ { echo "$as_me:9576: checking for $CXX warning options..." >&5
echo "$as_me: checking for $CXX warning options..." >&6;}
cf_save_CXXFLAGS="$CXXFLAGS"
EXTRA_CXXFLAGS="-W -Wall"
echo "$as_me: checking for $CXX warning options..." >&6;}
cf_save_CXXFLAGS="$CXXFLAGS"
EXTRA_CXXFLAGS="-W -Wall"
Wundef $cf_gxx_extra_warnings Wno-unused
do
CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
Wundef $cf_gxx_extra_warnings Wno-unused
do
CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
- if { (eval echo "$as_me:9597: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:9605: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9600: \$? = $ac_status" >&5
+ echo "$as_me:9608: \$? = $ac_status" >&5
(exit $ac_status); }; then
(exit $ac_status); }; then
- test -n "$verbose" && echo "$as_me:9602: result: ... -$cf_opt" >&5
+ test -n "$verbose" && echo "$as_me:9610: result: ... -$cf_opt" >&5
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
else
echo "${ECHO_T}... -$cf_opt" >&6
EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
else
- test -n "$verbose" && echo "$as_me:9606: result: ... no -$cf_opt" >&5
+ test -n "$verbose" && echo "$as_me:9614: result: ... no -$cf_opt" >&5
echo "${ECHO_T}... no -$cf_opt" >&6
fi
done
echo "${ECHO_T}... no -$cf_opt" >&6
fi
done
EOF
if test "$GCC" = yes
then
EOF
if test "$GCC" = yes
then
- { echo "$as_me:9642: checking for $CC __attribute__ directives..." >&5
+ { echo "$as_me:9650: checking for $CC __attribute__ directives..." >&5
echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
cat > conftest.$ac_ext <<EOF
echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
cat > conftest.$ac_ext <<EOF
+#line 9653 "${as_me-configure}"
#include "confdefs.h"
#include "conftest.h"
#include "conftest.i"
#include "confdefs.h"
#include "conftest.h"
#include "conftest.i"
- if { (eval echo "$as_me:9683: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:9691: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9686: \$? = $ac_status" >&5
+ echo "$as_me:9694: \$? = $ac_status" >&5
(exit $ac_status); }; then
(exit $ac_status); }; then
- test -n "$verbose" && echo "$as_me:9688: result: ... $cf_attribute" >&5
+ test -n "$verbose" && echo "$as_me:9696: result: ... $cf_attribute" >&5
echo "${ECHO_T}... $cf_attribute" >&6
cat conftest.h >>confdefs.h
fi
echo "${ECHO_T}... $cf_attribute" >&6
cat conftest.h >>confdefs.h
fi
fi
### use option --enable-assertions to turn on generation of assertion code
fi
### use option --enable-assertions to turn on generation of assertion code
-echo "$as_me:9700: checking if you want to enable runtime assertions" >&5
+echo "$as_me:9708: checking if you want to enable runtime assertions" >&5
echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
# Check whether --enable-assertions or --disable-assertions was given.
echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
# Check whether --enable-assertions or --disable-assertions was given.
else
with_assertions=no
fi;
else
with_assertions=no
fi;
-echo "$as_me:9710: result: $with_assertions" >&5
+echo "$as_me:9718: result: $with_assertions" >&5
echo "${ECHO_T}$with_assertions" >&6
if test -n "$GCC"
then
echo "${ECHO_T}$with_assertions" >&6
if test -n "$GCC"
then
### use option --disable-leaks to suppress "permanent" leaks, for testing
### use option --disable-leaks to suppress "permanent" leaks, for testing
-echo "$as_me:9728: checking if you want to use dmalloc for testing" >&5
+echo "$as_me:9736: checking if you want to use dmalloc for testing" >&5
echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6
# Check whether --with-dmalloc or --without-dmalloc was given.
echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6
# Check whether --with-dmalloc or --without-dmalloc was given.
-echo "$as_me:9744: result: ${with_dmalloc:-no}" >&5
+echo "$as_me:9752: result: ${with_dmalloc:-no}" >&5
echo "${ECHO_T}${with_dmalloc:-no}" >&6
case .$with_cflags in #(vi
echo "${ECHO_T}${with_dmalloc:-no}" >&6
case .$with_cflags in #(vi
esac
if test "$with_dmalloc" = yes ; then
esac
if test "$with_dmalloc" = yes ; then
- echo "$as_me:9828: checking for dmalloc.h" >&5
+ echo "$as_me:9836: checking for dmalloc.h" >&5
echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6
if test "${ac_cv_header_dmalloc_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6
if test "${ac_cv_header_dmalloc_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <dmalloc.h>
_ACEOF
#include "confdefs.h"
#include <dmalloc.h>
_ACEOF
-if { (eval echo "$as_me:9838: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9846: \"$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
(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:9844: \$? = $ac_status" >&5
+ echo "$as_me:9852: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
fi
rm -f conftest.err conftest.$ac_ext
fi
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:9863: result: $ac_cv_header_dmalloc_h" >&5
+echo "$as_me:9871: result: $ac_cv_header_dmalloc_h" >&5
echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6
if test $ac_cv_header_dmalloc_h = yes; then
echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6
if test $ac_cv_header_dmalloc_h = yes; then
-echo "$as_me:9867: checking for dmalloc_debug in -ldmalloc" >&5
+echo "$as_me:9875: checking for dmalloc_debug in -ldmalloc" >&5
echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9894: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9902: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:9897: \$? = $ac_status" >&5
+ echo "$as_me:9905: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:9900: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9908: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9903: \$? = $ac_status" >&5
+ echo "$as_me:9911: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dmalloc_dmalloc_debug=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_dmalloc_dmalloc_debug=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:9914: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
+echo "$as_me:9922: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
cat >>confdefs.h <<EOF
echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
cat >>confdefs.h <<EOF
-echo "$as_me:9929: checking if you want to use dbmalloc for testing" >&5
+echo "$as_me:9937: checking if you want to use dbmalloc for testing" >&5
echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6
# Check whether --with-dbmalloc or --without-dbmalloc was given.
echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6
# Check whether --with-dbmalloc or --without-dbmalloc was given.
-echo "$as_me:9945: result: ${with_dbmalloc:-no}" >&5
+echo "$as_me:9953: result: ${with_dbmalloc:-no}" >&5
echo "${ECHO_T}${with_dbmalloc:-no}" >&6
case .$with_cflags in #(vi
echo "${ECHO_T}${with_dbmalloc:-no}" >&6
case .$with_cflags in #(vi
esac
if test "$with_dbmalloc" = yes ; then
esac
if test "$with_dbmalloc" = yes ; then
- echo "$as_me:10029: checking for dbmalloc.h" >&5
+ echo "$as_me:10037: checking for dbmalloc.h" >&5
echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6
if test "${ac_cv_header_dbmalloc_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6
if test "${ac_cv_header_dbmalloc_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <dbmalloc.h>
_ACEOF
#include "confdefs.h"
#include <dbmalloc.h>
_ACEOF
-if { (eval echo "$as_me:10039: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:10047: \"$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
(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:10045: \$? = $ac_status" >&5
+ echo "$as_me:10053: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
fi
rm -f conftest.err conftest.$ac_ext
fi
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:10064: result: $ac_cv_header_dbmalloc_h" >&5
+echo "$as_me:10072: result: $ac_cv_header_dbmalloc_h" >&5
echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6
if test $ac_cv_header_dbmalloc_h = yes; then
echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6
if test $ac_cv_header_dbmalloc_h = yes; then
-echo "$as_me:10068: checking for debug_malloc in -ldbmalloc" >&5
+echo "$as_me:10076: checking for debug_malloc in -ldbmalloc" >&5
echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldbmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldbmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10095: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10103: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10098: \$? = $ac_status" >&5
+ echo "$as_me:10106: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10101: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10109: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10104: \$? = $ac_status" >&5
+ echo "$as_me:10112: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dbmalloc_debug_malloc=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_dbmalloc_debug_malloc=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10115: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
+echo "$as_me:10123: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
cat >>confdefs.h <<EOF
echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
cat >>confdefs.h <<EOF
-echo "$as_me:10130: checking if you want to use valgrind for testing" >&5
+echo "$as_me:10138: checking if you want to use valgrind for testing" >&5
echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6
# Check whether --with-valgrind or --without-valgrind was given.
echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6
# Check whether --with-valgrind or --without-valgrind was given.
-echo "$as_me:10146: result: ${with_valgrind:-no}" >&5
+echo "$as_me:10154: result: ${with_valgrind:-no}" >&5
echo "${ECHO_T}${with_valgrind:-no}" >&6
case .$with_cflags in #(vi
echo "${ECHO_T}${with_valgrind:-no}" >&6
case .$with_cflags in #(vi
-echo "$as_me:10229: checking if you want to perform memory-leak testing" >&5
+echo "$as_me:10237: checking if you want to perform memory-leak testing" >&5
echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6
# Check whether --enable-leaks or --disable-leaks was given.
echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6
# Check whether --enable-leaks or --disable-leaks was given.
else
: ${with_no_leaks:=no}
fi;
else
: ${with_no_leaks:=no}
fi;
-echo "$as_me:10239: result: $with_no_leaks" >&5
+echo "$as_me:10247: result: $with_no_leaks" >&5
echo "${ECHO_T}$with_no_leaks" >&6
if test "$with_no_leaks" = yes ; then
echo "${ECHO_T}$with_no_leaks" >&6
if test "$with_no_leaks" = yes ; then
-echo "$as_me:10284: checking whether to add trace feature to all models" >&5
+echo "$as_me:10292: checking whether to add trace feature to all models" >&5
echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
# Check whether --with-trace or --without-trace was given.
echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
# Check whether --with-trace or --without-trace was given.
else
cf_with_trace=$cf_all_traces
fi;
else
cf_with_trace=$cf_all_traces
fi;
-echo "$as_me:10294: result: $cf_with_trace" >&5
+echo "$as_me:10302: result: $cf_with_trace" >&5
echo "${ECHO_T}$cf_with_trace" >&6
if test "$cf_with_trace" = yes ; then
echo "${ECHO_T}$cf_with_trace" >&6
if test "$cf_with_trace" = yes ; then
fi
### Checks for libraries.
fi
### Checks for libraries.
-echo "$as_me:10375: checking for gettimeofday" >&5
+echo "$as_me:10383: checking for gettimeofday" >&5
echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
if test "${ac_cv_func_gettimeofday+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
if test "${ac_cv_func_gettimeofday+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gettimeofday (); below. */
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gettimeofday (); below. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10412: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10420: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10415: \$? = $ac_status" >&5
+ echo "$as_me:10423: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10418: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10426: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10421: \$? = $ac_status" >&5
+ echo "$as_me:10429: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_gettimeofday=yes
else
(exit $ac_status); }; }; then
ac_cv_func_gettimeofday=yes
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10431: result: $ac_cv_func_gettimeofday" >&5
+echo "$as_me:10439: result: $ac_cv_func_gettimeofday" >&5
echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
if test $ac_cv_func_gettimeofday = yes; then
cat >>confdefs.h <<\EOF
echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
if test $ac_cv_func_gettimeofday = yes; then
cat >>confdefs.h <<\EOF
-echo "$as_me:10440: checking for gettimeofday in -lbsd" >&5
+echo "$as_me:10448: checking for gettimeofday in -lbsd" >&5
echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-lbsd $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-lbsd $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10467: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10475: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10470: \$? = $ac_status" >&5
+ echo "$as_me:10478: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10473: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10481: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10476: \$? = $ac_status" >&5
+ echo "$as_me:10484: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_bsd_gettimeofday=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_bsd_gettimeofday=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10487: result: $ac_cv_lib_bsd_gettimeofday" >&5
+echo "$as_me:10495: result: $ac_cv_lib_bsd_gettimeofday" >&5
echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
if test $ac_cv_lib_bsd_gettimeofday = yes; then
cat >>confdefs.h <<\EOF
echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
if test $ac_cv_lib_bsd_gettimeofday = yes; then
cat >>confdefs.h <<\EOF
-echo "$as_me:10499: checking if -lm needed for math functions" >&5
+echo "$as_me:10507: checking if -lm needed for math functions" >&5
echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
if test "${cf_cv_need_libm+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
if test "${cf_cv_need_libm+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <stdio.h>
#include "confdefs.h"
#include <stdio.h>
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10521: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10529: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10524: \$? = $ac_status" >&5
+ echo "$as_me:10532: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10527: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10535: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10530: \$? = $ac_status" >&5
+ echo "$as_me:10538: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_need_libm=no
else
(exit $ac_status); }; }; then
cf_cv_need_libm=no
else
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10540: result: $cf_cv_need_libm" >&5
+echo "$as_me:10548: result: $cf_cv_need_libm" >&5
echo "${ECHO_T}$cf_cv_need_libm" >&6
if test "$cf_cv_need_libm" = yes
then
echo "${ECHO_T}$cf_cv_need_libm" >&6
if test "$cf_cv_need_libm" = yes
then
fi
### Checks for header files.
fi
### Checks for header files.
-echo "$as_me:10548: checking for ANSI C header files" >&5
+echo "$as_me:10556: 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
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
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include <float.h>
_ACEOF
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:10562: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:10570: \"$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
(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:10568: \$? = $ac_status" >&5
+ echo "$as_me:10576: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
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
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
#include "confdefs.h"
#include <string.h>
#include "confdefs.h"
#include <string.h>
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
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
#include "confdefs.h"
#include <stdlib.h>
#include "confdefs.h"
#include <stdlib.h>
:
else
cat >conftest.$ac_ext <<_ACEOF
:
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
}
_ACEOF
rm -f conftest$ac_exeext
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:10655: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10663: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10658: \$? = $ac_status" >&5
+ echo "$as_me:10666: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:10660: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10668: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10663: \$? = $ac_status" >&5
+ echo "$as_me:10671: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
(exit $ac_status); }; }; then
:
else
-echo "$as_me:10676: result: $ac_cv_header_stdc" >&5
+echo "$as_me:10684: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
ac_header_dirent=no
for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
ac_header_dirent=no
for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
-echo "$as_me:10689: checking for $ac_hdr that defines DIR" >&5
+echo "$as_me:10697: checking for $ac_hdr that defines DIR" >&5
echo $ECHO_N "checking for $ac_hdr that defines DIR... $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
echo $ECHO_N "checking for $ac_hdr that defines DIR... $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
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_hdr>
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_hdr>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10710: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10718: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10713: \$? = $ac_status" >&5
+ echo "$as_me:10721: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10716: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10724: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10719: \$? = $ac_status" >&5
+ echo "$as_me:10727: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10729: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:10737: 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
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
if test `eval echo '${'$as_ac_Header'}'` = yes; then
cat >>confdefs.h <<EOF
done
# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
if test $ac_header_dirent = dirent.h; then
done
# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
if test $ac_header_dirent = dirent.h; then
- echo "$as_me:10742: checking for opendir in -ldir" >&5
+ echo "$as_me:10750: checking for opendir in -ldir" >&5
echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
if test "${ac_cv_lib_dir_opendir+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
if test "${ac_cv_lib_dir_opendir+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldir $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldir $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10769: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10777: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10772: \$? = $ac_status" >&5
+ echo "$as_me:10780: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10775: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10783: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10778: \$? = $ac_status" >&5
+ echo "$as_me:10786: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dir_opendir=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_dir_opendir=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10789: result: $ac_cv_lib_dir_opendir" >&5
+echo "$as_me:10797: result: $ac_cv_lib_dir_opendir" >&5
echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
if test $ac_cv_lib_dir_opendir = yes; then
LIBS="$LIBS -ldir"
fi
else
echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
if test $ac_cv_lib_dir_opendir = yes; then
LIBS="$LIBS -ldir"
fi
else
- echo "$as_me:10796: checking for opendir in -lx" >&5
+ echo "$as_me:10804: checking for opendir in -lx" >&5
echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
if test "${ac_cv_lib_x_opendir+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
if test "${ac_cv_lib_x_opendir+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
ac_check_lib_save_LIBS=$LIBS
LIBS="-lx $LIBS"
cat >conftest.$ac_ext <<_ACEOF
ac_check_lib_save_LIBS=$LIBS
LIBS="-lx $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10823: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10831: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10826: \$? = $ac_status" >&5
+ echo "$as_me:10834: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10829: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10837: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10832: \$? = $ac_status" >&5
+ echo "$as_me:10840: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_x_opendir=yes
else
(exit $ac_status); }; }; then
ac_cv_lib_x_opendir=yes
else
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10843: result: $ac_cv_lib_x_opendir" >&5
+echo "$as_me:10851: result: $ac_cv_lib_x_opendir" >&5
echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
if test $ac_cv_lib_x_opendir = yes; then
LIBS="$LIBS -lx"
echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
if test $ac_cv_lib_x_opendir = yes; then
LIBS="$LIBS -lx"
-echo "$as_me:10851: checking whether time.h and sys/time.h may both be included" >&5
+echo "$as_me:10859: checking whether time.h and sys/time.h may both be included" >&5
echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
if test "${ac_cv_header_time+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
if test "${ac_cv_header_time+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
}
_ACEOF
rm -f conftest.$ac_objext
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10873: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10881: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10876: \$? = $ac_status" >&5
+ echo "$as_me:10884: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10879: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10887: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10882: \$? = $ac_status" >&5
+ echo "$as_me:10890: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_header_time=yes
else
(exit $ac_status); }; }; then
ac_cv_header_time=yes
else
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10892: result: $ac_cv_header_time" >&5
+echo "$as_me:10900: result: $ac_cv_header_time" >&5
echo "${ECHO_T}$ac_cv_header_time" >&6
if test $ac_cv_header_time = yes; then
echo "${ECHO_T}$ac_cv_header_time" >&6
if test $ac_cv_header_time = yes; then
-echo "$as_me:10902: checking for regular-expression headers" >&5
+echo "$as_me:10910: checking for regular-expression headers" >&5
echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6
if test "${cf_cv_regex+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6
if test "${cf_cv_regex+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <sys/types.h>
#include <regex.h>
#include "confdefs.h"
#include <sys/types.h>
#include <regex.h>
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10927: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10935: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10930: \$? = $ac_status" >&5
+ echo "$as_me:10938: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10933: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10941: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10936: \$? = $ac_status" >&5
+ echo "$as_me:10944: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_regex="regex.h"
else
(exit $ac_status); }; }; then
cf_cv_regex="regex.h"
else
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
cat conftest.$ac_ext >&5
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <regexp.h>
int
#include "confdefs.h"
#include <regexp.h>
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10959: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10967: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10962: \$? = $ac_status" >&5
+ echo "$as_me:10970: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10965: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10973: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10968: \$? = $ac_status" >&5
+ echo "$as_me:10976: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_regex="regexp.h"
else
(exit $ac_status); }; }; then
cf_cv_regex="regexp.h"
else
cf_save_LIBS="$LIBS"
LIBS="-lgen $LIBS"
cat >conftest.$ac_ext <<_ACEOF
cf_save_LIBS="$LIBS"
LIBS="-lgen $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include <regexpr.h>
int
#include "confdefs.h"
#include <regexpr.h>
int
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10993: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11001: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10996: \$? = $ac_status" >&5
+ echo "$as_me:11004: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10999: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11007: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11002: \$? = $ac_status" >&5
+ echo "$as_me:11010: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_regex="regexpr.h"
else
(exit $ac_status); }; }; then
cf_cv_regex="regexpr.h"
else
-echo "$as_me:11018: result: $cf_cv_regex" >&5
+echo "$as_me:11026: result: $cf_cv_regex" >&5
echo "${ECHO_T}$cf_cv_regex" >&6
case $cf_cv_regex in
regex.h) cat >>confdefs.h <<\EOF
echo "${ECHO_T}$cf_cv_regex" >&6
case $cf_cv_regex in
regex.h) cat >>confdefs.h <<\EOF
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:11054: checking for $ac_header" >&5
+echo "$as_me:11062: 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
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
#include "confdefs.h"
#include <$ac_header>
_ACEOF
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:11064: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:11072: \"$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
(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:11070: \$? = $ac_status" >&5
+ echo "$as_me:11078: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then