2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
* as.h (mempcpy): New. * configure.in: Check if mempcpy is declared. * configure: Regenerated. * config.in: Likewise.
This commit is contained in:
parent
e77942ba15
commit
0175442dfa
5 changed files with 28 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* as.h (mempcpy): New.
|
||||
|
||||
* configure.in: Check if mempcpy is declared.
|
||||
* configure: Regenerated.
|
||||
* config.in: Likewise.
|
||||
|
||||
2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/tc-i386.c (build_vex_prefix): Use VEX256.
|
||||
|
|
4
gas/as.h
4
gas/as.h
|
@ -149,6 +149,10 @@ extern void *realloc ();
|
|||
extern char *strstr ();
|
||||
#endif
|
||||
|
||||
#if !HAVE_DECL_MEMPCPY
|
||||
void *mempcpy(void *, const void *, size_t);
|
||||
#endif
|
||||
|
||||
#if !HAVE_DECL_VSNPRINTF
|
||||
extern int vsnprintf(char *, size_t, const char *, va_list);
|
||||
#endif
|
||||
|
|
|
@ -49,6 +49,10 @@
|
|||
/* Is the prototype for getopt in <unistd.h> in the expected format? */
|
||||
#undef HAVE_DECL_GETOPT
|
||||
|
||||
/* Define to 1 if you have the declaration of `mempcpy', and to 0 if you
|
||||
don't. */
|
||||
#undef HAVE_DECL_MEMPCPY
|
||||
|
||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||
don't. */
|
||||
#undef HAVE_DECL_VSNPRINTF
|
||||
|
|
11
gas/configure
vendored
11
gas/configure
vendored
|
@ -13820,6 +13820,17 @@ $as_echo "#define NEED_DECLARATION_STRSTR 1" >>confdefs.h
|
|||
fi
|
||||
|
||||
|
||||
ac_fn_c_check_decl "$LINENO" "mempcpy" "ac_cv_have_decl_mempcpy" "$ac_includes_default"
|
||||
if test "x$ac_cv_have_decl_mempcpy" = x""yes; then :
|
||||
ac_have_decl=1
|
||||
else
|
||||
ac_have_decl=0
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_DECL_MEMPCPY $ac_have_decl
|
||||
_ACEOF
|
||||
|
||||
ac_fn_c_check_decl "$LINENO" "vsnprintf" "ac_cv_have_decl_vsnprintf" "$ac_includes_default"
|
||||
if test "x$ac_cv_have_decl_vsnprintf" = x""yes; then :
|
||||
ac_have_decl=1
|
||||
|
|
|
@ -704,6 +704,7 @@ GAS_CHECK_DECL_NEEDED(malloc, f, char *(*f)(), $gas_test_headers)
|
|||
GAS_CHECK_DECL_NEEDED(sbrk, f, char *(*f)(), $gas_test_headers)
|
||||
GAS_CHECK_DECL_NEEDED(strstr, f, char *(*f)(), $gas_test_headers)
|
||||
|
||||
AC_CHECK_DECLS([mempcpy])
|
||||
AC_CHECK_DECLS([vsnprintf])
|
||||
|
||||
BFD_BINARY_FOPEN
|
||||
|
|
Loading…
Reference in a new issue