mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-18 16:39:57 +00:00
* configure.in (AC_CHECK_FUNCS): Add setlocale.
(AM_LC_MESSAGES): Add. * aclocal.m4: Regenerate. * config.in: Regenerate. * configure: Regenerate.
This commit is contained in:
parent
78a761e247
commit
443507505d
@ -1,3 +1,11 @@
|
||||
2012-04-05 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* configure.in (AC_CHECK_FUNCS): Add setlocale.
|
||||
(AM_LC_MESSAGES): Add.
|
||||
* aclocal.m4: Regenerate.
|
||||
* config.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2012-03-30 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR binutils/13925
|
||||
|
1
binutils/aclocal.m4
vendored
1
binutils/aclocal.m4
vendored
@ -995,6 +995,7 @@ m4_include([../config/depstand.m4])
|
||||
m4_include([../config/gettext-sister.m4])
|
||||
m4_include([../config/iconv.m4])
|
||||
m4_include([../config/largefile.m4])
|
||||
m4_include([../config/lcmessage.m4])
|
||||
m4_include([../config/lead-dot.m4])
|
||||
m4_include([../config/lib-ld.m4])
|
||||
m4_include([../config/lib-link.m4])
|
||||
|
@ -85,6 +85,9 @@
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if your <locale.h> file defines LC_MESSAGES. */
|
||||
#undef HAVE_LC_MESSAGES
|
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#undef HAVE_LIMITS_H
|
||||
|
||||
@ -100,6 +103,9 @@
|
||||
/* Define to 1 if you have the `sbrk' function. */
|
||||
#undef HAVE_SBRK
|
||||
|
||||
/* Define to 1 if you have the `setlocale' function. */
|
||||
#undef HAVE_SETLOCALE
|
||||
|
||||
/* Define to 1 if you have the `setmode' function. */
|
||||
#undef HAVE_SETMODE
|
||||
|
||||
|
36
binutils/configure
vendored
36
binutils/configure
vendored
@ -12681,7 +12681,7 @@ _ACEOF
|
||||
|
||||
fi
|
||||
|
||||
for ac_func in sbrk utimes setmode getc_unlocked strcoll
|
||||
for ac_func in sbrk utimes setmode getc_unlocked strcoll setlocale
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
@ -12767,6 +12767,40 @@ if test "$ac_res" != no; then :
|
||||
fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
|
||||
$as_echo_n "checking for LC_MESSAGES... " >&6; }
|
||||
if test "${am_cv_val_LC_MESSAGES+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <locale.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return LC_MESSAGES
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
am_cv_val_LC_MESSAGES=yes
|
||||
else
|
||||
am_cv_val_LC_MESSAGES=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
|
||||
$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
|
||||
if test $am_cv_val_LC_MESSAGES = yes; then
|
||||
|
||||
$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for time_t in time.h" >&5
|
||||
$as_echo_n "checking for time_t in time.h... " >&6; }
|
||||
if test "${bu_cv_decl_time_t_time_h+set}" = set; then :
|
||||
|
@ -92,7 +92,7 @@ AC_SUBST(DEMANGLER_NAME)
|
||||
AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h limits.h sys/param.h)
|
||||
AC_HEADER_SYS_WAIT
|
||||
AC_FUNC_ALLOCA
|
||||
AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
|
||||
AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll setlocale)
|
||||
AC_CHECK_FUNC([mkstemp],
|
||||
AC_DEFINE([HAVE_MKSTEMP], 1,
|
||||
[Define to 1 if you have the `mkstemp' function.]))
|
||||
@ -103,6 +103,8 @@ AC_CHECK_FUNC([mkdtemp],
|
||||
# Some systems have frexp only in -lm, not in -lc.
|
||||
AC_SEARCH_LIBS(frexp, m)
|
||||
|
||||
AM_LC_MESSAGES
|
||||
|
||||
AC_MSG_CHECKING(for time_t in time.h)
|
||||
AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
|
||||
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [time_t i;])],
|
||||
|
@ -1,3 +1,11 @@
|
||||
2012-04-05 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* configure.in (AC_CHECK_FUNCS): Add setlocale.
|
||||
(AM_LC_MESSAGES): Add.
|
||||
* aclocal.m4: Regenerate.
|
||||
* config.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2012-04-03 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* config/rx-parse.y: Make the .L optional for ADC and SBB.
|
||||
|
1
gas/aclocal.m4
vendored
1
gas/aclocal.m4
vendored
@ -994,6 +994,7 @@ m4_include([../bfd/warning.m4])
|
||||
m4_include([../config/depstand.m4])
|
||||
m4_include([../config/gettext-sister.m4])
|
||||
m4_include([../config/largefile.m4])
|
||||
m4_include([../config/lcmessage.m4])
|
||||
m4_include([../config/lead-dot.m4])
|
||||
m4_include([../config/nls.m4])
|
||||
m4_include([../config/override.m4])
|
||||
|
@ -66,6 +66,9 @@
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if your <locale.h> file defines LC_MESSAGES. */
|
||||
#undef HAVE_LC_MESSAGES
|
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#undef HAVE_LIMITS_H
|
||||
|
||||
@ -84,6 +87,9 @@
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the `setlocale' function. */
|
||||
#undef HAVE_SETLOCALE
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
|
45
gas/configure
vendored
45
gas/configure
vendored
@ -13457,6 +13457,51 @@ fi
|
||||
done
|
||||
|
||||
|
||||
for ac_func in setlocale
|
||||
do :
|
||||
ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale"
|
||||
if test "x$ac_cv_func_setlocale" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_SETLOCALE 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
|
||||
$as_echo_n "checking for LC_MESSAGES... " >&6; }
|
||||
if test "${am_cv_val_LC_MESSAGES+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <locale.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return LC_MESSAGES
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
am_cv_val_LC_MESSAGES=yes
|
||||
else
|
||||
am_cv_val_LC_MESSAGES=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
|
||||
$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
|
||||
if test $am_cv_val_LC_MESSAGES = yes; then
|
||||
|
||||
$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
# do we need the math library?
|
||||
case "${need_libm}" in
|
||||
yes)
|
||||
|
@ -657,6 +657,9 @@ AC_CHECK_FUNCS(unlink remove, break)
|
||||
# Some systems don't have sbrk().
|
||||
AC_CHECK_FUNCS(sbrk)
|
||||
|
||||
AC_CHECK_FUNCS(setlocale)
|
||||
AM_LC_MESSAGES
|
||||
|
||||
# do we need the math library?
|
||||
case "${need_libm}" in
|
||||
yes)
|
||||
|
@ -1,3 +1,11 @@
|
||||
2012-04-05 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* configure.ac (AC_CHECK_FUNCS): Add setlocale.
|
||||
(AM_LC_MESSAGES): Add.
|
||||
* aclocal.m4: Regenerate.
|
||||
* config.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2012-03-21 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* Makefile.am: Add gdb-index.cc, gdb-index.h.
|
||||
|
1
gold/aclocal.m4
vendored
1
gold/aclocal.m4
vendored
@ -982,6 +982,7 @@ AC_SUBST([am__untar])
|
||||
|
||||
m4_include([../config/depstand.m4])
|
||||
m4_include([../config/gettext-sister.m4])
|
||||
m4_include([../config/lcmessage.m4])
|
||||
m4_include([../config/lead-dot.m4])
|
||||
m4_include([../config/nls.m4])
|
||||
m4_include([../config/override.m4])
|
||||
|
@ -81,6 +81,9 @@
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if your <locale.h> file defines LC_MESSAGES. */
|
||||
#undef HAVE_LC_MESSAGES
|
||||
|
||||
/* Define to 1 if you have the `mallinfo' function. */
|
||||
#undef HAVE_MALLINFO
|
||||
|
||||
@ -114,6 +117,9 @@
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the `setlocale' function. */
|
||||
#undef HAVE_SETLOCALE
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
|
45
gold/configure
vendored
45
gold/configure
vendored
@ -7336,6 +7336,51 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
|
||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
for ac_func in setlocale
|
||||
do :
|
||||
ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale"
|
||||
if test "x$ac_cv_func_setlocale" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_SETLOCALE 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
|
||||
$as_echo_n "checking for LC_MESSAGES... " >&6; }
|
||||
if test "${am_cv_val_LC_MESSAGES+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <locale.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return LC_MESSAGES
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
am_cv_val_LC_MESSAGES=yes
|
||||
else
|
||||
am_cv_val_LC_MESSAGES=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
|
||||
$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
|
||||
if test $am_cv_val_LC_MESSAGES = yes; then
|
||||
|
||||
$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
|
||||
|
@ -536,6 +536,9 @@ fi
|
||||
|
||||
AC_LANG_POP(C++)
|
||||
|
||||
AC_CHECK_FUNCS(setlocale)
|
||||
AM_LC_MESSAGES
|
||||
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
AC_OUTPUT(Makefile testsuite/Makefile po/Makefile.in:po/Make-in)
|
||||
|
@ -1,3 +1,11 @@
|
||||
2012-04-05 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* configure.in (AC_CHECK_FUNCS): Add setlocale.
|
||||
(AM_LC_MESSAGES): Add.
|
||||
* aclocal.m4: Regenerate.
|
||||
* config.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2012-04-03 Roland McGrath <mcgrathr@google.com>
|
||||
|
||||
* configure.tgt (i[3-7]86-*-nacl*, x86_64-*-nacl*): Handle them.
|
||||
|
1
ld/aclocal.m4
vendored
1
ld/aclocal.m4
vendored
@ -995,6 +995,7 @@ m4_include([../config/acx.m4])
|
||||
m4_include([../config/depstand.m4])
|
||||
m4_include([../config/gettext-sister.m4])
|
||||
m4_include([../config/largefile.m4])
|
||||
m4_include([../config/lcmessage.m4])
|
||||
m4_include([../config/lead-dot.m4])
|
||||
m4_include([../config/nls.m4])
|
||||
m4_include([../config/override.m4])
|
||||
|
@ -67,6 +67,9 @@
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if your <locale.h> file defines LC_MESSAGES. */
|
||||
#undef HAVE_LC_MESSAGES
|
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#undef HAVE_LIMITS_H
|
||||
|
||||
@ -97,6 +100,9 @@
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the `setlocale' function. */
|
||||
#undef HAVE_SETLOCALE
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
|
40
ld/configure
vendored
40
ld/configure
vendored
@ -4713,6 +4713,40 @@ fi
|
||||
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
|
||||
$as_echo_n "checking for LC_MESSAGES... " >&6; }
|
||||
if test "${am_cv_val_LC_MESSAGES+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <locale.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return LC_MESSAGES
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
am_cv_val_LC_MESSAGES=yes
|
||||
else
|
||||
am_cv_val_LC_MESSAGES=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
|
||||
$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
|
||||
if test $am_cv_val_LC_MESSAGES = yes; then
|
||||
|
||||
$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
ac_config_headers="$ac_config_headers config.h:config.in"
|
||||
|
||||
|
||||
@ -12140,7 +12174,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12143 "configure"
|
||||
#line 12177 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12246,7 +12280,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12249 "configure"
|
||||
#line 12283 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -16182,7 +16216,7 @@ fi
|
||||
|
||||
done
|
||||
|
||||
for ac_func in glob mkstemp realpath sbrk waitpid
|
||||
for ac_func in glob mkstemp realpath sbrk setlocale waitpid
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
@ -120,6 +120,8 @@ esac
|
||||
|
||||
AM_BINUTILS_WARNINGS
|
||||
|
||||
AM_LC_MESSAGES
|
||||
|
||||
AC_CONFIG_HEADERS([config.h:config.in])
|
||||
|
||||
if test -z "$target" ; then
|
||||
@ -162,7 +164,7 @@ AC_SUBST(NATIVE_LIB_DIRS)
|
||||
|
||||
AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h elf-hints.h limits.h sys/param.h)
|
||||
AC_CHECK_HEADERS(fcntl.h sys/file.h sys/time.h sys/stat.h)
|
||||
AC_CHECK_FUNCS(glob mkstemp realpath sbrk waitpid)
|
||||
AC_CHECK_FUNCS(glob mkstemp realpath sbrk setlocale waitpid)
|
||||
AC_CHECK_FUNCS(open lseek close)
|
||||
AC_HEADER_DIRENT
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user