diff options
author | sonmi%netscape.com <devnull@localhost> | 2001-06-13 00:10:53 +0000 |
---|---|---|
committer | sonmi%netscape.com <devnull@localhost> | 2001-06-13 00:10:53 +0000 |
commit | aa2ec9f4d72025fbfb6eef6628435a92df39ce5b (patch) | |
tree | 91374abda3889ae238d58f9aacd145d6c469ec20 | |
parent | c0cc291b11b8b5eca2309552ac1dbeecfd02ea6c (diff) | |
download | nss-hg-aa2ec9f4d72025fbfb6eef6628435a92df39ce5b.tar.gz |
tool for checking the version strings on Unix. needs work.
-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 000000000..79a128585 --- /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 + |