diff options
author | Roland McGrath <roland@gnu.org> | 2008-11-11 09:50:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2008-11-11 09:50:20 +0000 |
commit | 58a4b51ae0ad49ecdf1fcaf911022e431e6348ab (patch) | |
tree | e9a2bc16bee534a246587d9bfcf4a7a624dd2c07 | |
parent | 187f9fbc46dccb58c8d796b4f408d6cb52519011 (diff) | |
download | glibc-58a4b51ae0ad49ecdf1fcaf911022e431e6348ab.tar.gz |
* sysdeps/x86_64/configure: New file.
* configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
* configure: Regenerated.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.in | 3 |
3 files changed, 15 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2008-11-11 Roland McGrath <roland@redhat.com> + + * sysdeps/x86_64/configure: New file. + + * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo). + * configure: Regenerated. + 2008-11-03 Martin Schwidefsky <schwidefsky@de.ibm.com> * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the @@ -748,6 +748,7 @@ libc_cv_localedir libc_cv_sysconfdir libc_cv_rootsbindir libc_cv_forced_unwind +libc_cv_cpp_asm_debuginfo use_ldconfig ldd_rewrite_script elf @@ -8445,6 +8446,8 @@ fi + + if test $elf = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ELF 1 @@ -9311,6 +9314,7 @@ libc_cv_localedir!$libc_cv_localedir$ac_delim libc_cv_sysconfdir!$libc_cv_sysconfdir$ac_delim libc_cv_rootsbindir!$libc_cv_rootsbindir$ac_delim libc_cv_forced_unwind!$libc_cv_forced_unwind$ac_delim +libc_cv_cpp_asm_debuginfo!$libc_cv_cpp_asm_debuginfo$ac_delim use_ldconfig!$use_ldconfig$ac_delim ldd_rewrite_script!$ldd_rewrite_script$ac_delim elf!$elf$ac_delim @@ -9331,7 +9335,7 @@ LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 53; then + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 54; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 diff --git a/configure.in b/configure.in index 1651d38c10..4a2b54605e 100644 --- a/configure.in +++ b/configure.in @@ -2181,6 +2181,9 @@ AC_SUBST(libc_cv_sysconfdir) AC_SUBST(libc_cv_rootsbindir) AC_SUBST(libc_cv_forced_unwind) +dnl sysdeps/CPU/configure.in checks set this via arch-specific asm tests +AC_SUBST(libc_cv_cpp_asm_debuginfo) + AC_SUBST(use_ldconfig) AC_SUBST(ldd_rewrite_script) |