diff options
author | Andreas Schwab <schwab@suse.de> | 2018-07-18 17:30:19 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2018-09-24 10:23:10 +0200 |
commit | 462d348caa16843594d8f23170ba7b635d2df220 (patch) | |
tree | 07f64fa4ba62cd684a76b9103a3fb281d73b920b /scripts/haveversions.awk | |
parent | f0458cf4f9ff3d870c43b624e6dccaaf657d5e83 (diff) | |
download | glibc-462d348caa16843594d8f23170ba7b635d2df220.tar.gz glibc-462d348caa16843594d8f23170ba7b635d2df220.tar.xz glibc-462d348caa16843594d8f23170ba7b635d2df220.zip |
Don't build libnsl for new ABIs
For architectures and ABIs that are added in version 2.29 or later the option --enable-obsolete-nsl is no longer available, and no libnsl compatibility library is built.
Diffstat (limited to 'scripts/haveversions.awk')
-rw-r--r-- | scripts/haveversions.awk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/haveversions.awk b/scripts/haveversions.awk new file mode 100644 index 0000000000..ce6f453761 --- /dev/null +++ b/scripts/haveversions.awk @@ -0,0 +1,23 @@ +# This script reads the contents of Versions.all and outputs a definition +# of variable have-VERSION for each symbol version VERSION which is +# defined. +# +# The have-VERSION variables can be used to check that a port supports a +# particular symbol version in makefiles due to its base version. A test +# for a compatibility symbol which was superseded with a GLIBC_2.15 +# version could be tested like this: +# +# ifdef HAVE-GLIBC_2.14 +# tests += tst-spawn4-compat +# endif # HAVE-GLIBC_2.14 +# +# (NB: GLIBC_2.14 is the symbol version that immediately precedes +# GLIBC_2.15.) + +NF == 1 && $1 != "}" { + haveversion[$1] = 1 +} +END { + for (i in haveversion) + printf "have-%s = yes\n", i +} |