diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /security/nss/tests/dll_version.sh | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/nss/tests/dll_version.sh')
-rwxr-xr-x | security/nss/tests/dll_version.sh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/security/nss/tests/dll_version.sh b/security/nss/tests/dll_version.sh new file mode 100755 index 0000000000..79a1285853 --- /dev/null +++ b/security/nss/tests/dll_version.sh @@ -0,0 +1,50 @@ +#!/bin/sh + +# version controll for DLLs +# ToDo: make version parameter or find version from first occurance of 3.x +# make the 3 a variable..., include the header + +#OS=`uname -s` +#DSO_SUFFIX=so +#if [ "$OS" = "HP-UX" ]; then + #DSO_SUFFIX=sl +#fi +#what libnss3.$DSO_SUFFIX | grep NSS +#what libsmime3.$DSO_SUFFIX | grep NSS +#what libssl3.$DSO_SUFFIX | grep NSS +#ident libnss3.$DSO_SUFFIX | grep NSS +#ident libsmime3.$DSO_SUFFIX | grep NSS +#ident libssl3.$DSO_SUFFIX | grep NSS + +for w in `find . -name "libnss3.s[ol]" ; find . -name "libsmime3.s[ol]"; find . -name "libssl3.s[ol]"` +do + NOWHAT=FALSE + NOIDENT=FALSE + echo $w + what $w | grep NSS || NOWHAT=TRUE + ident $w | grep NSS || NOIDENT=TRUE + if [ $NOWHAT = TRUE ] + then + echo "ERROR what $w does not contain NSS" + fi + if [ $NOIDENT = TRUE ] + then + echo "ERROR ident $w does not contain NSS" + fi +done +#for w in `find . -name "libnss3.s[ol]" ; find . -name "libsmime3.s[ol]"; find . +#-name "libssl3.s[ol]"` +#do + #NOWHAT=FALSE + #NOIDENT=FALSE + #echo $w + #what $w | grep NSS || NOWHAT=TRUE + #ident $w | grep NSS || NOIDENT=TRUE + #if [ $NOWHAT = TRUE -a $NOIDENT = TRUE ] + #then + #echo "WARNING what and ident $w does not contain NSS" + #strings $w | grep NSS | grep '3.2' || echo "ERROR strings does +#not either..." + #fi +#done + |