* configure.in: Move termcap determination a later in the file to catch
setting of cygwin flag. * configure: Regenerate.
This commit is contained in:
parent
a12bb0d853
commit
2ab6ecfc96
2 changed files with 265 additions and 265 deletions
496
gdb/configure
vendored
496
gdb/configure
vendored
|
@ -4078,227 +4078,16 @@ fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test x$gdb_cv_os_cygwin = xyes; then
|
|
||||||
TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
|
|
||||||
else
|
|
||||||
TERM_LIB=
|
|
||||||
echo $ac_n "checking for tgetent in -lncurses""... $ac_c" 1>&6
|
|
||||||
echo "configure:4087: checking for tgetent in -lncurses" >&5
|
|
||||||
ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'`
|
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
|
||||||
else
|
|
||||||
ac_save_LIBS="$LIBS"
|
|
||||||
LIBS="-lncurses $LIBS"
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
|
||||||
#line 4095 "configure"
|
|
||||||
#include "confdefs.h"
|
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
|
||||||
/* We use char because int might match the return type of a gcc2
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
char tgetent();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
tgetent()
|
|
||||||
; return 0; }
|
|
||||||
EOF
|
|
||||||
if { (eval echo configure:4106: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
||||||
else
|
|
||||||
echo "configure: failed program was:" >&5
|
|
||||||
cat conftest.$ac_ext >&5
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest*
|
|
||||||
LIBS="$ac_save_LIBS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
|
||||||
echo "$ac_t""yes" 1>&6
|
|
||||||
TERM_LIB=-lncurses
|
|
||||||
else
|
|
||||||
echo "$ac_t""no" 1>&6
|
|
||||||
echo $ac_n "checking for tgetent in -ltermlib""... $ac_c" 1>&6
|
|
||||||
echo "configure:4125: checking for tgetent in -ltermlib" >&5
|
|
||||||
ac_lib_var=`echo termlib'_'tgetent | sed 'y%./+-%__p_%'`
|
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
|
||||||
else
|
|
||||||
ac_save_LIBS="$LIBS"
|
|
||||||
LIBS="-ltermlib $LIBS"
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
|
||||||
#line 4133 "configure"
|
|
||||||
#include "confdefs.h"
|
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
|
||||||
/* We use char because int might match the return type of a gcc2
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
char tgetent();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
tgetent()
|
|
||||||
; return 0; }
|
|
||||||
EOF
|
|
||||||
if { (eval echo configure:4144: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
||||||
else
|
|
||||||
echo "configure: failed program was:" >&5
|
|
||||||
cat conftest.$ac_ext >&5
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest*
|
|
||||||
LIBS="$ac_save_LIBS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
|
||||||
echo "$ac_t""yes" 1>&6
|
|
||||||
TERM_LIB=-ltermlib
|
|
||||||
else
|
|
||||||
echo "$ac_t""no" 1>&6
|
|
||||||
echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6
|
|
||||||
echo "configure:4163: checking for tgetent in -ltermcap" >&5
|
|
||||||
ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'`
|
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
|
||||||
else
|
|
||||||
ac_save_LIBS="$LIBS"
|
|
||||||
LIBS="-ltermcap $LIBS"
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
|
||||||
#line 4171 "configure"
|
|
||||||
#include "confdefs.h"
|
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
|
||||||
/* We use char because int might match the return type of a gcc2
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
char tgetent();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
tgetent()
|
|
||||||
; return 0; }
|
|
||||||
EOF
|
|
||||||
if { (eval echo configure:4182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
||||||
else
|
|
||||||
echo "configure: failed program was:" >&5
|
|
||||||
cat conftest.$ac_ext >&5
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest*
|
|
||||||
LIBS="$ac_save_LIBS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
|
||||||
echo "$ac_t""yes" 1>&6
|
|
||||||
TERM_LIB=-ltermcap
|
|
||||||
else
|
|
||||||
echo "$ac_t""no" 1>&6
|
|
||||||
echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6
|
|
||||||
echo "configure:4201: checking for tgetent in -lcurses" >&5
|
|
||||||
ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'`
|
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
|
||||||
else
|
|
||||||
ac_save_LIBS="$LIBS"
|
|
||||||
LIBS="-lcurses $LIBS"
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
|
||||||
#line 4209 "configure"
|
|
||||||
#include "confdefs.h"
|
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
|
||||||
/* We use char because int might match the return type of a gcc2
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
char tgetent();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
tgetent()
|
|
||||||
; return 0; }
|
|
||||||
EOF
|
|
||||||
if { (eval echo configure:4220: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
||||||
else
|
|
||||||
echo "configure: failed program was:" >&5
|
|
||||||
cat conftest.$ac_ext >&5
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest*
|
|
||||||
LIBS="$ac_save_LIBS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
|
||||||
echo "$ac_t""yes" 1>&6
|
|
||||||
TERM_LIB=-lcurses
|
|
||||||
else
|
|
||||||
echo "$ac_t""no" 1>&6
|
|
||||||
echo $ac_n "checking for tgetent in -lterminfo""... $ac_c" 1>&6
|
|
||||||
echo "configure:4239: checking for tgetent in -lterminfo" >&5
|
|
||||||
ac_lib_var=`echo terminfo'_'tgetent | sed 'y%./+-%__p_%'`
|
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
|
||||||
else
|
|
||||||
ac_save_LIBS="$LIBS"
|
|
||||||
LIBS="-lterminfo $LIBS"
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
|
||||||
#line 4247 "configure"
|
|
||||||
#include "confdefs.h"
|
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
|
||||||
/* We use char because int might match the return type of a gcc2
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
char tgetent();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
tgetent()
|
|
||||||
; return 0; }
|
|
||||||
EOF
|
|
||||||
if { (eval echo configure:4258: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
||||||
else
|
|
||||||
echo "configure: failed program was:" >&5
|
|
||||||
cat conftest.$ac_ext >&5
|
|
||||||
rm -rf conftest*
|
|
||||||
eval "ac_cv_lib_$ac_lib_var=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest*
|
|
||||||
LIBS="$ac_save_LIBS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
|
||||||
echo "$ac_t""yes" 1>&6
|
|
||||||
TERM_LIB=-lterminfo
|
|
||||||
else
|
|
||||||
echo "$ac_t""no" 1>&6
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "x$TERM_LIB" = x
|
|
||||||
then
|
|
||||||
{ echo "configure: error: Could not find a term library" 1>&2; exit 1; }
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for long long support in compiler""... $ac_c" 1>&6
|
echo $ac_n "checking for long long support in compiler""... $ac_c" 1>&6
|
||||||
echo "configure:4297: checking for long long support in compiler" >&5
|
echo "configure:4086: checking for long long support in compiler" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_c_long_long'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_c_long_long'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4302 "configure"
|
#line 4091 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
@ -4308,7 +4097,7 @@ int main() {
|
||||||
|
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4312: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:4101: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
gdb_cv_c_long_long=yes
|
gdb_cv_c_long_long=yes
|
||||||
else
|
else
|
||||||
|
@ -4330,7 +4119,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for long long support in printf""... $ac_c" 1>&6
|
echo $ac_n "checking for long long support in printf""... $ac_c" 1>&6
|
||||||
echo "configure:4334: checking for long long support in printf" >&5
|
echo "configure:4123: checking for long long support in printf" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_printf_has_long_long'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_printf_has_long_long'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
@ -4338,7 +4127,7 @@ else
|
||||||
gdb_cv_printf_has_long_long=no
|
gdb_cv_printf_has_long_long=no
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4342 "configure"
|
#line 4131 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main () {
|
int main () {
|
||||||
|
@ -4352,7 +4141,7 @@ int main () {
|
||||||
return (strcmp ("0x0123456789abcdef", buf));
|
return (strcmp ("0x0123456789abcdef", buf));
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
if { (eval echo configure:4145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||||
then
|
then
|
||||||
gdb_cv_printf_has_long_long=yes
|
gdb_cv_printf_has_long_long=yes
|
||||||
else
|
else
|
||||||
|
@ -4376,19 +4165,19 @@ echo "$ac_t""$gdb_cv_printf_has_long_long" 1>&6
|
||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for long double support in compiler""... $ac_c" 1>&6
|
echo $ac_n "checking for long double support in compiler""... $ac_c" 1>&6
|
||||||
echo "configure:4380: checking for long double support in compiler" >&5
|
echo "configure:4169: checking for long double support in compiler" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_c_long_double'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_c_long_double'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4385 "configure"
|
#line 4174 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
long double foo;
|
long double foo;
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4392: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:4181: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
ac_cv_c_long_double=yes
|
ac_cv_c_long_double=yes
|
||||||
else
|
else
|
||||||
|
@ -4410,7 +4199,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for long double support in printf""... $ac_c" 1>&6
|
echo $ac_n "checking for long double support in printf""... $ac_c" 1>&6
|
||||||
echo "configure:4414: checking for long double support in printf" >&5
|
echo "configure:4203: checking for long double support in printf" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_printf_has_long_double'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_printf_has_long_double'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
@ -4418,7 +4207,7 @@ else
|
||||||
gdb_cv_printf_has_long_double=no
|
gdb_cv_printf_has_long_double=no
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4422 "configure"
|
#line 4211 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main () {
|
int main () {
|
||||||
|
@ -4428,7 +4217,7 @@ int main () {
|
||||||
return (strncmp ("3.14159", buf, 7));
|
return (strncmp ("3.14159", buf, 7));
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
if { (eval echo configure:4221: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||||
then
|
then
|
||||||
gdb_cv_printf_has_long_double=yes
|
gdb_cv_printf_has_long_double=yes
|
||||||
else
|
else
|
||||||
|
@ -4452,7 +4241,7 @@ echo "$ac_t""$gdb_cv_printf_has_long_double" 1>&6
|
||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for long double support in scanf""... $ac_c" 1>&6
|
echo $ac_n "checking for long double support in scanf""... $ac_c" 1>&6
|
||||||
echo "configure:4456: checking for long double support in scanf" >&5
|
echo "configure:4245: checking for long double support in scanf" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_scanf_has_long_double'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_scanf_has_long_double'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
@ -4460,7 +4249,7 @@ else
|
||||||
gdb_cv_scanf_has_long_double=no
|
gdb_cv_scanf_has_long_double=no
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4464 "configure"
|
#line 4253 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main () {
|
int main () {
|
||||||
|
@ -4470,7 +4259,7 @@ int main () {
|
||||||
return !(f > 3.14159 && f < 3.14160);
|
return !(f > 3.14159 && f < 3.14160);
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
if { (eval echo configure:4263: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||||
then
|
then
|
||||||
gdb_cv_scanf_has_long_double=yes
|
gdb_cv_scanf_has_long_double=yes
|
||||||
else
|
else
|
||||||
|
@ -4496,17 +4285,17 @@ for ac_hdr in unistd.h
|
||||||
do
|
do
|
||||||
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
||||||
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
||||||
echo "configure:4500: checking for $ac_hdr" >&5
|
echo "configure:4289: checking for $ac_hdr" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4505 "configure"
|
#line 4294 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <$ac_hdr>
|
#include <$ac_hdr>
|
||||||
EOF
|
EOF
|
||||||
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
||||||
{ (eval echo configure:4510: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
{ (eval echo configure:4299: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
||||||
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
||||||
if test -z "$ac_err"; then
|
if test -z "$ac_err"; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
|
@ -4535,12 +4324,12 @@ done
|
||||||
for ac_func in getpagesize
|
for ac_func in getpagesize
|
||||||
do
|
do
|
||||||
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
||||||
echo "configure:4539: checking for $ac_func" >&5
|
echo "configure:4328: checking for $ac_func" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4544 "configure"
|
#line 4333 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
/* System header to define __stub macros and hopefully few prototypes,
|
||||||
which can conflict with char $ac_func(); below. */
|
which can conflict with char $ac_func(); below. */
|
||||||
|
@ -4563,7 +4352,7 @@ $ac_func();
|
||||||
|
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4567: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
if { (eval echo configure:4356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
eval "ac_cv_func_$ac_func=yes"
|
eval "ac_cv_func_$ac_func=yes"
|
||||||
else
|
else
|
||||||
|
@ -4588,7 +4377,7 @@ fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo $ac_n "checking for working mmap""... $ac_c" 1>&6
|
echo $ac_n "checking for working mmap""... $ac_c" 1>&6
|
||||||
echo "configure:4592: checking for working mmap" >&5
|
echo "configure:4381: checking for working mmap" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
@ -4596,7 +4385,7 @@ else
|
||||||
ac_cv_func_mmap_fixed_mapped=no
|
ac_cv_func_mmap_fixed_mapped=no
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4600 "configure"
|
#line 4389 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
/* Thanks to Mike Haertel and Jim Avera for this test.
|
/* Thanks to Mike Haertel and Jim Avera for this test.
|
||||||
|
@ -4736,7 +4525,7 @@ main()
|
||||||
}
|
}
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4740: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
if { (eval echo configure:4529: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||||
then
|
then
|
||||||
ac_cv_func_mmap_fixed_mapped=yes
|
ac_cv_func_mmap_fixed_mapped=yes
|
||||||
else
|
else
|
||||||
|
@ -4765,7 +4554,7 @@ if test ${build} = ${host} -a ${host} = ${target} ; then
|
||||||
case ${host_os} in
|
case ${host_os} in
|
||||||
hpux*)
|
hpux*)
|
||||||
echo $ac_n "checking for HPUX/OSF thread support""... $ac_c" 1>&6
|
echo $ac_n "checking for HPUX/OSF thread support""... $ac_c" 1>&6
|
||||||
echo "configure:4769: checking for HPUX/OSF thread support" >&5
|
echo "configure:4558: checking for HPUX/OSF thread support" >&5
|
||||||
if test -f /usr/include/dce/cma_config.h ; then
|
if test -f /usr/include/dce/cma_config.h ; then
|
||||||
if test "$GCC" = "yes" ; then
|
if test "$GCC" = "yes" ; then
|
||||||
echo "$ac_t""yes" 1>&6
|
echo "$ac_t""yes" 1>&6
|
||||||
|
@ -4784,7 +4573,7 @@ EOF
|
||||||
;;
|
;;
|
||||||
solaris*)
|
solaris*)
|
||||||
echo $ac_n "checking for Solaris thread debugging library""... $ac_c" 1>&6
|
echo $ac_n "checking for Solaris thread debugging library""... $ac_c" 1>&6
|
||||||
echo "configure:4788: checking for Solaris thread debugging library" >&5
|
echo "configure:4577: checking for Solaris thread debugging library" >&5
|
||||||
if test -f /usr/lib/libthread_db.so.1 ; then
|
if test -f /usr/lib/libthread_db.so.1 ; then
|
||||||
echo "$ac_t""yes" 1>&6
|
echo "$ac_t""yes" 1>&6
|
||||||
cat >> confdefs.h <<\EOF
|
cat >> confdefs.h <<\EOF
|
||||||
|
@ -4794,7 +4583,7 @@ EOF
|
||||||
CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
|
CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
|
||||||
CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
|
CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
|
||||||
echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
|
echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
|
||||||
echo "configure:4798: checking for dlopen in -ldl" >&5
|
echo "configure:4587: checking for dlopen in -ldl" >&5
|
||||||
ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
|
ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
@ -4802,7 +4591,7 @@ else
|
||||||
ac_save_LIBS="$LIBS"
|
ac_save_LIBS="$LIBS"
|
||||||
LIBS="-ldl $LIBS"
|
LIBS="-ldl $LIBS"
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4806 "configure"
|
#line 4595 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
/* We use char because int might match the return type of a gcc2
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
@ -4813,7 +4602,7 @@ int main() {
|
||||||
dlopen()
|
dlopen()
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4817: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
if { (eval echo configure:4606: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
eval "ac_cv_lib_$ac_lib_var=yes"
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
else
|
else
|
||||||
|
@ -4845,17 +4634,17 @@ fi
|
||||||
# all symbols visible in the dynamic symbol table.
|
# all symbols visible in the dynamic symbol table.
|
||||||
hold_ldflags=$LDFLAGS
|
hold_ldflags=$LDFLAGS
|
||||||
echo $ac_n "checking for the ld -export-dynamic flag""... $ac_c" 1>&6
|
echo $ac_n "checking for the ld -export-dynamic flag""... $ac_c" 1>&6
|
||||||
echo "configure:4849: checking for the ld -export-dynamic flag" >&5
|
echo "configure:4638: checking for the ld -export-dynamic flag" >&5
|
||||||
LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
|
LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4852 "configure"
|
#line 4641 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
int i;
|
int i;
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4859: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
if { (eval echo configure:4648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
found=yes
|
found=yes
|
||||||
else
|
else
|
||||||
|
@ -4874,13 +4663,13 @@ rm -f conftest*
|
||||||
# Sun randomly tweaked the prototypes in <proc_service.h>
|
# Sun randomly tweaked the prototypes in <proc_service.h>
|
||||||
# at one point.
|
# at one point.
|
||||||
echo $ac_n "checking if <proc_service.h> is old""... $ac_c" 1>&6
|
echo $ac_n "checking if <proc_service.h> is old""... $ac_c" 1>&6
|
||||||
echo "configure:4878: checking if <proc_service.h> is old" >&5
|
echo "configure:4667: checking if <proc_service.h> is old" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_proc_service_is_old'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_proc_service_is_old'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 4884 "configure"
|
#line 4673 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#include <proc_service.h>
|
#include <proc_service.h>
|
||||||
|
@ -4891,7 +4680,7 @@ int main() {
|
||||||
|
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4895: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:4684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
gdb_cv_proc_service_is_old=no
|
gdb_cv_proc_service_is_old=no
|
||||||
else
|
else
|
||||||
|
@ -5296,12 +5085,12 @@ fi
|
||||||
|
|
||||||
# In the Cygwin environment, we need some additional flags.
|
# In the Cygwin environment, we need some additional flags.
|
||||||
echo $ac_n "checking for cygwin""... $ac_c" 1>&6
|
echo $ac_n "checking for cygwin""... $ac_c" 1>&6
|
||||||
echo "configure:5300: checking for cygwin" >&5
|
echo "configure:5089: checking for cygwin" >&5
|
||||||
if eval "test \"`echo '$''{'gdb_cv_os_cygwin'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'gdb_cv_os_cygwin'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 5305 "configure"
|
#line 5094 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#ifdef __CYGWIN32__
|
#ifdef __CYGWIN32__
|
||||||
|
@ -5322,6 +5111,217 @@ fi
|
||||||
|
|
||||||
echo "$ac_t""$gdb_cv_os_cygwin" 1>&6
|
echo "$ac_t""$gdb_cv_os_cygwin" 1>&6
|
||||||
|
|
||||||
|
if test x$gdb_cv_os_cygwin = xyes; then
|
||||||
|
TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
|
||||||
|
else
|
||||||
|
TERM_LIB=
|
||||||
|
echo $ac_n "checking for tgetent in -lncurses""... $ac_c" 1>&6
|
||||||
|
echo "configure:5120: checking for tgetent in -lncurses" >&5
|
||||||
|
ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'`
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
LIBS="-lncurses $LIBS"
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 5128 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
builtin and then its argument prototype would still apply. */
|
||||||
|
char tgetent();
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
tgetent()
|
||||||
|
; return 0; }
|
||||||
|
EOF
|
||||||
|
if { (eval echo configure:5139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
TERM_LIB=-lncurses
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
echo $ac_n "checking for tgetent in -ltermlib""... $ac_c" 1>&6
|
||||||
|
echo "configure:5158: checking for tgetent in -ltermlib" >&5
|
||||||
|
ac_lib_var=`echo termlib'_'tgetent | sed 'y%./+-%__p_%'`
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
LIBS="-ltermlib $LIBS"
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 5166 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
builtin and then its argument prototype would still apply. */
|
||||||
|
char tgetent();
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
tgetent()
|
||||||
|
; return 0; }
|
||||||
|
EOF
|
||||||
|
if { (eval echo configure:5177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
TERM_LIB=-ltermlib
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6
|
||||||
|
echo "configure:5196: checking for tgetent in -ltermcap" >&5
|
||||||
|
ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'`
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
LIBS="-ltermcap $LIBS"
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 5204 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
builtin and then its argument prototype would still apply. */
|
||||||
|
char tgetent();
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
tgetent()
|
||||||
|
; return 0; }
|
||||||
|
EOF
|
||||||
|
if { (eval echo configure:5215: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
TERM_LIB=-ltermcap
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6
|
||||||
|
echo "configure:5234: checking for tgetent in -lcurses" >&5
|
||||||
|
ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'`
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
LIBS="-lcurses $LIBS"
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 5242 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
builtin and then its argument prototype would still apply. */
|
||||||
|
char tgetent();
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
tgetent()
|
||||||
|
; return 0; }
|
||||||
|
EOF
|
||||||
|
if { (eval echo configure:5253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
TERM_LIB=-lcurses
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
echo $ac_n "checking for tgetent in -lterminfo""... $ac_c" 1>&6
|
||||||
|
echo "configure:5272: checking for tgetent in -lterminfo" >&5
|
||||||
|
ac_lib_var=`echo terminfo'_'tgetent | sed 'y%./+-%__p_%'`
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
LIBS="-lterminfo $LIBS"
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 5280 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
|
/* We use char because int might match the return type of a gcc2
|
||||||
|
builtin and then its argument prototype would still apply. */
|
||||||
|
char tgetent();
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
tgetent()
|
||||||
|
; return 0; }
|
||||||
|
EOF
|
||||||
|
if { (eval echo configure:5291: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_lib_$ac_lib_var=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
TERM_LIB=-lterminfo
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test "x$TERM_LIB" = x
|
||||||
|
then
|
||||||
|
{ echo "configure: error: Could not find a term library" 1>&2; exit 1; }
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
WIN32LIBS=
|
WIN32LIBS=
|
||||||
WIN32LDAPP=
|
WIN32LDAPP=
|
||||||
|
|
||||||
|
|
|
@ -121,23 +121,6 @@ dnl under Solaris 2.6 because it is some funky empty library.
|
||||||
dnl So only link in libw if we have to.
|
dnl So only link in libw if we have to.
|
||||||
AC_CHECK_LIB(c, wctype,: ,AC_CHECK_LIB(w, wctype))
|
AC_CHECK_LIB(c, wctype,: ,AC_CHECK_LIB(w, wctype))
|
||||||
|
|
||||||
dnl Figure out which term library to use.
|
|
||||||
if test x$gdb_cv_os_cygwin = xyes; then
|
|
||||||
TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
|
|
||||||
else
|
|
||||||
TERM_LIB=
|
|
||||||
AC_CHECK_LIB(ncurses, tgetent, TERM_LIB=-lncurses,
|
|
||||||
AC_CHECK_LIB(termlib, tgetent, TERM_LIB=-ltermlib,
|
|
||||||
AC_CHECK_LIB(termcap, tgetent, TERM_LIB=-ltermcap,
|
|
||||||
AC_CHECK_LIB(curses, tgetent, TERM_LIB=-lcurses,
|
|
||||||
AC_CHECK_LIB(terminfo, tgetent, TERM_LIB=-lterminfo)))))
|
|
||||||
|
|
||||||
if test "x$TERM_LIB" = x
|
|
||||||
then
|
|
||||||
AC_MSG_ERROR(Could not find a term library, e.g. termcap or termlib!)
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SUBST(TERM_LIB)
|
AC_SUBST(TERM_LIB)
|
||||||
|
|
||||||
dnl See if compiler supports "long long" type.
|
dnl See if compiler supports "long long" type.
|
||||||
|
@ -639,6 +622,23 @@ AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
|
||||||
lose
|
lose
|
||||||
#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
|
#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
|
||||||
|
|
||||||
|
dnl Figure out which term library to use.
|
||||||
|
if test x$gdb_cv_os_cygwin = xyes; then
|
||||||
|
TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
|
||||||
|
else
|
||||||
|
TERM_LIB=
|
||||||
|
AC_CHECK_LIB(ncurses, tgetent, TERM_LIB=-lncurses,
|
||||||
|
AC_CHECK_LIB(termlib, tgetent, TERM_LIB=-ltermlib,
|
||||||
|
AC_CHECK_LIB(termcap, tgetent, TERM_LIB=-ltermcap,
|
||||||
|
AC_CHECK_LIB(curses, tgetent, TERM_LIB=-lcurses,
|
||||||
|
AC_CHECK_LIB(terminfo, tgetent, TERM_LIB=-lterminfo)))))
|
||||||
|
|
||||||
|
if test "x$TERM_LIB" = x
|
||||||
|
then
|
||||||
|
AC_MSG_ERROR(Could not find a term library, e.g. termcap or termlib!)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
WIN32LIBS=
|
WIN32LIBS=
|
||||||
WIN32LDAPP=
|
WIN32LDAPP=
|
||||||
AC_SUBST(WIN32LIBS)
|
AC_SUBST(WIN32LIBS)
|
||||||
|
|
Loading…
Add table
Reference in a new issue