diff options
author | Roland McGrath <roland@gnu.org> | 2002-10-18 01:13:06 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-10-18 01:13:06 +0000 |
commit | b9cb349fb4fcec60fe99535dbab062ffe7a7ac49 (patch) | |
tree | 10070a4ce41d889b8ec9a37efb5677f10ee7c144 /aclocal.m4 | |
parent | 1f0c4a1006d76e7115340325388b26fd50cd0cad (diff) | |
download | glibc-b9cb349fb4fcec60fe99535dbab062ffe7a7ac49.tar.gz glibc-b9cb349fb4fcec60fe99535dbab062ffe7a7ac49.tar.xz glibc-b9cb349fb4fcec60fe99535dbab062ffe7a7ac49.zip |
* aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDE([_AS_ECHO_N_PREPARE]).
Remove AC_LANG(C) call, instead just define([_AC_LANG], [C]). * elf/dl-support.c: Move _dl_tls_* variables to ... * sysdeps/generic/libc-tls.c: ... here. * elf/dl-close.c (remove_slotinfo): Take new argument. If false, allow IDX to be one past the current last slotinfo entry. (_dl_close): Pass IMAP->l_init_called for that parameter.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 4bcd3bf472..2325c73cd8 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -4,6 +4,7 @@ dnl Each sysdep configure.in does GLIBC_PROVIDES first, to avoid any dnl AC_REQUIREs or AC_BEFOREs duplicating their code. dnl define([GLIBC_PROVIDES], [dnl +AC_PROVIDE([_AS_ECHO_N_PREPARE])dnl AC_PROVIDE([AC_PROG_INSTALL])dnl AC_PROVIDE([AC_PROG_RANLIB])dnl AC_PROVIDE([AC_PROG_CC])dnl @@ -13,7 +14,7 @@ define([AS_MESSAGE_FD],6)dnl AS_INIT()dnl m4_divert_text([HEADER-COMMENT], [@%:@ This file is generated from configure.in by Autoconf. DO NOT EDIT!]) -AC_LANG(C)dnl +define([_AC_LANG], [C])dnl ])dnl dnl dnl Check for a symbol |