|
|
|
@ -3779,6 +3779,7 @@ _ACEOF
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Determine the size of an int for struct fibnode.
|
|
|
|
|
echo "$as_me:$LINENO: checking for egrep" >&5
|
|
|
|
|
echo $ECHO_N "checking for egrep... $ECHO_C" >&6
|
|
|
|
|
if test "${ac_cv_prog_egrep+set}" = set; then
|
|
|
|
@ -4024,6 +4025,413 @@ fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "$as_me:$LINENO: checking for int" >&5
|
|
|
|
|
echo $ECHO_N "checking for int... $ECHO_C" >&6
|
|
|
|
|
if test "${ac_cv_type_int+set}" = set; then
|
|
|
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
|
|
|
else
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
if ((int *) 0)
|
|
|
|
|
return 0;
|
|
|
|
|
if (sizeof (int))
|
|
|
|
|
return 0;
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_cv_type_int=yes
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
ac_cv_type_int=no
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
fi
|
|
|
|
|
echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5
|
|
|
|
|
echo "${ECHO_T}$ac_cv_type_int" >&6
|
|
|
|
|
|
|
|
|
|
echo "$as_me:$LINENO: checking size of int" >&5
|
|
|
|
|
echo $ECHO_N "checking size of int... $ECHO_C" >&6
|
|
|
|
|
if test "${ac_cv_sizeof_int+set}" = set; then
|
|
|
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
|
|
|
else
|
|
|
|
|
if test "$ac_cv_type_int" = yes; then
|
|
|
|
|
# The cast to unsigned long works around a bug in the HP C Compiler
|
|
|
|
|
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
|
|
|
|
|
# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
|
|
|
|
|
# This bug is HP SR number 8606223364.
|
|
|
|
|
if test "$cross_compiling" = yes; then
|
|
|
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
static int test_array [1 - 2 * !(((long) (sizeof (int))) >= 0)];
|
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_lo=0 ac_mid=0
|
|
|
|
|
while :; do
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)];
|
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_hi=$ac_mid; break
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
ac_lo=`expr $ac_mid + 1`
|
|
|
|
|
if test $ac_lo -le $ac_mid; then
|
|
|
|
|
ac_lo= ac_hi=
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
ac_mid=`expr 2 '*' $ac_mid + 1`
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
done
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
static int test_array [1 - 2 * !(((long) (sizeof (int))) < 0)];
|
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_hi=-1 ac_mid=-1
|
|
|
|
|
while :; do
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
static int test_array [1 - 2 * !(((long) (sizeof (int))) >= $ac_mid)];
|
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_lo=$ac_mid; break
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
|
|
|
if test $ac_mid -le $ac_hi; then
|
|
|
|
|
ac_lo= ac_hi=
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
ac_mid=`expr 2 '*' $ac_mid`
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
done
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
ac_lo= ac_hi=
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
# Binary search between lo and hi bounds.
|
|
|
|
|
while test "x$ac_lo" != "x$ac_hi"; do
|
|
|
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)];
|
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest.$ac_objext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
|
|
|
(eval $ac_compile) 2>conftest.er1
|
|
|
|
|
ac_status=$?
|
|
|
|
|
grep -v '^ *+' conftest.er1 >conftest.err
|
|
|
|
|
rm -f conftest.er1
|
|
|
|
|
cat conftest.err >&5
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } &&
|
|
|
|
|
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; } &&
|
|
|
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_hi=$ac_mid
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
done
|
|
|
|
|
case $ac_lo in
|
|
|
|
|
?*) ac_cv_sizeof_int=$ac_lo;;
|
|
|
|
|
'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77
|
|
|
|
|
See \`config.log' for more details." >&5
|
|
|
|
|
echo "$as_me: error: cannot compute sizeof (int), 77
|
|
|
|
|
See \`config.log' for more details." >&2;}
|
|
|
|
|
{ (exit 1); exit 1; }; } ;;
|
|
|
|
|
esac
|
|
|
|
|
else
|
|
|
|
|
if test "$cross_compiling" = yes; then
|
|
|
|
|
{ { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
|
|
|
|
|
echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
|
|
|
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
|
else
|
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* confdefs.h. */
|
|
|
|
|
_ACEOF
|
|
|
|
|
cat confdefs.h >>conftest.$ac_ext
|
|
|
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
|
|
|
/* end confdefs.h. */
|
|
|
|
|
$ac_includes_default
|
|
|
|
|
long longval () { return (long) (sizeof (int)); }
|
|
|
|
|
unsigned long ulongval () { return (long) (sizeof (int)); }
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
int
|
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
|
|
|
if (! f)
|
|
|
|
|
exit (1);
|
|
|
|
|
if (((long) (sizeof (int))) < 0)
|
|
|
|
|
{
|
|
|
|
|
long i = longval ();
|
|
|
|
|
if (i != ((long) (sizeof (int))))
|
|
|
|
|
exit (1);
|
|
|
|
|
fprintf (f, "%ld\n", i);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned long i = ulongval ();
|
|
|
|
|
if (i != ((long) (sizeof (int))))
|
|
|
|
|
exit (1);
|
|
|
|
|
fprintf (f, "%lu\n", i);
|
|
|
|
|
}
|
|
|
|
|
exit (ferror (f) || fclose (f) != 0);
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_ACEOF
|
|
|
|
|
rm -f conftest$ac_exeext
|
|
|
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
|
|
|
|
(eval $ac_link) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
|
|
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
|
|
|
(eval $ac_try) 2>&5
|
|
|
|
|
ac_status=$?
|
|
|
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
|
|
|
(exit $ac_status); }; }; then
|
|
|
|
|
ac_cv_sizeof_int=`cat conftest.val`
|
|
|
|
|
else
|
|
|
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
|
|
|
echo "$as_me: failed program was:" >&5
|
|
|
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
|
|
|
|
|
|
( exit $ac_status )
|
|
|
|
|
{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77
|
|
|
|
|
See \`config.log' for more details." >&5
|
|
|
|
|
echo "$as_me: error: cannot compute sizeof (int), 77
|
|
|
|
|
See \`config.log' for more details." >&2;}
|
|
|
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
|
fi
|
|
|
|
|
rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.val
|
|
|
|
|
else
|
|
|
|
|
ac_cv_sizeof_int=0
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5
|
|
|
|
|
echo "${ECHO_T}$ac_cv_sizeof_int" >&6
|
|
|
|
|
cat >>confdefs.h <<_ACEOF
|
|
|
|
|
#define SIZEOF_INT $ac_cv_sizeof_int
|
|
|
|
|
_ACEOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "$as_me:$LINENO: checking for uintptr_t" >&5
|
|
|
|
|
echo $ECHO_N "checking for uintptr_t... $ECHO_C" >&6
|
|
|
|
|
if test "${ac_cv_type_uintptr_t+set}" = set; then
|
|
|
|
|