diff options
author | Roland McGrath <roland@gnu.org> | 2000-03-19 00:33:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-03-19 00:33:02 +0000 |
commit | 882688521994c2329242212a61dd2a7c44eadbc6 (patch) | |
tree | 47c0f76522ab094eb05ca38e7a82f42f34c5f266 /shlib-versions | |
parent | a5733c28449fd19f81f382160d6544e55a78aa7b (diff) | |
download | glibc-882688521994c2329242212a61dd2a7c44eadbc6.tar.gz |
* Makeconfig (soversions.mk): Convert % -> # in shlib-versions
after stripping # comments, and then run it through cpp.
This allows things like "%ifdef FOO" based on config.h settings.
* shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu*): libc=0.2.90.libio
Diffstat (limited to 'shlib-versions')
-rw-r--r-- | shlib-versions | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shlib-versions b/shlib-versions index 565d8e4c9b..abf2fd49de 100644 --- a/shlib-versions +++ b/shlib-versions @@ -5,6 +5,9 @@ # list is processed, with earlier entries taking precedence over later # entries. So loose patterns at the end of the list can give defaults. +# This file can use cpp-style conditionals starting with % instead of # +# to test the symbols defined in config.h by configure. + # Configuration Library versions # ------------- ------- -------- @@ -29,7 +32,11 @@ alpha.*-.*-linux.* libc=6.1 .*-.*-gnu-gnu* libhurduser=0.0 # libc.so.0.2 is for the Hurd alpha release 0.2. +%ifdef USE_IN_LIBIO /* experimental only! */ +.*-.*-gnu-gnu* libc=0.2.90.libio +%else .*-.*-gnu-gnu* libc=0.2 +%endif # The dynamic loader also requires different names. i.86-.*-linux.* ld=ld-linux.so.2 |