the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: ncurses-shlibs
Version: 5.3-20031018
Revision: 1503
GCC: 4.0
Source: mirror:sourceforge:fink/ncurses-5.3.tar.gz
Source-MD5: 5dcc9faa93157eafa572494bffed131a
Source2: mirror:sourceforge:fink/ncurses-5.3-20031004-patch.sh.bz2
Source2-MD5: 3c1d1c4c78a4e2b9d99924ba8aa2a608
Source2ExtractDir: ncurses-5.3
PatchScript: <<
#!/bin/sh -ev
bunzip2 ncurses-5.3-20031004-patch.sh.bz2
chmod +x ncurses-5.3-20031004-patch.sh
./ncurses-5.3-20031004-patch.sh
echo "***********************************************************************"
patch -p1 < %a/%n.patch
perl -p -i.bak -e 's|tic\$suffix|tic\$suffix -x|;' misc/run_tic*
echo "***********************************************************************"
perl -pi.bak -e 's,-no-cpp-precomp,,' configure
<<
Replaces: ncurses (<= 5.3-1)
Depends: base-files
Essential: no
BuildDepends: fink (>= 0.13.0)
ConfigureParams: --without-ada --without-debug --with-shared --with-debug --enable-termcap --mandir=%p/share/man --with-terminfo-dirs="%p/share/terminfo:/usr/share/terminfo" --with-default-terminfo-dir="%p/share/terminfo" --enable-no-padding --enable-sigwinch --enable-tcap-names --enable-hard-tabs
NoSetCFLAGS: true
NoSetLDFLAGS: true
SetLDFLAGS: -Wl,-search_paths_first
NoSetMAKEFLAGS: true
SetMAKEFLAGS: -j1
CompileScript: <<
#!/bin/sh -ev
./configure %c
make -j1
<<
InstallScript: <<
#!/bin/sh -ev
make install.libs DESTDIR=%d DYLD_LIBRARY_PATH=`pwd`/lib
ln -s %p/lib/libform.5.dylib %i/lib/libform.dylib.5
ln -s %p/lib/libmenu.5.dylib %i/lib/libmenu.dylib.5
ln -s %p/lib/libncurses.5.dylib %i/lib/libncurses.dylib.5
ln -s %p/lib/libpanel.5.dylib %i/lib/libpanel.dylib.5
<<
Shlibs: <<
%p/lib/libform.5.dylib 6.0.0 %n (>= 5.3-20030308-1)
%p/lib/libmenu.5.dylib 6.0.0 %n (>= 5.3-20030308-1)
%p/lib/libncurses.5.dylib 6.0.0 %n (>= 5.3-20030308-1)
%p/lib/libpanel.5.dylib 6.0.0 %n (>= 5.3-20030308-1)
<<
Description: Shared libraries for ncurses package
SplitOff: <<
Package: ncurses-dev
Depends: ncurses-shlibs (= %v-%r)
Replaces: ncurses (<= 5.3-1), libncurses5
Conflicts: libncurses5
BuildDependsOnly: True
Files: include lib/libform.dylib lib/libmenu.dylib lib/libncurses.dylib lib/libpanel.dylib lib/*.a
Description: Development files for ncurses package
<<
DocFiles: README ANNOUNCE NEWS INSTALL TO-DO MANIFEST
DescPort: <<
More changes by Chris Zubrzycki to be more compatable with apple's lib
-udates to the (sometimes) monthly releases of ncurses (in patch form)
The symbolic links to *.dylib.5 are needed for backward compatibility.
<<
DescPackaging: <<
First revision by David Ross.
Previous versions by Christoph Pfisterer.
<<
License: OSI-Approved
Maintainer: Fink Core Group
Homepage: http://www.gnu.org/software/ncurses/ncurses.html
# ncurses 5.3 - patch 20031018 - T.Dickey
#
# ------------------------------------------------------------------------------
#
# Ncurses 5.3 is at
# ftp.gnu.org:/pub/gnu
#
# Patches for ncurses 5.3 are in the subdirectory
# ftp://dickey.his.com/ncurses/5.3
#
# ------------------------------------------------------------------------------
# NEWS | 13
# aclocal.m4 | 16
# c++/Makefile.in | 3
# configure | 1813 +++++++++++++++++++++++++---------------------------
# configure.in | 12
# dist.mk | 4
# progs/Makefile.in | 3
# progs/infocmp.c | 27
# tack/HISTORY | 3
# tack/Makefile.in | 3
# tack/pad.c | 35 -
# tack/tack.h | 4
# test/Makefile.in | 5
# test/aclocal.m4 | 69 +
# test/configure | 576 +++++++++++-----
# test/configure.in | 9
# test/test.priv.h | 10
# 17 files changed, 1463 insertions(+), 1142 deletions(-)
# ------------------------------------------------------------------------------
Index: NEWS
Prereq: 1.770
--- ncurses-5.3-20031004+/NEWS 2003-10-04 19:08:42.000000000 -0400
+++ ncurses-5.3-20031018/NEWS 2003-10-18 20:06:14.000000000 -0400
@@ -1,4 +1,4 @@
--- $Id: NEWS,v 1.770 2003/10/04 23:08:42 tom Exp $
+-- $Id: NEWS,v 1.771 2003/10/19 00:06:14 tom Exp $
This is a log of changes that ncurses has gone through since Zeyd started
working with Pavel Curtis' original work, pcurses, in 1992.
@@ -6,6 +6,17 @@
Changes through 1.9.9e are recorded by Zeyd M. Ben-Halim.
Changes since 1.9.9e are recorded by Thomas Dickey.
+20031018
+ + updated test/configure to reflect changes for libtool (cf: 20030830).
+ + fix several places in tack/pad.c which tested and used the parameter-
+ and parameterless strings inconsistently, i.e., in pad_rin(),
+ pad_il(), pad_indn() and pad_dl() (Debian #215805).
+ + minor fixes for configure script and makefiles to cleanup executables
+ generated when cross-compiling for djgpp.
+ + modify infocmp to omit check for $TERM for operations that do not
+ require it, e.g., "infocmp -e" used to build fallback list (report by
+ Koblinger Egmont).
+
20031004
+ add terminfo entries for djgpp.
+ updated note about maintainer in ncurses-intro.html
Index: aclocal.m4
Prereq: 1.316
--- ncurses-5.3-20031004+/aclocal.m4 2003-10-04 18:49:27.000000000 -0400
+++ ncurses-5.3-20031018/aclocal.m4 2003-10-18 19:21:04.000000000 -0400
@@ -28,7 +28,7 @@
dnl
dnl Author: Thomas E. Dickey 1995-2003
dnl
-dnl $Id: aclocal.m4,v 1.316 2003/10/04 22:49:27 tom Exp $
+dnl $Id: aclocal.m4,v 1.317 2003/10/18 23:21:04 tom Exp $
dnl Macros used in NCURSES auto-configuration script.
dnl
dnl See http://invisible-island.net/autoconf/ for additional information.
@@ -1838,7 +1838,7 @@
AC_MSG_RESULT($MANPAGE_TBL)
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_MAN_PAGES version: 23 updated: 2002/12/21 22:46:07
+dnl CF_MAN_PAGES version: 24 updated: 2003/10/18 18:52:41
dnl ------------
dnl Try to determine if the man-pages on the system are compressed, and if
dnl so, what format is used. Use this information to construct a script that
@@ -2298,13 +2298,12 @@
fi
])dnl
dnl ---------------------------------------------------------------------------
-dnl CF_PROG_EXT version: 8 updated: 2002/12/21 19:25:52
+dnl CF_PROG_EXT version: 9 updated: 2003/10/18 16:36:22
dnl -----------
dnl Compute $PROG_EXT, used for non-Unix ports, such as OS/2 EMX.
AC_DEFUN([CF_PROG_EXT],
[
AC_REQUIRE([CF_CHECK_CACHE])
-PROG_EXT=
case $cf_cv_system_name in
os2*)
# We make sure -Zexe is not used -- it would interfere with @PROG_EXT@
@@ -2312,12 +2311,13 @@
CPPFLAGS="$CPPFLAGS -D__ST_MT_ERRNO__"
CXXFLAGS="$CXXFLAGS -Zmt"
LDFLAGS=`echo "$LDFLAGS -Zmt -Zcrtdll" | sed -e "s%-Zexe%%g"`
- PROG_EXT=".exe"
- ;;
-cygwin*)
- PROG_EXT=".exe"
;;
esac
+
+AC_EXEEXT
+AC_OBJEXT
+
+PROG_EXT="$EXEEXT"
AC_SUBST(PROG_EXT)
test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT")
])dnl
Index: c++/Makefile.in
Prereq: 1.69
--- ncurses-5.3-20031004+/c++/Makefile.in 2003-08-23 20:19:44.000000000 -0400
+++ ncurses-5.3-20031018/c++/Makefile.in 2003-10-18 16:33:45.000000000 -0400
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.69 2003/08/24 00:19:44 tom Exp $
+# $Id: Makefile.in,v 1.70 2003/10/18 20:33:45 tom Exp $
##############################################################################
# Copyright (c) 1998-2002,2003 Free Software Foundation, Inc. #
# #
@@ -180,6 +180,7 @@
-rm -f core tags TAGS *~ *.bak *.i *.ii *.ln *.atac trace
clean :: mostlyclean
+ -sh -c "if test -n '$x' ; then $(MAKE) clean x=''; fi"
-rm -rf $(MODEL)/SunWS_cache
-$(LIBTOOL_CLEAN) rm -f demo$x $(AUTO_SRC) ../lib/$(LIBNAME) $(LIB_OBJS) $(LIB_OBJS:.o=.lo) $(OBJS_DEMO)
-rm -rf .libs
Index: configure
--- ncurses-5.3-20031004+/configure 2003-10-04 19:14:41.000000000 -0400
+++ ncurses-5.3-20031018/configure 2003-10-18 20:27:46.000000000 -0400
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.298 .
+# From configure.in Revision: 1.299 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by Autoconf 2.52.20030208.
#
@@ -663,9 +663,9 @@
--without-ada suppress check for Ada95, don't build demo
--without-progs suppress build with programs (e.g., tic)
--without-curses-h install curses.h as ncurses.h only
- --with-install-prefix prefixes actual install-location (\$DESTDIR)
+ --with-install-prefix prefixes actual install-location ($DESTDIR)
Build-Tools Needed to Compile Temporary Applications for Cross-compiling:
- --with-build-cc=XXX the build C compiler (\$BUILD_CC)
+ --with-build-cc=XXX the build C compiler ($BUILD_CC)
--with-build-cflags=XXX the build C compiler-flags
--with-build-cppflags=XXX the build C preprocessor-flags
--with-build-ldflags=XXX the build linker-flags
@@ -710,7 +710,7 @@
Extensions:
--disable-ext-funcs disable function-extensions
--enable-const compile with extra/non-standard const
- --enable-no-padding compile with \$NCURSES_NO_PADDING code
+ --enable-no-padding compile with $NCURSES_NO_PADDING code
--enable-sigwinch compile with SIGWINCH handler
--enable-tcap-names compile with user-definable terminal capabilities
Development Code:
@@ -721,7 +721,7 @@
Experimental Code:
--disable-assumed-color do not assume anything about default-colors
--disable-hashmap compile without hashmap scrolling-optimization
- --enable-colorfgbg compile with \$COLORFGBG code
+ --enable-colorfgbg compile with $COLORFGBG code
--enable-safe-sprintf compile with experimental safe-sprintf code
--disable-scroll-hints compile without scroll-hints code
--enable-widec compile with experimental wide-char/UTF-8 code
@@ -2438,7 +2438,6 @@
{ (exit 1); exit 1; }; }
fi
-PROG_EXT=
case $cf_cv_system_name in
os2*)
# We make sure -Zexe is not used -- it would interfere with @PROG_EXT@
@@ -2446,13 +2445,11 @@
CPPFLAGS="$CPPFLAGS -D__ST_MT_ERRNO__"
CXXFLAGS="$CXXFLAGS -Zmt"
LDFLAGS=`echo "$LDFLAGS -Zmt -Zcrtdll" | sed -e "s%-Zexe%%g"`
- PROG_EXT=".exe"
- ;;
-cygwin*)
- PROG_EXT=".exe"
;;
esac
+PROG_EXT="$EXEEXT"
+
test -n "$PROG_EXT" && cat >>confdefs.h <
EOF
@@ -2467,7 +2464,7 @@
*) LDPATH=$PATH:/sbin:/usr/sbin
# Extract the first word of "ldconfig", so it can be a program name with args.
set dummy ldconfig; ac_word=$2
-echo "$as_me:2470: checking for $ac_word" >&5
+echo "$as_me:2467: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_LDCONFIG+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2484,7 +2481,7 @@
test -z "$ac_dir" && ac_dir=.
if $as_executable_p "$ac_dir/$ac_word"; then
ac_cv_path_LDCONFIG="$ac_dir/$ac_word"
- echo "$as_me:2487: found $ac_dir/$ac_word" >&5
+ echo "$as_me:2484: found $ac_dir/$ac_word" >&5
break
fi
done
@@ -2495,10 +2492,10 @@
LDCONFIG=$ac_cv_path_LDCONFIG
if test -n "$LDCONFIG"; then
- echo "$as_me:2498: result: $LDCONFIG" >&5
+ echo "$as_me:2495: result: $LDCONFIG" >&5
echo "${ECHO_T}$LDCONFIG" >&6
else
- echo "$as_me:2501: result: no" >&5
+ echo "$as_me:2498: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -2506,7 +2503,7 @@
esac
fi
-echo "$as_me:2509: checking if you want to ensure bool is consistent with C++" >&5
+echo "$as_me:2506: checking if you want to ensure bool is consistent with C++" >&5
echo $ECHO_N "checking if you want to ensure bool is consistent with C++... $ECHO_C" >&6
# Check whether --with-cxx or --without-cxx was given.
@@ -2516,7 +2513,7 @@
else
cf_with_cxx=yes
fi;
-echo "$as_me:2519: result: $cf_with_cxx" >&5
+echo "$as_me:2516: result: $cf_with_cxx" >&5
echo "${ECHO_T}$cf_with_cxx" >&6
if test "X$cf_with_cxx" = Xno ; then
CXX=""
@@ -2533,7 +2530,7 @@
do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-echo "$as_me:2536: checking for $ac_word" >&5
+echo "$as_me:2533: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_CXX+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2548,7 +2545,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
-echo "$as_me:2551: found $ac_dir/$ac_word" >&5
+echo "$as_me:2548: found $ac_dir/$ac_word" >&5
break
done
@@ -2556,10 +2553,10 @@
fi
CXX=$ac_cv_prog_CXX
if test -n "$CXX"; then
- echo "$as_me:2559: result: $CXX" >&5
+ echo "$as_me:2556: result: $CXX" >&5
echo "${ECHO_T}$CXX" >&6
else
- echo "$as_me:2562: result: no" >&5
+ echo "$as_me:2559: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -2572,7 +2569,7 @@
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:2575: checking for $ac_word" >&5
+echo "$as_me:2572: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2587,7 +2584,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ac_ct_CXX="$ac_prog"
-echo "$as_me:2590: found $ac_dir/$ac_word" >&5
+echo "$as_me:2587: found $ac_dir/$ac_word" >&5
break
done
@@ -2595,10 +2592,10 @@
fi
ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
if test -n "$ac_ct_CXX"; then
- echo "$as_me:2598: result: $ac_ct_CXX" >&5
+ echo "$as_me:2595: result: $ac_ct_CXX" >&5
echo "${ECHO_T}$ac_ct_CXX" >&6
else
- echo "$as_me:2601: result: no" >&5
+ echo "$as_me:2598: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -2610,32 +2607,32 @@
fi
# Provide some information about the compiler.
-echo "$as_me:2613:" \
+echo "$as_me:2610:" \
"checking for C++ compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
-{ (eval echo "$as_me:2616: \"$ac_compiler --version &5\"") >&5
+{ (eval echo "$as_me:2613: \"$ac_compiler --version &5\"") >&5
(eval $ac_compiler --version &5) 2>&5
ac_status=$?
- echo "$as_me:2619: \$? = $ac_status" >&5
+ echo "$as_me:2616: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:2621: \"$ac_compiler -v &5\"") >&5
+{ (eval echo "$as_me:2618: \"$ac_compiler -v &5\"") >&5
(eval $ac_compiler -v &5) 2>&5
ac_status=$?
- echo "$as_me:2624: \$? = $ac_status" >&5
+ echo "$as_me:2621: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:2626: \"$ac_compiler -V &5\"") >&5
+{ (eval echo "$as_me:2623: \"$ac_compiler -V &5\"") >&5
(eval $ac_compiler -V &5) 2>&5
ac_status=$?
- echo "$as_me:2629: \$? = $ac_status" >&5
+ echo "$as_me:2626: \$? = $ac_status" >&5
(exit $ac_status); }
-echo "$as_me:2632: checking whether we are using the GNU C++ compiler" >&5
+echo "$as_me:2629: checking whether we are using the GNU C++ compiler" >&5
echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 2638 "configure"
+#line 2635 "configure"
#include "confdefs.h"
int
@@ -2650,16 +2647,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:2653: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:2650: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:2656: \$? = $ac_status" >&5
+ echo "$as_me:2653: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:2659: \"$ac_try\"") >&5
+ { (eval echo "$as_me:2656: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:2662: \$? = $ac_status" >&5
+ echo "$as_me:2659: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_compiler_gnu=yes
else
@@ -2671,19 +2668,19 @@
ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
fi
-echo "$as_me:2674: result: $ac_cv_cxx_compiler_gnu" >&5
+echo "$as_me:2671: result: $ac_cv_cxx_compiler_gnu" >&5
echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
GXX=`test $ac_compiler_gnu = yes && echo yes`
ac_test_CXXFLAGS=${CXXFLAGS+set}
ac_save_CXXFLAGS=$CXXFLAGS
CXXFLAGS="-g"
-echo "$as_me:2680: checking whether $CXX accepts -g" >&5
+echo "$as_me:2677: checking whether $CXX accepts -g" >&5
echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
if test "${ac_cv_prog_cxx_g+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 2686 "configure"
+#line 2683 "configure"
#include "confdefs.h"
int
@@ -2695,16 +2692,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:2698: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:2695: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:2701: \$? = $ac_status" >&5
+ echo "$as_me:2698: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:2704: \"$ac_try\"") >&5
+ { (eval echo "$as_me:2701: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:2707: \$? = $ac_status" >&5
+ echo "$as_me:2704: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cxx_g=yes
else
@@ -2714,7 +2711,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:2717: result: $ac_cv_prog_cxx_g" >&5
+echo "$as_me:2714: result: $ac_cv_prog_cxx_g" >&5
echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
if test "$ac_test_CXXFLAGS" = set; then
CXXFLAGS=$ac_save_CXXFLAGS
@@ -2741,7 +2738,7 @@
'void exit (int);'
do
cat >conftest.$ac_ext <<_ACEOF
-#line 2744 "configure"
+#line 2741 "configure"
#include "confdefs.h"
#include
$ac_declaration
@@ -2754,16 +2751,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:2757: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:2754: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:2760: \$? = $ac_status" >&5
+ echo "$as_me:2757: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:2763: \"$ac_try\"") >&5
+ { (eval echo "$as_me:2760: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:2766: \$? = $ac_status" >&5
+ echo "$as_me:2763: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -2773,7 +2770,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
-#line 2776 "configure"
+#line 2773 "configure"
#include "confdefs.h"
$ac_declaration
int
@@ -2785,16 +2782,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:2788: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:2785: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:2791: \$? = $ac_status" >&5
+ echo "$as_me:2788: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:2794: \"$ac_try\"") >&5
+ { (eval echo "$as_me:2791: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:2797: \$? = $ac_status" >&5
+ echo "$as_me:2794: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
@@ -2820,7 +2817,7 @@
if test "$CXX" = "g++" ; then
# Extract the first word of "g++", so it can be a program name with args.
set dummy g++; ac_word=$2
-echo "$as_me:2823: checking for $ac_word" >&5
+echo "$as_me:2820: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_CXX+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2837,7 +2834,7 @@
test -z "$ac_dir" && ac_dir=.
if $as_executable_p "$ac_dir/$ac_word"; then
ac_cv_path_CXX="$ac_dir/$ac_word"
- echo "$as_me:2840: found $ac_dir/$ac_word" >&5
+ echo "$as_me:2837: found $ac_dir/$ac_word" >&5
break
fi
done
@@ -2848,16 +2845,16 @@
CXX=$ac_cv_path_CXX
if test -n "$CXX"; then
- echo "$as_me:2851: result: $CXX" >&5
+ echo "$as_me:2848: result: $CXX" >&5
echo "${ECHO_T}$CXX" >&6
else
- echo "$as_me:2854: result: no" >&5
+ echo "$as_me:2851: result: no" >&5
echo "${ECHO_T}no" >&6
fi
fi
if test "$CXX" = "g++" ; then
- { echo "$as_me:2860: WARNING: ignoring hardcoded g++" >&5
+ { echo "$as_me:2857: WARNING: ignoring hardcoded g++" >&5
echo "$as_me: WARNING: ignoring hardcoded g++" >&2;}
cf_with_cxx=no; CXX=""; GXX="";
fi
@@ -2865,10 +2862,10 @@
GXX_VERSION=none
if test "$GXX" = yes; then
- echo "$as_me:2868: checking version of g++" >&5
+ echo "$as_me:2865: checking version of g++" >&5
echo $ECHO_N "checking version of g++... $ECHO_C" >&6
GXX_VERSION="`${CXX-g++} --version|sed -e '2,$d'`"
- echo "$as_me:2871: result: $GXX_VERSION" >&5
+ echo "$as_me:2868: result: $GXX_VERSION" >&5
echo "${ECHO_T}$GXX_VERSION" >&6
fi
@@ -2876,12 +2873,12 @@
1*|2.[0-6]*)
GXX=""; CXX=""; ac_cv_cxx_compiler_gnu=no
cf_cxx_library=no
- { echo "$as_me:2879: WARNING: templates do not work" >&5
+ { echo "$as_me:2876: WARNING: templates do not work" >&5
echo "$as_me: WARNING: templates do not work" >&2;}
;;
esac
-echo "$as_me:2884: checking if you want to build C++ binding and demo" >&5
+echo "$as_me:2881: checking if you want to build C++ binding and demo" >&5
echo $ECHO_N "checking if you want to build C++ binding and demo... $ECHO_C" >&6
# Check whether --with-cxx-binding or --without-cxx-binding was given.
@@ -2891,10 +2888,10 @@
else
cf_with_cxx_binding=$cf_with_cxx
fi;
-echo "$as_me:2894: result: $cf_with_cxx_binding" >&5
+echo "$as_me:2891: result: $cf_with_cxx_binding" >&5
echo "${ECHO_T}$cf_with_cxx_binding" >&6
-echo "$as_me:2897: checking if you want to build with Ada95" >&5
+echo "$as_me:2894: checking if you want to build with Ada95" >&5
echo $ECHO_N "checking if you want to build with Ada95... $ECHO_C" >&6
# Check whether --with-ada or --without-ada was given.
@@ -2904,10 +2901,10 @@
else
cf_with_ada=yes
fi;
-echo "$as_me:2907: result: $cf_with_ada" >&5
+echo "$as_me:2904: result: $cf_with_ada" >&5
echo "${ECHO_T}$cf_with_ada" >&6
-echo "$as_me:2910: checking if you want to build programs such as tic" >&5
+echo "$as_me:2907: checking if you want to build programs such as tic" >&5
echo $ECHO_N "checking if you want to build programs such as tic... $ECHO_C" >&6
# Check whether --with-progs or --without-progs was given.
@@ -2917,10 +2914,10 @@
else
cf_with_progs=yes
fi;
-echo "$as_me:2920: result: $cf_with_progs" >&5
+echo "$as_me:2917: result: $cf_with_progs" >&5
echo "${ECHO_T}$cf_with_progs" >&6
-echo "$as_me:2923: checking if you wish to install curses.h" >&5
+echo "$as_me:2920: checking if you wish to install curses.h" >&5
echo $ECHO_N "checking if you wish to install curses.h... $ECHO_C" >&6
# Check whether --with-curses-h or --without-curses-h was given.
@@ -2930,7 +2927,7 @@
else
with_curses_h=yes
fi;
-echo "$as_me:2933: result: $with_curses_h" >&5
+echo "$as_me:2930: result: $with_curses_h" >&5
echo "${ECHO_T}$with_curses_h" >&6
modules_to_build="ncurses"
@@ -2956,7 +2953,7 @@
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:2959: checking for $ac_word" >&5
+echo "$as_me:2956: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_AWK+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2971,7 +2968,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_AWK="$ac_prog"
-echo "$as_me:2974: found $ac_dir/$ac_word" >&5
+echo "$as_me:2971: found $ac_dir/$ac_word" >&5
break
done
@@ -2979,17 +2976,17 @@
fi
AWK=$ac_cv_prog_AWK
if test -n "$AWK"; then
- echo "$as_me:2982: result: $AWK" >&5
+ echo "$as_me:2979: result: $AWK" >&5
echo "${ECHO_T}$AWK" >&6
else
- echo "$as_me:2985: result: no" >&5
+ echo "$as_me:2982: result: no" >&5
echo "${ECHO_T}no" >&6
fi
test -n "$AWK" && break
done
-echo "$as_me:2992: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo "$as_me:2989: checking whether ${MAKE-make} sets \${MAKE}" >&5
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
@@ -3009,11 +3006,11 @@
rm -f conftest.make
fi
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
- echo "$as_me:3012: result: yes" >&5
+ echo "$as_me:3009: result: yes" >&5
echo "${ECHO_T}yes" >&6
SET_MAKE=
else
- echo "$as_me:3016: result: no" >&5
+ echo "$as_me:3013: result: no" >&5
echo "${ECHO_T}no" >&6
SET_MAKE="MAKE=${MAKE-make}"
fi
@@ -3030,7 +3027,7 @@
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
-echo "$as_me:3033: checking for a BSD compatible install" >&5
+echo "$as_me:3030: checking for a BSD compatible install" >&5
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
if test -z "$INSTALL"; then
if test "${ac_cv_path_install+set}" = set; then
@@ -3079,7 +3076,7 @@
INSTALL=$ac_install_sh
fi
fi
-echo "$as_me:3082: result: $INSTALL" >&5
+echo "$as_me:3079: result: $INSTALL" >&5
echo "${ECHO_T}$INSTALL" >&6
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
@@ -3100,7 +3097,7 @@
;;
esac
-echo "$as_me:3103: checking for long file names" >&5
+echo "$as_me:3100: checking for long file names" >&5
echo $ECHO_N "checking for long file names... $ECHO_C" >&6
if test "${ac_cv_sys_long_file_names+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3139,7 +3136,7 @@
rm -rf $ac_xdir 2>/dev/null
done
fi
-echo "$as_me:3142: result: $ac_cv_sys_long_file_names" >&5
+echo "$as_me:3139: result: $ac_cv_sys_long_file_names" >&5
echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
if test $ac_cv_sys_long_file_names = yes; then
@@ -3149,7 +3146,7 @@
fi
-echo "$as_me:3152: checking if filesystem supports mixed-case filenames" >&5
+echo "$as_me:3149: checking if filesystem supports mixed-case filenames" >&5
echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
if test "${cf_cv_mixedcase+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3176,27 +3173,27 @@
fi
fi
-echo "$as_me:3179: result: $cf_cv_mixedcase" >&5
+echo "$as_me:3176: result: $cf_cv_mixedcase" >&5
echo "${ECHO_T}$cf_cv_mixedcase" >&6
test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF
#define MIXEDCASE_FILENAMES 1
EOF
-echo "$as_me:3185: checking whether ln -s works" >&5
+echo "$as_me:3182: checking whether ln -s works" >&5
echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
LN_S=$as_ln_s
if test "$LN_S" = "ln -s"; then
- echo "$as_me:3189: result: yes" >&5
+ echo "$as_me:3186: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
- echo "$as_me:3192: result: no, using $LN_S" >&5
+ echo "$as_me:3189: result: no, using $LN_S" >&5
echo "${ECHO_T}no, using $LN_S" >&6
fi
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:3199: checking for $ac_word" >&5
+echo "$as_me:3196: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_RANLIB+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3211,7 +3208,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:3214: found $ac_dir/$ac_word" >&5
+echo "$as_me:3211: found $ac_dir/$ac_word" >&5
break
done
@@ -3219,10 +3216,10 @@
fi
RANLIB=$ac_cv_prog_RANLIB
if test -n "$RANLIB"; then
- echo "$as_me:3222: result: $RANLIB" >&5
+ echo "$as_me:3219: result: $RANLIB" >&5
echo "${ECHO_T}$RANLIB" >&6
else
- echo "$as_me:3225: result: no" >&5
+ echo "$as_me:3222: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3231,7 +3228,7 @@
ac_ct_RANLIB=$RANLIB
# Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
-echo "$as_me:3234: checking for $ac_word" >&5
+echo "$as_me:3231: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3246,7 +3243,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ac_ct_RANLIB="ranlib"
-echo "$as_me:3249: found $ac_dir/$ac_word" >&5
+echo "$as_me:3246: found $ac_dir/$ac_word" >&5
break
done
@@ -3255,10 +3252,10 @@
fi
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
if test -n "$ac_ct_RANLIB"; then
- echo "$as_me:3258: result: $ac_ct_RANLIB" >&5
+ echo "$as_me:3255: result: $ac_ct_RANLIB" >&5
echo "${ECHO_T}$ac_ct_RANLIB" >&6
else
- echo "$as_me:3261: result: no" >&5
+ echo "$as_me:3258: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3269,7 +3266,7 @@
# Extract the first word of "ctags", so it can be a program name with args.
set dummy ctags; ac_word=$2
-echo "$as_me:3272: checking for $ac_word" >&5
+echo "$as_me:3269: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3284,7 +3281,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_MAKE_LOWER_TAGS="yes"
-echo "$as_me:3287: found $ac_dir/$ac_word" >&5
+echo "$as_me:3284: found $ac_dir/$ac_word" >&5
break
done
@@ -3293,17 +3290,17 @@
fi
MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
if test -n "$MAKE_LOWER_TAGS"; then
- echo "$as_me:3296: result: $MAKE_LOWER_TAGS" >&5
+ echo "$as_me:3293: result: $MAKE_LOWER_TAGS" >&5
echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
else
- echo "$as_me:3299: result: no" >&5
+ echo "$as_me:3296: result: no" >&5
echo "${ECHO_T}no" >&6
fi
if test "$cf_cv_mixedcase" = yes ; then
# Extract the first word of "etags", so it can be a program name with args.
set dummy etags; ac_word=$2
-echo "$as_me:3306: checking for $ac_word" >&5
+echo "$as_me:3303: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3318,7 +3315,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_MAKE_UPPER_TAGS="yes"
-echo "$as_me:3321: found $ac_dir/$ac_word" >&5
+echo "$as_me:3318: found $ac_dir/$ac_word" >&5
break
done
@@ -3327,10 +3324,10 @@
fi
MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
if test -n "$MAKE_UPPER_TAGS"; then
- echo "$as_me:3330: result: $MAKE_UPPER_TAGS" >&5
+ echo "$as_me:3327: result: $MAKE_UPPER_TAGS" >&5
echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
else
- echo "$as_me:3333: result: no" >&5
+ echo "$as_me:3330: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3354,7 +3351,7 @@
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:3357: checking for $ac_word" >&5
+echo "$as_me:3354: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_LINT+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3369,7 +3366,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_LINT="$ac_prog"
-echo "$as_me:3372: found $ac_dir/$ac_word" >&5
+echo "$as_me:3369: found $ac_dir/$ac_word" >&5
break
done
@@ -3377,10 +3374,10 @@
fi
LINT=$ac_cv_prog_LINT
if test -n "$LINT"; then
- echo "$as_me:3380: result: $LINT" >&5
+ echo "$as_me:3377: result: $LINT" >&5
echo "${ECHO_T}$LINT" >&6
else
- echo "$as_me:3383: result: no" >&5
+ echo "$as_me:3380: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3391,7 +3388,7 @@
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:3394: checking for $ac_word" >&5
+echo "$as_me:3391: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_MAN+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3406,7 +3403,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_MAN="$ac_prog"
-echo "$as_me:3409: found $ac_dir/$ac_word" >&5
+echo "$as_me:3406: found $ac_dir/$ac_word" >&5
break
done
@@ -3414,10 +3411,10 @@
fi
MAN=$ac_cv_prog_MAN
if test -n "$MAN"; then
- echo "$as_me:3417: result: $MAN" >&5
+ echo "$as_me:3414: result: $MAN" >&5
echo "${ECHO_T}$MAN" >&6
else
- echo "$as_me:3420: result: no" >&5
+ echo "$as_me:3417: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3427,7 +3424,7 @@
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
set dummy ${ac_tool_prefix}ld; ac_word=$2
-echo "$as_me:3430: checking for $ac_word" >&5
+echo "$as_me:3427: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_LD+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3442,7 +3439,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_LD="${ac_tool_prefix}ld"
-echo "$as_me:3445: found $ac_dir/$ac_word" >&5
+echo "$as_me:3442: found $ac_dir/$ac_word" >&5
break
done
@@ -3450,10 +3447,10 @@
fi
LD=$ac_cv_prog_LD
if test -n "$LD"; then
- echo "$as_me:3453: result: $LD" >&5
+ echo "$as_me:3450: result: $LD" >&5
echo "${ECHO_T}$LD" >&6
else
- echo "$as_me:3456: result: no" >&5
+ echo "$as_me:3453: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3462,7 +3459,7 @@
ac_ct_LD=$LD
# Extract the first word of "ld", so it can be a program name with args.
set dummy ld; ac_word=$2
-echo "$as_me:3465: checking for $ac_word" >&5
+echo "$as_me:3462: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3477,7 +3474,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ac_ct_LD="ld"
-echo "$as_me:3480: found $ac_dir/$ac_word" >&5
+echo "$as_me:3477: found $ac_dir/$ac_word" >&5
break
done
@@ -3486,10 +3483,10 @@
fi
ac_ct_LD=$ac_cv_prog_ac_ct_LD
if test -n "$ac_ct_LD"; then
- echo "$as_me:3489: result: $ac_ct_LD" >&5
+ echo "$as_me:3486: result: $ac_ct_LD" >&5
echo "${ECHO_T}$ac_ct_LD" >&6
else
- echo "$as_me:3492: result: no" >&5
+ echo "$as_me:3489: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3501,7 +3498,7 @@
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
-echo "$as_me:3504: checking for $ac_word" >&5
+echo "$as_me:3501: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_AR+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3516,7 +3513,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_AR="${ac_tool_prefix}ar"
-echo "$as_me:3519: found $ac_dir/$ac_word" >&5
+echo "$as_me:3516: found $ac_dir/$ac_word" >&5
break
done
@@ -3524,10 +3521,10 @@
fi
AR=$ac_cv_prog_AR
if test -n "$AR"; then
- echo "$as_me:3527: result: $AR" >&5
+ echo "$as_me:3524: result: $AR" >&5
echo "${ECHO_T}$AR" >&6
else
- echo "$as_me:3530: result: no" >&5
+ echo "$as_me:3527: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3536,7 +3533,7 @@
ac_ct_AR=$AR
# Extract the first word of "ar", so it can be a program name with args.
set dummy ar; ac_word=$2
-echo "$as_me:3539: checking for $ac_word" >&5
+echo "$as_me:3536: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3551,7 +3548,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_ac_ct_AR="ar"
-echo "$as_me:3554: found $ac_dir/$ac_word" >&5
+echo "$as_me:3551: found $ac_dir/$ac_word" >&5
break
done
@@ -3560,10 +3557,10 @@
fi
ac_ct_AR=$ac_cv_prog_ac_ct_AR
if test -n "$ac_ct_AR"; then
- echo "$as_me:3563: result: $ac_ct_AR" >&5
+ echo "$as_me:3560: result: $ac_ct_AR" >&5
echo "${ECHO_T}$ac_ct_AR" >&6
else
- echo "$as_me:3566: result: no" >&5
+ echo "$as_me:3563: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3576,10 +3573,10 @@
echo $ECHO_N "(cached) $ECHO_C" >&6
else
-echo "$as_me:3579: checking for archiver options (symbol AR_OPTS)" >&5
+echo "$as_me:3576: checking for archiver options (symbol AR_OPTS)" >&5
echo $ECHO_N "checking for archiver options (symbol AR_OPTS)... $ECHO_C" >&6
test -z "$AR_OPTS" && AR_OPTS=rv
-echo "$as_me:3582: result: $AR_OPTS" >&5
+echo "$as_me:3579: result: $AR_OPTS" >&5
echo "${ECHO_T}$AR_OPTS" >&6
cf_cv_subst_AR_OPTS=$AR_OPTS
@@ -3587,7 +3584,7 @@
AR_OPTS=${cf_cv_subst_AR_OPTS}
-echo "$as_me:3590: checking for makeflags variable" >&5
+echo "$as_me:3587: checking for makeflags variable" >&5
echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6
if test "${cf_cv_makeflags+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3620,10 +3617,10 @@
rm -f cf_makeflags.tmp
fi
-echo "$as_me:3623: result: $cf_cv_makeflags" >&5
+echo "$as_me:3620: result: $cf_cv_makeflags" >&5
echo "${ECHO_T}$cf_cv_makeflags" >&6
-echo "$as_me:3626: checking if you have specified an install-prefix" >&5
+echo "$as_me:3623: checking if you have specified an install-prefix" >&5
echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6
# Check whether --with-install-prefix or --without-install-prefix was given.
@@ -3636,7 +3633,7 @@
;;
esac
fi;
-echo "$as_me:3639: result: $DESTDIR" >&5
+echo "$as_me:3636: result: $DESTDIR" >&5
echo "${ECHO_T}$DESTDIR" >&6
###############################################################################
@@ -3660,7 +3657,7 @@
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:3663: checking for $ac_word" >&5
+echo "$as_me:3660: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_BUILD_CC+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3675,7 +3672,7 @@
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_BUILD_CC="$ac_prog"
-echo "$as_me:3678: found $ac_dir/$ac_word" >&5
+echo "$as_me:3675: found $ac_dir/$ac_word" >&5
break
done
@@ -3683,10 +3680,10 @@
fi
BUILD_CC=$ac_cv_prog_BUILD_CC
if test -n "$BUILD_CC"; then
- echo "$as_me:3686: result: $BUILD_CC" >&5
+ echo "$as_me:3683: result: $BUILD_CC" >&5
echo "${ECHO_T}$BUILD_CC" >&6
else
- echo "$as_me:3689: result: no" >&5
+ echo "$as_me:3686: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3743,7 +3740,7 @@
LIB_INSTALL=
LIB_UNINSTALL=
-echo "$as_me:3746: checking if you want to build libraries with libtool" >&5
+echo "$as_me:3743: checking if you want to build libraries with libtool" >&5
echo $ECHO_N "checking if you want to build libraries with libtool... $ECHO_C" >&6
# Check whether --with-libtool or --without-libtool was given.
@@ -3753,7 +3750,7 @@
else
with_libtool=no
fi;
-echo "$as_me:3756: result: $with_libtool" >&5
+echo "$as_me:3753: result: $with_libtool" >&5
echo "${ECHO_T}$with_libtool" >&6
if test "$with_libtool" != "no"; then
if test "$with_libtool" != "yes" ; then
@@ -3777,7 +3774,7 @@
with_libtool=`echo $with_libtool | sed -e s%NONE%$ac_default_prefix%`
;;
*)
- { { echo "$as_me:3780: error: expected a pathname, not \"$with_libtool\"" >&5
+ { { echo "$as_me:3777: error: expected a pathname, not \"$with_libtool\"" >&5
echo "$as_me: error: expected a pathname, not \"$with_libtool\"" >&2;}
{ (exit 1); exit 1; }; }
;;
@@ -3787,7 +3784,7 @@
else
# Extract the first word of "libtool", so it can be a program name with args.
set dummy libtool; ac_word=$2
-echo "$as_me:3790: checking for $ac_word" >&5
+echo "$as_me:3787: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_LIBTOOL+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3804,7 +3801,7 @@
test -z "$ac_dir" && ac_dir=.
if $as_executable_p "$ac_dir/$ac_word"; then
ac_cv_path_LIBTOOL="$ac_dir/$ac_word"
- echo "$as_me:3807: found $ac_dir/$ac_word" >&5
+ echo "$as_me:3804: found $ac_dir/$ac_word" >&5
break
fi
done
@@ -3815,16 +3812,16 @@
LIBTOOL=$ac_cv_path_LIBTOOL
if test -n "$LIBTOOL"; then
- echo "$as_me:3818: result: $LIBTOOL" >&5
+ echo "$as_me:3815: result: $LIBTOOL" >&5
echo "${ECHO_T}$LIBTOOL" >&6
else
- echo "$as_me:3821: result: no" >&5
+ echo "$as_me:3818: result: no" >&5
echo "${ECHO_T}no" >&6
fi
fi
if test -z "$LIBTOOL" ; then
- { { echo "$as_me:3827: error: Cannot find libtool" >&5
+ { { echo "$as_me:3824: error: Cannot find libtool" >&5
echo "$as_me: error: Cannot find libtool" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -3840,17 +3837,17 @@
LIB_PREP=:
# Show the version of libtool
- echo "$as_me:3843: checking version of libtool" >&5
+ echo "$as_me:3840: checking version of libtool" >&5
echo $ECHO_N "checking version of libtool... $ECHO_C" >&6
# Save the version in a cache variable - this is not entirely a good
# thing, but the version string from libtool is very ugly, and for
# bug reports it might be useful to have the original string.
cf_cv_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '2,$d' -e 's/^[^1-9]*//' -e 's/[^0-9.].*//'`
- echo "$as_me:3850: result: $cf_cv_libtool_version" >&5
+ echo "$as_me:3847: result: $cf_cv_libtool_version" >&5
echo "${ECHO_T}$cf_cv_libtool_version" >&6
if test -z "$cf_cv_libtool_version" ; then
- { { echo "$as_me:3853: error: This is not libtool" >&5
+ { { echo "$as_me:3850: error: This is not libtool" >&5
echo "$as_me: error: This is not libtool" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -3877,7 +3874,7 @@
else
-echo "$as_me:3880: checking if you want to build shared libraries" >&5
+echo "$as_me:3877: checking if you want to build shared libraries" >&5
echo $ECHO_N "checking if you want to build shared libraries... $ECHO_C" >&6
# Check whether --with-shared or --without-shared was given.
@@ -3887,11 +3884,11 @@
else
with_shared=no
fi;
-echo "$as_me:3890: result: $with_shared" >&5
+echo "$as_me:3887: result: $with_shared" >&5
echo "${ECHO_T}$with_shared" >&6
test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
-echo "$as_me:3894: checking if you want to build static libraries" >&5
+echo "$as_me:3891: checking if you want to build static libraries" >&5
echo $ECHO_N "checking if you want to build static libraries... $ECHO_C" >&6
# Check whether --with-normal or --without-normal was given.
@@ -3901,11 +3898,11 @@
else
with_normal=yes
fi;
-echo "$as_me:3904: result: $with_normal" >&5
+echo "$as_me:3901: result: $with_normal" >&5
echo "${ECHO_T}$with_normal" >&6
test "$with_normal" = "yes" && cf_list_models="$cf_list_models normal"
-echo "$as_me:3908: checking if you want to build debug libraries" >&5
+echo "$as_me:3905: checking if you want to build debug libraries" >&5
echo $ECHO_N "checking if you want to build debug libraries... $ECHO_C" >&6
# Check whether --with-debug or --without-debug was given.
@@ -3915,11 +3912,11 @@
else
with_debug=yes
fi;
-echo "$as_me:3918: result: $with_debug" >&5
+echo "$as_me:3915: result: $with_debug" >&5
echo "${ECHO_T}$with_debug" >&6
test "$with_debug" = "yes" && cf_list_models="$cf_list_models debug"
-echo "$as_me:3922: checking if you want to build profiling libraries" >&5
+echo "$as_me:3919: checking if you want to build profiling libraries" >&5
echo $ECHO_N "checking if you want to build profiling libraries... $ECHO_C" >&6
# Check whether --with-profile or --without-profile was given.
@@ -3929,7 +3926,7 @@
else
with_profile=no
fi;
-echo "$as_me:3932: result: $with_profile" >&5
+echo "$as_me:3929: result: $with_profile" >&5
echo "${ECHO_T}$with_profile" >&6
test "$with_profile" = "yes" && cf_list_models="$cf_list_models profile"
@@ -3937,19 +3934,19 @@
###############################################################################
-echo "$as_me:3940: checking for specified models" >&5
+echo "$as_me:3937: checking for specified models" >&5
echo $ECHO_N "checking for specified models... $ECHO_C" >&6
test -z "$cf_list_models" && cf_list_models=normal
test "$with_libtool" != "no" && cf_list_models=libtool
-echo "$as_me:3944: result: $cf_list_models" >&5
+echo "$as_me:3941: result: $cf_list_models" >&5
echo "${ECHO_T}$cf_list_models" >&6
### Use the first model as the default, and save its suffix for use in building
### up test-applications.
-echo "$as_me:3949: checking for default model" >&5
+echo "$as_me:3946: checking for default model" >&5
echo $ECHO_N "checking for default model... $ECHO_C" >&6
DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
-echo "$as_me:3952: result: $DFT_LWR_MODEL" >&5
+echo "$as_me:3949: result: $DFT_LWR_MODEL" >&5
echo "${ECHO_T}$DFT_LWR_MODEL" >&6
DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -3973,7 +3970,7 @@
###############################################################################
-echo "$as_me:3976: checking if you want to build a separate terminfo library" >&5
+echo "$as_me:3973: checking if you want to build a separate terminfo library" >&5
echo $ECHO_N "checking if you want to build a separate terminfo library... $ECHO_C" >&6
# Check whether --with-termlib or --without-termlib was given.
@@ -3983,12 +3980,12 @@
else
with_termlib=no
fi;
-echo "$as_me:3986: result: $with_termlib" >&5
+echo "$as_me:3983: result: $with_termlib" >&5
echo "${ECHO_T}$with_termlib" >&6
### Checks for special libraries, must be done up-front.
-echo "$as_me:3991: checking if you want to link with dbmalloc for testing" >&5
+echo "$as_me:3988: checking if you want to link with dbmalloc for testing" >&5
echo $ECHO_N "checking if you want to link with dbmalloc for testing... $ECHO_C" >&6
# Check whether --with-dbmalloc or --without-dbmalloc was given.
@@ -3998,11 +3995,11 @@
else
with_dbmalloc=no
fi;
-echo "$as_me:4001: result: $with_dbmalloc" >&5
+echo "$as_me:3998: result: $with_dbmalloc" >&5
echo "${ECHO_T}$with_dbmalloc" >&6
if test $with_dbmalloc = yes ; then
-echo "$as_me:4005: checking for debug_malloc in -ldbmalloc" >&5
+echo "$as_me:4002: 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
@@ -4010,7 +4007,7 @@
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldbmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 4013 "configure"
+#line 4010 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -4029,16 +4026,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4032: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4029: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4035: \$? = $ac_status" >&5
+ echo "$as_me:4032: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4038: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4035: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4041: \$? = $ac_status" >&5
+ echo "$as_me:4038: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dbmalloc_debug_malloc=yes
else
@@ -4049,7 +4046,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4052: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
+echo "$as_me:4049: 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 <
fi
-echo "$as_me:4065: checking if you want to link with dmalloc for testing" >&5
+echo "$as_me:4062: checking if you want to link with dmalloc for testing" >&5
echo $ECHO_N "checking if you want to link with dmalloc for testing... $ECHO_C" >&6
# Check whether --with-dmalloc or --without-dmalloc was given.
@@ -4072,11 +4069,11 @@
else
with_dmalloc=no
fi;
-echo "$as_me:4075: result: $with_dmalloc" >&5
+echo "$as_me:4072: result: $with_dmalloc" >&5
echo "${ECHO_T}$with_dmalloc" >&6
if test $with_dmalloc = yes ; then
-echo "$as_me:4079: checking for dmalloc_debug in -ldmalloc" >&5
+echo "$as_me:4076: 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
@@ -4084,7 +4081,7 @@
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldmalloc $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 4087 "configure"
+#line 4084 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -4103,16 +4100,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4106: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4103: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4109: \$? = $ac_status" >&5
+ echo "$as_me:4106: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4112: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4109: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4115: \$? = $ac_status" >&5
+ echo "$as_me:4112: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dmalloc_dmalloc_debug=yes
else
@@ -4123,7 +4120,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4126: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
+echo "$as_me:4123: 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 <
fi
SHLIB_LIST=""
-echo "$as_me:4140: checking if you want to link with the gpm mouse library" >&5
+echo "$as_me:4137: checking if you want to link with the gpm mouse library" >&5
echo $ECHO_N "checking if you want to link with the gpm mouse library... $ECHO_C" >&6
# Check whether --with-gpm or --without-gpm was given.
@@ -4147,10 +4144,10 @@
else
with_gpm=no
fi;
-echo "$as_me:4150: result: $with_gpm" >&5
+echo "$as_me:4147: result: $with_gpm" >&5
echo "${ECHO_T}$with_gpm" >&6
if test "$with_gpm" = yes ; then
- echo "$as_me:4153: checking for Gpm_Open in -lgpm" >&5
+ echo "$as_me:4150: 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
@@ -4158,7 +4155,7 @@
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 4161 "configure"
+#line 4158 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -4177,16 +4174,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4180: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4177: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4183: \$? = $ac_status" >&5
+ echo "$as_me:4180: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4186: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4183: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4189: \$? = $ac_status" >&5
+ echo "$as_me:4186: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_gpm_Gpm_Open=yes
else
@@ -4197,7 +4194,7 @@
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:4200: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:4197: 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
@@ -4210,23 +4207,23 @@
for ac_header in gpm.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4213: checking for $ac_header" >&5
+echo "$as_me:4210: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 4219 "configure"
+#line 4216 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:4223: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4220: \"$ac_cpp conftest.$ac_ext\"") >&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
ac_status=$?
egrep -v '^ *\+' conftest.er1 >conftest.err
rm -f conftest.er1
cat conftest.err >&5
- echo "$as_me:4229: \$? = $ac_status" >&5
+ echo "$as_me:4226: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4245,7 +4242,7 @@
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:4248: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4245: 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 <
done
else
- { echo "$as_me:4259: WARNING: Cannot link with gpm library - read the FAQ" >&5
+ { echo "$as_me:4256: WARNING: Cannot link with gpm library - read the FAQ" >&5
echo "$as_me: WARNING: Cannot link with gpm library - read the FAQ" >&2;}
fi
@@ -4264,7 +4261,7 @@
# not everyone has "test -c"
if test -c /dev/sysmouse 2>/dev/null ; then
-echo "$as_me:4267: checking if you want to use sysmouse" >&5
+echo "$as_me:4264: 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.
@@ -4276,7 +4273,7 @@
fi;
if test "$cf_with_sysmouse" != no ; then
cat >conftest.$ac_ext <<_ACEOF
-#line 4279 "configure"
+#line 4276 "configure"
#include "confdefs.h"
#include
@@ -4299,16 +4296,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4302: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4299: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4305: \$? = $ac_status" >&5
+ echo "$as_me:4302: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4308: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4305: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4311: \$? = $ac_status" >&5
+ echo "$as_me:4308: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_with_sysmouse=yes
else
@@ -4318,7 +4315,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:4321: result: $cf_with_sysmouse" >&5
+echo "$as_me:4318: 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
@@ -4336,7 +4333,7 @@
test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
fi
-echo "$as_me:4339: checking for default loader flags" >&5
+echo "$as_me:4336: 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='' ;;
@@ -4345,10 +4342,10 @@
profile) LD_MODEL='-pg';;
shared) LD_MODEL='' ;;
esac
-echo "$as_me:4348: result: $LD_MODEL" >&5
+echo "$as_me:4345: result: $LD_MODEL" >&5
echo "${ECHO_T}$LD_MODEL" >&6
-echo "$as_me:4351: checking if rpath option should be used" >&5
+echo "$as_me:4348: 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.
@@ -4358,7 +4355,7 @@
else
cf_cv_ld_rpath=no
fi;
-echo "$as_me:4361: result: $cf_cv_ld_rpath" >&5
+echo "$as_me:4358: result: $cf_cv_ld_rpath" >&5
echo "${ECHO_T}$cf_cv_ld_rpath" >&6
LOCAL_LDFLAGS=
@@ -4368,7 +4365,7 @@
cf_cv_do_symlinks=no
- echo "$as_me:4371: checking if release/abi version should be used for shared libs" >&5
+ echo "$as_me:4368: 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.
@@ -4383,7 +4380,7 @@
cf_cv_shlib_version=$withval
;;
*)
- { { echo "$as_me:4386: error: option value must be one of: rel, abi, auto or no" >&5
+ { { echo "$as_me:4383: 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; }; }
;;
@@ -4392,7 +4389,7 @@
else
cf_cv_shlib_version=auto
fi;
- echo "$as_me:4395: result: $cf_cv_shlib_version" >&5
+ echo "$as_me:4392: result: $cf_cv_shlib_version" >&5
echo "${ECHO_T}$cf_cv_shlib_version" >&6
cf_cv_rm_so_locs=no
@@ -4401,14 +4398,14 @@
CC_SHARED_OPTS=
if test "$GCC" = yes
then
- echo "$as_me:4404: checking which $CC option to use" >&5
+ echo "$as_me:4401: 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
-#line 4411 "configure"
+#line 4408 "configure"
#include "confdefs.h"
#include
int
@@ -4420,16 +4417,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4423: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4420: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4426: \$? = $ac_status" >&5
+ echo "$as_me:4423: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4429: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4426: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4432: \$? = $ac_status" >&5
+ echo "$as_me:4429: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
@@ -4438,7 +4435,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
- echo "$as_me:4441: result: $CC_SHARED_OPTS" >&5
+ echo "$as_me:4438: result: $CC_SHARED_OPTS" >&5
echo "${ECHO_T}$CC_SHARED_OPTS" >&6
CFLAGS="$cf_save_CFLAGS"
fi
@@ -4605,7 +4602,7 @@
test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
;;
*)
- { echo "$as_me:4608: WARNING: ignored --with-shlib-version" >&5
+ { echo "$as_me:4605: WARNING: ignored --with-shlib-version" >&5
echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
;;
esac
@@ -4613,12 +4610,12 @@
esac
if test -n "$cf_ld_rpath_opt" ; then
- echo "$as_me:4616: checking if we need a space after rpath option" >&5
+ echo "$as_me:4613: 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
-#line 4621 "configure"
+#line 4618 "configure"
#include "confdefs.h"
int
@@ -4630,16 +4627,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4633: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4630: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4636: \$? = $ac_status" >&5
+ echo "$as_me:4633: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:4639: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4636: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4642: \$? = $ac_status" >&5
+ echo "$as_me:4639: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_rpath_space=no
else
@@ -4649,7 +4646,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS="$cf_save_LIBS"
- echo "$as_me:4652: result: $cf_rpath_space" >&5
+ echo "$as_me:4649: 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)"
@@ -4658,7 +4655,7 @@
if test "$CC_SHARED_OPTS" = "unknown"; then
for model in $cf_list_models; do
if test "$model" = "shared"; then
- { { echo "$as_me:4661: error: Shared libraries are not supported in this version" >&5
+ { { echo "$as_me:4658: 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
@@ -4668,7 +4665,7 @@
###############################################################################
### use option --disable-overwrite to leave out the link to -lcurses
-echo "$as_me:4671: checking if you wish to install ncurses overwriting curses" >&5
+echo "$as_me:4668: 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.
@@ -4678,10 +4675,10 @@
else
if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
fi;
-echo "$as_me:4681: result: $with_overwrite" >&5
+echo "$as_me:4678: result: $with_overwrite" >&5
echo "${ECHO_T}$with_overwrite" >&6
-echo "$as_me:4684: checking if external terminfo-database is used" >&5
+echo "$as_me:4681: 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.
@@ -4691,7 +4688,7 @@
else
use_database=yes
fi;
-echo "$as_me:4694: result: $use_database" >&5
+echo "$as_me:4691: result: $use_database" >&5
echo "${ECHO_T}$use_database" >&6
case $host_os in #(vi
@@ -4713,7 +4710,7 @@
#define USE_DATABASE 1
EOF
- echo "$as_me:4716: checking which terminfo source-file will be installed" >&5
+ echo "$as_me:4713: 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.
@@ -4721,11 +4718,11 @@
enableval="$enable_database"
TERMINFO_SRC=$withval
fi;
- echo "$as_me:4724: result: $TERMINFO_SRC" >&5
+ echo "$as_me:4721: result: $TERMINFO_SRC" >&5
echo "${ECHO_T}$TERMINFO_SRC" >&6
fi
-echo "$as_me:4728: checking for list of fallback descriptions" >&5
+echo "$as_me:4725: 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.
@@ -4735,7 +4732,7 @@
else
with_fallback=
fi;
-echo "$as_me:4738: result: $with_fallback" >&5
+echo "$as_me:4735: result: $with_fallback" >&5
echo "${ECHO_T}$with_fallback" >&6
FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
@@ -4745,7 +4742,7 @@
MAKE_TERMINFO="#"
else
-echo "$as_me:4748: checking for list of terminfo directories" >&5
+echo "$as_me:4745: 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.
@@ -4779,7 +4776,7 @@
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$ac_default_prefix%`
;;
*)
- { { echo "$as_me:4782: error: expected a pathname, not \"$cf_src_path\"" >&5
+ { { echo "$as_me:4779: 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; }; }
;;
@@ -4792,13 +4789,13 @@
eval 'TERMINFO_DIRS="$cf_dst_path"'
-echo "$as_me:4795: result: $TERMINFO_DIRS" >&5
+echo "$as_me:4792: result: $TERMINFO_DIRS" >&5
echo "${ECHO_T}$TERMINFO_DIRS" >&6
test -n "$TERMINFO_DIRS" && cat >>confdefs.h <
EOF
-echo "$as_me:4801: checking for default terminfo directory" >&5
+echo "$as_me:4798: 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.
@@ -4827,7 +4824,7 @@
withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
;;
*)
- { { echo "$as_me:4830: error: expected a pathname, not \"$withval\"" >&5
+ { { echo "$as_me:4827: error: expected a pathname, not \"$withval\"" >&5
echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
{ (exit 1); exit 1; }; }
;;
@@ -4835,7 +4832,7 @@
eval TERMINFO="$withval"
-echo "$as_me:4838: result: $TERMINFO" >&5
+echo "$as_me:4835: result: $TERMINFO" >&5
echo "${ECHO_T}$TERMINFO" >&6
cat >>confdefs.h <
@@ -4845,7 +4842,7 @@
### 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:4848: checking if big-core option selected" >&5
+echo "$as_me:4845: 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.
@@ -4857,7 +4854,7 @@
with_big_core=no
else
cat >conftest.$ac_ext <<_ACEOF
-#line 4860 "configure"
+#line 4857 "configure"
#include "confdefs.h"
#include
@@ -4871,15 +4868,15 @@
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4874: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4871: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4877: \$? = $ac_status" >&5
+ echo "$as_me:4874: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:4879: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4876: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4882: \$? = $ac_status" >&5
+ echo "$as_me:4879: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
with_big_core=yes
else
@@ -4891,14 +4888,14 @@
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi;
-echo "$as_me:4894: result: $with_big_core" >&5
+echo "$as_me:4891: 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
EOF
### use option --enable-termcap to compile in the termcap fallback support
-echo "$as_me:4901: checking if you want termcap-fallback support" >&5
+echo "$as_me:4898: 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.
@@ -4908,13 +4905,13 @@
else
with_termcap=no
fi;
-echo "$as_me:4911: result: $with_termcap" >&5
+echo "$as_me:4908: 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 "$as_me:4917: error: You have disabled the database w/o specifying fallbacks" >&5
+ { { echo "$as_me:4914: 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
@@ -4929,7 +4926,7 @@
#define USE_TERMCAP 1
EOF
-echo "$as_me:4932: checking for list of termcap files" >&5
+echo "$as_me:4929: 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.
@@ -4963,7 +4960,7 @@
cf_src_path=`echo $cf_src_path | sed -e s%NONE%$ac_default_prefix%`
;;
*)
- { { echo "$as_me:4966: error: expected a pathname, not \"$cf_src_path\"" >&5
+ { { echo "$as_me:4963: 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; }; }
;;
@@ -4976,14 +4973,14 @@
eval 'TERMPATH="$cf_dst_path"'
-echo "$as_me:4979: result: $TERMPATH" >&5
+echo "$as_me:4976: result: $TERMPATH" >&5
echo "${ECHO_T}$TERMPATH" >&6
test -n "$TERMPATH" && cat >>confdefs.h <
EOF
### use option --enable-getcap to use a hacked getcap for reading termcaps
-echo "$as_me:4986: checking if fast termcap-loader is needed" >&5
+echo "$as_me:4983: 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.
@@ -4993,13 +4990,13 @@
else
with_getcap=no
fi;
-echo "$as_me:4996: result: $with_getcap" >&5
+echo "$as_me:4993: result: $with_getcap" >&5
echo "${ECHO_T}$with_getcap" >&6
test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF
#define USE_GETCAP 1
EOF
-echo "$as_me:5002: checking if translated termcaps will be cached in ~/.terminfo" >&5
+echo "$as_me:4999: 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.
@@ -5009,7 +5006,7 @@
else
with_getcap_cache=no
fi;
-echo "$as_me:5012: result: $with_getcap_cache" >&5
+echo "$as_me:5009: 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
@@ -5025,13 +5022,13 @@
unlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5028: checking for $ac_func" >&5
+echo "$as_me:5025: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 5034 "configure"
+#line 5031 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -5062,16 +5059,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5065: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5062: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5068: \$? = $ac_status" >&5
+ echo "$as_me:5065: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5071: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5068: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5074: \$? = $ac_status" >&5
+ echo "$as_me:5071: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -5081,7 +5078,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5084: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5081: 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 <
symlink
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5101: checking for $ac_func" >&5
+echo "$as_me:5098: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 5107 "configure"
+#line 5104 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -5135,16 +5132,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5138: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5135: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5141: \$? = $ac_status" >&5
+ echo "$as_me:5138: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5144: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5141: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5147: \$? = $ac_status" >&5
+ echo "$as_me:5144: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -5154,7 +5151,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5157: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5154: 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 <
done
else
- echo "$as_me:5168: checking if link/symlink functions work" >&5
+ echo "$as_me:5165: 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
@@ -5178,7 +5175,7 @@
eval 'ac_cv_func_'$cf_func'=error'
else
cat >conftest.$ac_ext <<_ACEOF
-#line 5181 "configure"
+#line 5178 "configure"
#include "confdefs.h"
#include
@@ -5208,15 +5205,15 @@
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:5211: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5208: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5214: \$? = $ac_status" >&5
+ echo "$as_me:5211: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:5216: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5213: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5219: \$? = $ac_status" >&5
+ echo "$as_me:5216: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
@@ -5234,7 +5231,7 @@
test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
fi
-echo "$as_me:5237: result: $cf_cv_link_funcs" >&5
+echo "$as_me:5234: 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
@@ -5250,27 +5247,27 @@
with_symlinks=no
if test "$ac_cv_func_link" != yes ; then
- echo "$as_me:5253: checking if tic should use symbolic links" >&5
+ echo "$as_me:5250: checking if tic should use symbolic links" >&5
echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
if test "$ac_cv_func_symlink" = yes ; then
with_symlinks=yes
else
with_symlinks=no
fi
- echo "$as_me:5260: result: $with_symlinks" >&5
+ echo "$as_me:5257: result: $with_symlinks" >&5
echo "${ECHO_T}$with_symlinks" >&6
elif test "$ac_cv_func_symlink" != yes ; then
- echo "$as_me:5263: checking if tic should use hard links" >&5
+ echo "$as_me:5260: 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 "$as_me:5270: result: $with_links" >&5
+ echo "$as_me:5267: result: $with_links" >&5
echo "${ECHO_T}$with_links" >&6
else
- echo "$as_me:5273: checking if tic should use symbolic links" >&5
+ echo "$as_me:5270: 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.
@@ -5280,7 +5277,7 @@
else
with_symlinks=no
fi;
- echo "$as_me:5283: result: $with_symlinks" >&5
+ echo "$as_me:5280: result: $with_symlinks" >&5
echo "${ECHO_T}$with_symlinks" >&6
fi
@@ -5293,7 +5290,7 @@
EOF
### use option --enable-broken-linker to force on use of broken-linker support
-echo "$as_me:5296: checking if you want broken-linker support code" >&5
+echo "$as_me:5293: 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.
@@ -5303,7 +5300,7 @@
else
with_broken_linker=$BROKEN_LINKER
fi;
-echo "$as_me:5306: result: $with_broken_linker" >&5
+echo "$as_me:5303: result: $with_broken_linker" >&5
echo "${ECHO_T}$with_broken_linker" >&6
BROKEN_LINKER=0
@@ -5328,7 +5325,7 @@
fi
### use option --with-bool to override bool's type
-echo "$as_me:5331: checking for type of bool" >&5
+echo "$as_me:5328: 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.
@@ -5338,11 +5335,11 @@
else
NCURSES_BOOL=auto
fi;
-echo "$as_me:5341: result: $NCURSES_BOOL" >&5
+echo "$as_me:5338: result: $NCURSES_BOOL" >&5
echo "${ECHO_T}$NCURSES_BOOL" >&6
### use option --with-ospeed to override ospeed's type
-echo "$as_me:5345: checking for type of ospeed" >&5
+echo "$as_me:5342: 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.
@@ -5352,11 +5349,11 @@
else
NCURSES_OSPEED=short
fi;
-echo "$as_me:5355: result: $NCURSES_OSPEED" >&5
+echo "$as_me:5352: result: $NCURSES_OSPEED" >&5
echo "${ECHO_T}$NCURSES_OSPEED" >&6
### use option --enable-bsdpad to have tputs process BSD-style prefix padding
-echo "$as_me:5359: checking if tputs should process BSD-style prefix padding" >&5
+echo "$as_me:5356: 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.
@@ -5366,14 +5363,14 @@
else
with_bsdpad=no
fi;
-echo "$as_me:5369: result: $with_bsdpad" >&5
+echo "$as_me:5366: result: $with_bsdpad" >&5
echo "${ECHO_T}$with_bsdpad" >&6
test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF
#define BSD_TPUTS 1
EOF
### Enable compiling-in rcs id's
-echo "$as_me:5376: checking if RCS identifiers should be compiled-in" >&5
+echo "$as_me:5373: 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.
@@ -5383,7 +5380,7 @@
else
with_rcs_ids=no
fi;
-echo "$as_me:5386: result: $with_rcs_ids" >&5
+echo "$as_me:5383: 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
@@ -5391,7 +5388,7 @@
###############################################################################
-echo "$as_me:5394: checking format of man-pages" >&5
+echo "$as_me:5391: 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.
@@ -5434,15 +5431,15 @@
IFS="$ac_save_ifs"
;;
.*) # (vi
- { echo "$as_me:5437: WARNING: Unexpected manpage-format" >&5
+ { echo "$as_me:5434: WARNING: Unexpected manpage-format" >&5
echo "$as_me: WARNING: Unexpected manpage-format" >&2;}
;;
esac
-echo "$as_me:5442: result: $MANPAGE_FORMAT" >&5
+echo "$as_me:5439: result: $MANPAGE_FORMAT" >&5
echo "${ECHO_T}$MANPAGE_FORMAT" >&6
-echo "$as_me:5445: checking for manpage renaming" >&5
+echo "$as_me:5442: 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.
@@ -5470,7 +5467,7 @@
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:5473: error: not a filename: $MANPAGE_RENAMES" >&5
+ { { echo "$as_me:5470: error: not a filename: $MANPAGE_RENAMES" >&5
echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -5484,10 +5481,10 @@
fi
fi
-echo "$as_me:5487: result: $MANPAGE_RENAMES" >&5
+echo "$as_me:5484: result: $MANPAGE_RENAMES" >&5
echo "${ECHO_T}$MANPAGE_RENAMES" >&6
-echo "$as_me:5490: checking for manpage symlinks" >&5
+echo "$as_me:5487: checking for manpage symlinks" >&5
echo $ECHO_N "checking for manpage symlinks... $ECHO_C" >&6
# Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
@@ -5498,10 +5495,10 @@
MANPAGE_SYMLINKS=yes
fi;
-echo "$as_me:5501: result: $MANPAGE_SYMLINKS" >&5
+echo "$as_me:5498: result: $MANPAGE_SYMLINKS" >&5
echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
-echo "$as_me:5504: checking for manpage tbl" >&5
+echo "$as_me:5501: 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.
@@ -5512,7 +5509,7 @@
MANPAGE_TBL=no
fi;
-echo "$as_me:5515: result: $MANPAGE_TBL" >&5
+echo "$as_me:5512: result: $MANPAGE_TBL" >&5
echo "${ECHO_T}$MANPAGE_TBL" >&6
if test "$prefix" = "NONE" ; then
@@ -5743,7 +5740,7 @@
###############################################################################
### Note that some functions (such as const) are normally disabled anyway.
-echo "$as_me:5746: checking if you want to build with function extensions" >&5
+echo "$as_me:5743: 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.
@@ -5753,7 +5750,7 @@
else
with_ext_funcs=yes
fi;
-echo "$as_me:5756: result: $with_ext_funcs" >&5
+echo "$as_me:5753: result: $with_ext_funcs" >&5
echo "${ECHO_T}$with_ext_funcs" >&6
if test "$with_ext_funcs" = yes ; then
NCURSES_EXT_FUNCS=1
@@ -5790,7 +5787,7 @@
fi
### use option --enable-const to turn on use of const beyond that in XSI.
-echo "$as_me:5793: checking for extended use of const keyword" >&5
+echo "$as_me:5790: 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.
@@ -5800,14 +5797,14 @@
else
with_ext_const=no
fi;
-echo "$as_me:5803: result: $with_ext_const" >&5
+echo "$as_me:5800: 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 "$as_me:5810: checking if you want \$NCURSES_NO_PADDING code" >&5
+echo "$as_me:5807: 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.
@@ -5817,14 +5814,14 @@
else
with_no_padding=$with_ext_funcs
fi;
-echo "$as_me:5820: result: $with_no_padding" >&5
+echo "$as_me:5817: 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
### use option --enable-sigwinch to turn on use of SIGWINCH logic
-echo "$as_me:5827: checking if you want SIGWINCH handler" >&5
+echo "$as_me:5824: 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.
@@ -5834,14 +5831,14 @@
else
with_sigwinch=$with_ext_funcs
fi;
-echo "$as_me:5837: result: $with_sigwinch" >&5
+echo "$as_me:5834: 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 "$as_me:5844: checking if you want user-definable terminal capabilities like termcap" >&5
+echo "$as_me:5841: 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.
@@ -5851,7 +5848,7 @@
else
with_tcap_names=$with_ext_funcs
fi;
-echo "$as_me:5854: result: $with_tcap_names" >&5
+echo "$as_me:5851: result: $with_tcap_names" >&5
echo "${ECHO_T}$with_tcap_names" >&6
NCURSES_XNAMES=0
test "$with_tcap_names" = yes && NCURSES_XNAMES=1
@@ -5859,7 +5856,7 @@
###############################################################################
# These options are relatively safe to experiment with.
-echo "$as_me:5862: checking if you want all development code" >&5
+echo "$as_me:5859: 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.
@@ -5869,11 +5866,11 @@
else
with_develop=no
fi;
-echo "$as_me:5872: result: $with_develop" >&5
+echo "$as_me:5869: result: $with_develop" >&5
echo "${ECHO_T}$with_develop" >&6
### use option --enable-hard-tabs to turn on use of hard-tabs optimize
-echo "$as_me:5876: checking if you want hard-tabs code" >&5
+echo "$as_me:5873: 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.
@@ -5883,13 +5880,13 @@
else
with_hardtabs=$with_develop
fi;
-echo "$as_me:5886: result: $with_hardtabs" >&5
+echo "$as_me:5883: result: $with_hardtabs" >&5
echo "${ECHO_T}$with_hardtabs" >&6
test "$with_hardtabs" = yes && cat >>confdefs.h <<\EOF
#define USE_HARD_TABS 1
EOF
-echo "$as_me:5892: checking if you want to use restrict environment when running as root" >&5
+echo "$as_me:5889: checking if you want to use restrict environment when running as root" >&5
echo $ECHO_N "checking if you want to use restrict environment when running as root... $ECHO_C" >&6
# Check whether --enable-root-environ or --disable-root-environ was given.
@@ -5899,14 +5896,14 @@
else
with_root_environ=yes
fi;
-echo "$as_me:5902: result: $with_root_environ" >&5
+echo "$as_me:5899: 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
EOF
### use option --enable-xmc-glitch to turn on use of magic-cookie optimize
-echo "$as_me:5909: checking if you want limited support for xmc" >&5
+echo "$as_me:5906: 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.
@@ -5916,7 +5913,7 @@
else
with_xmc_glitch=$with_develop
fi;
-echo "$as_me:5919: result: $with_xmc_glitch" >&5
+echo "$as_me:5916: result: $with_xmc_glitch" >&5
echo "${ECHO_T}$with_xmc_glitch" >&6
test "$with_xmc_glitch" = yes && cat >>confdefs.h <<\EOF
#define USE_XMC_SUPPORT 1
@@ -5925,7 +5922,7 @@
###############################################################################
# These are just experimental, probably should not be in a package:
-echo "$as_me:5928: checking if you do not want to assume colors are white-on-black" >&5
+echo "$as_me:5925: 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.
@@ -5935,14 +5932,14 @@
else
with_assumed_color=yes
fi;
-echo "$as_me:5938: result: $with_assumed_color" >&5
+echo "$as_me:5935: 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 "$as_me:5945: checking if you want hashmap scrolling-optimization code" >&5
+echo "$as_me:5942: 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.
@@ -5952,14 +5949,14 @@
else
with_hashmap=yes
fi;
-echo "$as_me:5955: result: $with_hashmap" >&5
+echo "$as_me:5952: 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 "$as_me:5962: checking if you want colorfgbg code" >&5
+echo "$as_me:5959: 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.
@@ -5969,13 +5966,13 @@
else
with_colorfgbg=no
fi;
-echo "$as_me:5972: result: $with_colorfgbg" >&5
+echo "$as_me:5969: result: $with_colorfgbg" >&5
echo "${ECHO_T}$with_colorfgbg" >&6
test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF
#define USE_COLORFGBG 1
EOF
-echo "$as_me:5978: checking if you want experimental safe-sprintf code" >&5
+echo "$as_me:5975: 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.
@@ -5985,7 +5982,7 @@
else
with_safe_sprintf=no
fi;
-echo "$as_me:5988: result: $with_safe_sprintf" >&5
+echo "$as_me:5985: 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
@@ -5994,7 +5991,7 @@
### 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:5997: checking if you want to experiment without scrolling-hints code" >&5
+echo "$as_me:5994: 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.
@@ -6004,7 +6001,7 @@
else
with_scroll_hints=yes
fi;
-echo "$as_me:6007: result: $with_scroll_hints" >&5
+echo "$as_me:6004: 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
@@ -6023,14 +6020,14 @@
# Check to define _XOPEN_SOURCE "automatically"
-echo "$as_me:6026: checking if we must define _GNU_SOURCE" >&5
+echo "$as_me:6023: 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
-#line 6033 "configure"
+#line 6030 "configure"
#include "confdefs.h"
#include
int
@@ -6045,16 +6042,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6048: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6045: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6051: \$? = $ac_status" >&5
+ echo "$as_me:6048: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6054: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6051: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6057: \$? = $ac_status" >&5
+ echo "$as_me:6054: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
@@ -6063,7 +6060,7 @@
cf_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
cat >conftest.$ac_ext <<_ACEOF
-#line 6066 "configure"
+#line 6063 "configure"
#include "confdefs.h"
#include
int
@@ -6078,16 +6075,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6081: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6078: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6084: \$? = $ac_status" >&5
+ echo "$as_me:6081: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6087: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6084: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6090: \$? = $ac_status" >&5
+ echo "$as_me:6087: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_gnu_source=no
else
@@ -6102,7 +6099,7 @@
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6105: result: $cf_cv_gnu_source" >&5
+echo "$as_me:6102: 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"
@@ -6110,7 +6107,7 @@
NCURSES_OK_WCHAR_T=
NCURSES_OK_WINT_T=
-echo "$as_me:6113: checking if you want experimental wide-character code" >&5
+echo "$as_me:6110: checking if you want experimental wide-character code" >&5
echo $ECHO_N "checking if you want experimental wide-character code... $ECHO_C" >&6
# Check whether --enable-widec or --disable-widec was given.
@@ -6120,7 +6117,7 @@
else
with_widec=no
fi;
-echo "$as_me:6123: result: $with_widec" >&5
+echo "$as_me:6120: result: $with_widec" >&5
echo "${ECHO_T}$with_widec" >&6
if test "$with_widec" = yes ; then
LIB_SUFFIX="w${LIB_SUFFIX}"
@@ -6128,10 +6125,10 @@
#define USE_WIDEC_SUPPORT 1
EOF
-echo "$as_me:6131: checking if we must define _XOPEN_SOURCE" >&5
+echo "$as_me:6128: checking if we must define _XOPEN_SOURCE" >&5
echo $ECHO_N "checking if we must define _XOPEN_SOURCE... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
-#line 6134 "configure"
+#line 6131 "configure"
#include "confdefs.h"
#include
@@ -6147,16 +6144,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6150: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6147: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6153: \$? = $ac_status" >&5
+ echo "$as_me:6150: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6156: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6153: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6159: \$? = $ac_status" >&5
+ echo "$as_me:6156: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=no
else
@@ -6165,16 +6162,16 @@
cf_result=yes
fi
rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:6168: result: $cf_result" >&5
+echo "$as_me:6165: result: $cf_result" >&5
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = yes ; then
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
elif test "x500" != "x" ; then
- echo "$as_me:6174: checking checking for compatible value versus 500" >&5
+ echo "$as_me:6171: checking checking for compatible value versus 500" >&5
echo $ECHO_N "checking checking for compatible value versus 500... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
-#line 6177 "configure"
+#line 6174 "configure"
#include "confdefs.h"
#include
@@ -6190,16 +6187,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6193: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6190: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6196: \$? = $ac_status" >&5
+ echo "$as_me:6193: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6199: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6196: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6202: \$? = $ac_status" >&5
+ echo "$as_me:6199: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=yes
else
@@ -6208,7 +6205,7 @@
cf_result=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
- echo "$as_me:6211: result: $cf_result" >&5
+ echo "$as_me:6208: result: $cf_result" >&5
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = no ; then
# perhaps we can override it - try...
@@ -6216,10 +6213,10 @@
fi
fi
-echo "$as_me:6219: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
+echo "$as_me:6216: 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
-#line 6222 "configure"
+#line 6219 "configure"
#include "confdefs.h"
#include
@@ -6235,16 +6232,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6238: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6235: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6241: \$? = $ac_status" >&5
+ echo "$as_me:6238: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6244: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6241: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6247: \$? = $ac_status" >&5
+ echo "$as_me:6244: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=no
else
@@ -6253,16 +6250,16 @@
cf_result=yes
fi
rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:6256: result: $cf_result" >&5
+echo "$as_me:6253: 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 "$as_me:6262: checking checking for compatible value versus " >&5
+ echo "$as_me:6259: checking checking for compatible value versus " >&5
echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
-#line 6265 "configure"
+#line 6262 "configure"
#include "confdefs.h"
#include
@@ -6278,16 +6275,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6281: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6278: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6284: \$? = $ac_status" >&5
+ echo "$as_me:6281: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6287: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6284: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6290: \$? = $ac_status" >&5
+ echo "$as_me:6287: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_result=yes
else
@@ -6296,7 +6293,7 @@
cf_result=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
- echo "$as_me:6299: result: $cf_result" >&5
+ echo "$as_me:6296: result: $cf_result" >&5
echo "${ECHO_T}$cf_result" >&6
if test "$cf_result" = no ; then
# perhaps we can override it - try...
@@ -6310,13 +6307,13 @@
for ac_func in putwc btowc wctob mbtowc wctomb
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:6313: checking for $ac_func" >&5
+echo "$as_me:6310: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
-#line 6319 "configure"
+#line 6316 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -6347,16 +6344,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6350: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6347: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6353: \$? = $ac_status" >&5
+ echo "$as_me:6350: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6356: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6353: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6359: \$? = $ac_status" >&5
+ echo "$as_me:6356: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -6366,7 +6363,7 @@
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:6369: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:6366: 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 <
if test "$ac_cv_func_putwc" != yes ; then
-echo "$as_me:6381: checking for putwc in libutf8" >&5
+echo "$as_me:6378: 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
@@ -6387,7 +6384,7 @@
cf_save_LIBS="$LIBS"
LIBS="-lutf8 $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 6390 "configure"
+#line 6387 "configure"
#include "confdefs.h"
#include
@@ -6400,16 +6397,16 @@
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6403: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6400: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6406: \$? = $ac_status" >&5
+ echo "$as_me:6403: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6409: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6406: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6412: \$? = $ac_status" >&5
+ echo "$as_me:6409: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_libutf8=yes
else
@@ -6421,7 +6418,7 @@
LIBS="$cf_save_LIBS"
fi
-echo "$as_me:6424: result: $cf_cv_libutf8" >&5
+echo "$as_me:6421: result: $cf_cv_libutf8" >&5
echo "${ECHO_T}$cf_cv_libutf8" >&6
if test "$cf_cv_libutf8" = yes ; then
@@ -6438,14 +6435,14 @@
fi
# This is needed on Tru64 5.0 to declare mbstate_t
-echo "$as_me:6441: checking if we must include wchar.h to declare mbstate_t" >&5
+echo "$as_me:6438: 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
-#line 6448 "configure"
+#line 6445 "configure"
#include "confdefs.h"
#include
@@ -6461,23 +6458,23 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6464: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6461: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6467: \$? = $ac_status" >&5
+ echo "$as_me:6464: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6470: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6467: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6473: \$? = $ac_status" >&5
+ echo "$as_me:6470: \$? = $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
-#line 6480 "configure"
+#line 6477 "configure"
#include "confdefs.h"
#include
@@ -6494,16 +6491,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6497: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6494: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6500: \$? = $ac_status" >&5
+ echo "$as_me:6497: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6503: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6500: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6506: \$? = $ac_status" >&5
+ echo "$as_me:6503: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_mbstate_t=yes
else
@@ -6515,7 +6512,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6518: result: $cf_cv_mbstate_t" >&5
+echo "$as_me:6515: result: $cf_cv_mbstate_t" >&5
echo "${ECHO_T}$cf_cv_mbstate_t" >&6
if test "$cf_cv_mbstate_t" = yes ; then
@@ -6532,14 +6529,14 @@
fi
# This is needed on Tru64 5.0 to declare wchar_t
-echo "$as_me:6535: checking if we must include wchar.h to declare wchar_t" >&5
+echo "$as_me:6532: 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
-#line 6542 "configure"
+#line 6539 "configure"
#include "confdefs.h"
#include
@@ -6555,23 +6552,23 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6558: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6555: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6561: \$? = $ac_status" >&5
+ echo "$as_me:6558: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6564: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6561: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6567: \$? = $ac_status" >&5
+ echo "$as_me:6564: \$? = $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
-#line 6574 "configure"
+#line 6571 "configure"
#include "confdefs.h"
#include
@@ -6588,16 +6585,16 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6591: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6588: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6594: \$? = $ac_status" >&5
+ echo "$as_me:6591: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6597: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6594: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6600: \$? = $ac_status" >&5
+ echo "$as_me:6597: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cf_cv_wchar_t=yes
else
@@ -6609,7 +6606,7 @@
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:6612: result: $cf_cv_wchar_t" >&5
+echo "$as_me:6609: result: $cf_cv_wchar_t" >&5
echo "${ECHO_T}$cf_cv_wchar_t" >&6
if test "$cf_cv_wchar_t" = yes ; then
@@ -6631,14 +6628,14 @@
fi
# This is needed on Tru64 5.0 to declare wint_t
-echo "$as_me:6634: checking if we must include wchar.h to declare wint_t" >&5
+echo "$as_me:6631: 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
-#line 6641 "configure"
+#line 6638 "configure"
#include "confdefs.h"
#include
@@ -6654,23 +6651,23 @@
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6657: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6654: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6660: \$? = $ac_status" >&5
+ echo "$as_me:6657: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6663: \"$ac_try\"") >&5
+