diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-09-16 17:45:03 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-09-16 17:45:03 +0000 |
commit | af296fcdaba31c3a8062fec0b4198443bb43bd47 (patch) | |
tree | c1d1bb13ff470bf534a077541d21262b0ab82901 /configure | |
parent | d330b980e9ee2349492087a279a9c7bf294f6b47 (diff) | |
download | glibc-af296fcdaba31c3a8062fec0b4198443bb43bd47.zip glibc-af296fcdaba31c3a8062fec0b4198443bb43bd47.tar.gz glibc-af296fcdaba31c3a8062fec0b4198443bb43bd47.tar.bz2 |
Remove bitrotten --enable-oldest-abi (bug 6652).
This patch removes the --enable-oldest-abi configure option, which has
long been bitrotten (as reported in bug 6652). The principle of
removing this option was agreed in the thread starting at
<https://sourceware.org/ml/libc-alpha/2013-07/msg00174.html>.
Tested for x86_64 and x86 that the installed shared libraries other
than libc.so are unchanged by this patch and that libc.so disassembly
and symbol versions are unchanged (debug info changes because of
changed line numbers in csu/version.c).
[BZ #6652]
* Makeconfig (soversions-default-setname): Remove variable.
($(common-objpfx)soversions.i): Don't pass default_setname to
soversions.awk.
* Makerules ($(common-objpfx)abi-versions.h): Don't pass
oldest_abi to abi-versions.awk.
* config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
* config.make.in (oldest-abi): Remove variable.
* configure.ac (--enable-oldest-abi): Remove configure option.
* configure: Regenerated.
* csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
text.
* scripts/abi-versions.awk: Do not handle oldest_abi variable.
* scripts/soversions.awk: Do not handle default_setname variable.
* sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
variable.
* sysdeps/mach/hurd/configure: Regenerated.
* sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
variable.
* sysdeps/unix/sysv/linux/configure: Regenerated.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -653,7 +653,6 @@ force_install bindnow enable_lock_elision hardcoded_path_in_tests -oldest_abi use_default_link sysheaders with_fp @@ -737,7 +736,6 @@ with_default_link enable_sanity_checks enable_shared enable_profile -enable_oldest_abi enable_hardcoded_path_in_tests enable_stackguard_randomization enable_lock_elision @@ -1390,8 +1388,6 @@ Optional Features: in special situations) [default=yes] --enable-shared build shared library [default=yes if GNU ld] --enable-profile build profiled library [default=no] - --enable-oldest-abi=ABI configure the oldest ABI supported [e.g. 2.2] - [default=glibc default] --enable-hardcoded-path-in-tests hardcode newly built glibc path in tests [default=no] @@ -3432,23 +3428,6 @@ else fi -# Check whether --enable-oldest-abi was given. -if test "${enable_oldest_abi+set}" = set; then : - enableval=$enable_oldest_abi; oldest_abi=$enableval -else - oldest_abi=no -fi - -if test "$oldest_abi" = yes || test "$oldest_abi" = no; then - oldest_abi=default -else - cat >>confdefs.h <<_ACEOF -#define GLIBC_OLDEST_ABI "$oldest_abi" -_ACEOF - -fi - - # Check whether --enable-hardcoded-path-in-tests was given. if test "${enable_hardcoded_path_in_tests+set}" = set; then : enableval=$enable_hardcoded_path_in_tests; hardcoded_path_in_tests=$enableval |