2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am (INCLUDES): Remove -D_GNU_SOURCE. * Makefile.in: Regenerated. * configure.in (AC_GNU_SOURCE): Added. (AC_PROG_CC): Moved before AC_GNU_SOURCE. (AC_CHECK_DECLS): Add stpcpy. * configure: Regenerated. * config.in: Likewise. * i386-dis.c: Include "sysdep.h" before "dis-asm.h". * sysdep.h (stpcpy): New.
This commit is contained in:
parent
a1438fce30
commit
dabbade67e
8 changed files with 856 additions and 751 deletions
|
@ -1,3 +1,18 @@
|
|||
2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* Makefile.am (INCLUDES): Remove -D_GNU_SOURCE.
|
||||
* Makefile.in: Regenerated.
|
||||
|
||||
* configure.in (AC_GNU_SOURCE): Added.
|
||||
(AC_PROG_CC): Moved before AC_GNU_SOURCE.
|
||||
(AC_CHECK_DECLS): Add stpcpy.
|
||||
* configure: Regenerated.
|
||||
* config.in: Likewise.
|
||||
|
||||
* i386-dis.c: Include "sysdep.h" before "dis-asm.h".
|
||||
|
||||
* sysdep.h (stpcpy): New.
|
||||
|
||||
2007-08-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* i386-dis.c (INVLPG_Fixup): Removed.
|
||||
|
|
|
@ -356,7 +356,7 @@ OFILES = @BFD_MACHINES@
|
|||
# that's where the version number in Makefile comes from.
|
||||
CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
|
||||
|
||||
INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
|
||||
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
|
||||
|
||||
disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
|
||||
|
|
|
@ -583,7 +583,7 @@ OFILES = @BFD_MACHINES@
|
|||
# We should reconfigure whenever bfd/configure.in changes, because
|
||||
# that's where the version number in Makefile comes from.
|
||||
CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
|
||||
INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
|
||||
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
|
||||
libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
|
||||
# It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
|
||||
# Unfortunately this causes libtool to add -L$(libdir), referring to the
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
don't. */
|
||||
#undef HAVE_DECL_BASENAME
|
||||
|
||||
/* Define to 1 if you have the declaration of `stpcpy', and to 0 if you don't.
|
||||
*/
|
||||
#undef HAVE_DECL_STPCPY
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
|
@ -65,3 +69,8 @@
|
|||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Enable GNU extensions on systems that have them. */
|
||||
#ifndef _GNU_SOURCE
|
||||
# undef _GNU_SOURCE
|
||||
#endif
|
||||
|
|
1566
opcodes/configure
vendored
1566
opcodes/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -17,6 +17,9 @@ changequote([,])dnl
|
|||
|
||||
AM_INIT_AUTOMAKE(opcodes, ${BFD_VERSION})
|
||||
|
||||
AC_PROG_CC
|
||||
AC_GNU_SOURCE
|
||||
|
||||
dnl These must be called before AM_PROG_LIBTOOL, because it may want
|
||||
dnl to call AC_CHECK_PROG.
|
||||
AC_CHECK_TOOL(AR, ar)
|
||||
|
@ -58,8 +61,6 @@ AC_EXEEXT
|
|||
|
||||
# host-specific stuff:
|
||||
|
||||
AC_PROG_CC
|
||||
|
||||
ALL_LINGUAS="fr sv tr es da de id pt_BR ro nl fi vi ga zh_CN"
|
||||
ZW_GNU_GETTEXT_SISTER_DIR
|
||||
AM_PO_SUBDIRS
|
||||
|
@ -73,7 +74,7 @@ AC_PROG_INSTALL
|
|||
|
||||
AC_CHECK_HEADERS(string.h strings.h stdlib.h)
|
||||
|
||||
AC_CHECK_DECLS(basename)
|
||||
AC_CHECK_DECLS([basename, stpcpy])
|
||||
|
||||
cgen_maint=no
|
||||
cgendir='$(srcdir)/../cgen'
|
||||
|
|
|
@ -33,8 +33,8 @@
|
|||
and the small letter tells about the operand size. Refer to
|
||||
the Intel manual for details. */
|
||||
|
||||
#include "dis-asm.h"
|
||||
#include "sysdep.h"
|
||||
#include "dis-asm.h"
|
||||
#include "opintl.h"
|
||||
#include "opcode/i386.h"
|
||||
|
||||
|
|
|
@ -42,3 +42,7 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !HAVE_DECL_STPCPY
|
||||
extern char *stpcpy (char *__dest, const char *__src);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue