2005-05-09 Kelley Cook <kcook@gcc.gnu.org>

* configure.in: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
	* acinclude.m4: Don't sinclude accross.m4.
	* config.in, configure, Makefile.in, doc/Makefile.in: Regenerate.
This commit is contained in:
Kelley Cook 2005-05-10 01:27:54 +00:00
parent baf6e97fe3
commit 2ba49b590d
7 changed files with 1092 additions and 60 deletions

View file

@ -1,3 +1,9 @@
2005-05-09 Kelley Cook <kcook@gcc.gnu.org>
* configure.in: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
* acinclude.m4: Don't sinclude accross.m4.
* config.in, configure, Makefile.in, doc/Makefile.in: Regenerate.
2005-05-09 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c (struct ppc64_elf_obj_tdata): Add has_dotsym.

View file

@ -50,7 +50,6 @@ DIST_COMMON = $(srcdir)/../config.guess $(srcdir)/../config.sub README \
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/../config/accross.m4 \
$(top_srcdir)/../config/acx.m4 $(top_srcdir)/../bfd/bfd.m4 \
$(top_srcdir)/../bfd/warning.m4 $(top_srcdir)/../libtool.m4 \
$(top_srcdir)/../gettext.m4 $(top_srcdir)/configure.in

View file

@ -1,4 +1,3 @@
sinclude(../config/accross.m4)
sinclude(../config/acx.m4)
sinclude(../bfd/bfd.m4)
sinclude(../bfd/warning.m4)

View file

@ -302,13 +302,13 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* The number of bytes in type long */
/* The size of a `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The number of bytes in type long long */
/* The size of a `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The number of bytes in type off_t */
/* The size of a `off_t', as computed by sizeof. */
#undef SIZEOF_OFF_T
/* If using the C implementation of alloca, define if you know the

1131
bfd/configure vendored

File diff suppressed because it is too large Load diff

View file

@ -93,10 +93,10 @@ AC_CACHE_VAL(bfd_cv_has_long_long,
AC_MSG_RESULT($bfd_cv_has_long_long)
if test $bfd_cv_has_long_long = yes; then
BFD_HOST_LONG_LONG=1
AC_COMPILE_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(long long)
fi
AC_COMPILE_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long)
if test "x${ac_cv_sizeof_long}" = "x8"; then
host64=true
BFD_HOST_64BIT_LONG=1
@ -907,7 +907,7 @@ AC_SUBST(bfd_default_target_size)
# upward compatible.
AC_CHECK_FUNCS(ftello ftello64 fseeko fseeko64)
if test x"$ac_cv_func_ftello" = xyes -a x"$ac_cv_func_fseeko" = xyes; then
AC_COMPILE_CHECK_SIZEOF(off_t)
AC_CHECK_SIZEOF(off_t)
fi
AC_MSG_CHECKING([file_ptr type])
bfd_file_ptr="long"

View file

@ -40,7 +40,6 @@ subdir = doc
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/../config/accross.m4 \
$(top_srcdir)/../config/acx.m4 $(top_srcdir)/../bfd/bfd.m4 \
$(top_srcdir)/../bfd/warning.m4 $(top_srcdir)/../libtool.m4 \
$(top_srcdir)/../gettext.m4 $(top_srcdir)/configure.in