mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Regenerate
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39530 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6e18501b77
commit
cd3f29f2ea
2 changed files with 67 additions and 2 deletions
|
@ -890,6 +890,11 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#undef _FILE_OFFSET_BITS
|
||||
|
||||
|
|
64
configure
vendored
64
configure
vendored
|
@ -8767,6 +8767,51 @@ fi
|
|||
|
||||
done
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libintl_fprintf in -lintl" >&5
|
||||
$as_echo_n "checking for libintl_fprintf in -lintl... " >&6; }
|
||||
if ${ac_cv_lib_intl_libintl_fprintf+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
LIBS="-lintl $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
/* Override any GCC internal prototype to avoid an error.
|
||||
Use char because int might match the return type of a GCC
|
||||
builtin and then its argument prototype would still apply. */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
char libintl_fprintf ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return libintl_fprintf ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
ac_cv_lib_intl_libintl_fprintf=yes
|
||||
else
|
||||
ac_cv_lib_intl_libintl_fprintf=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
LIBS=$ac_check_lib_save_LIBS
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_libintl_fprintf" >&5
|
||||
$as_echo "$ac_cv_lib_intl_libintl_fprintf" >&6; }
|
||||
if test "x$ac_cv_lib_intl_libintl_fprintf" = xyes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_LIBINTL 1
|
||||
_ACEOF
|
||||
|
||||
LIBS="-lintl $LIBS"
|
||||
|
||||
fi
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dyn_string_append in -liberty" >&5
|
||||
$as_echo_n "checking for dyn_string_append in -liberty... " >&6; }
|
||||
if ${ac_cv_lib_iberty_dyn_string_append+:} false; then :
|
||||
|
@ -8858,7 +8903,21 @@ _ACEOF
|
|||
fi
|
||||
|
||||
else
|
||||
for ac_header in execinfo.h
|
||||
if test $ismingw = yes ; then
|
||||
for ac_header in dbghelp.h
|
||||
do :
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "dbghelp.h" "ac_cv_header_dbghelp_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_dbghelp_h" = xyes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_DBGHELP_H 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
else
|
||||
for ac_header in execinfo.h
|
||||
do :
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "execinfo.h" "ac_cv_header_execinfo_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_execinfo_h" = xyes; then :
|
||||
|
@ -8870,7 +8929,7 @@ fi
|
|||
|
||||
done
|
||||
|
||||
for ac_func in backtrace
|
||||
for ac_func in backtrace
|
||||
do :
|
||||
ac_fn_c_check_func "$LINENO" "backtrace" "ac_cv_func_backtrace"
|
||||
if test "x$ac_cv_func_backtrace" = xyes; then :
|
||||
|
@ -8881,6 +8940,7 @@ _ACEOF
|
|||
fi
|
||||
done
|
||||
|
||||
fi
|
||||
fi
|
||||
for ac_func in __builtin_extract_return_address
|
||||
do :
|
||||
|
|
Loading…
Reference in a new issue