b91ce5d4d5
* bmo#1910071 - Copy original corpus to heap-allocated buffer * bmo#1910079 - Fix min ssl version for DTLS client fuzzer * bmo#1908990 - Remove OS2 support just like we did on NSPR * bmo#1910605 - clang-format NSS improvements * bmo#1902078 - Adding basicutil.h to use HexString2SECItem function * bmo#1908990 - removing dirent.c from build * bmo#1902078 - Allow handing in keymaterial to shlibsign to make the output reproducible * bmo#1908990 - remove nec4.3, sunos4, riscos and SNI references * bmo#1908990 - remove other old OS (BSDI, old HP UX, NCR, openunix, sco, unixware or reliantUnix * bmo#1908990 - remove mentions of WIN95 * bmo#1908990 - remove mentions of WIN16 * bmo#1913750 - More explicit directory naming * bmo#1913755 - Add more options to TLS server fuzz target * bmo#1913675 - Add more options to TLS client fuzz target * bmo#1835240 - Use OSS-Fuzz corpus in NSS CI * bmo#1908012 - set nssckbi version number to 2.70. * bmo#1914499 - Remove Email Trust bit from ACCVRAIZ1 root cert. * bmo#1908009 - Remove Email Trust bit from certSIGN ROOT CA. * bmo#1908006 - Add Cybertrust Japan Roots to NSS. * bmo#1908004 - Add Taiwan CA Roots to NSS. * bmo#1911354 - remove search by decoded serial in nssToken_FindCertificateByIssuerAndSerialNumber * bmo#1913132 - Fix tstclnt CI build failure * bmo#1913047 - vfyserv: ensure peer cert chain is in db for CERT_VerifyCertificateNow * bmo#1912427 - Enable all supported protocol versions for UDP * bmo#1910361 - Actually use random PSK hash type OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/mozilla-nss?expand=0&rev=457
119 lines
1.9 KiB
Bash
119 lines
1.9 KiB
Bash
#!/bin/sh
|
|
|
|
prefix=@prefix@
|
|
|
|
major_version=@MOD_MAJOR_VERSION@
|
|
minor_version=@MOD_MINOR_VERSION@
|
|
patch_version=@MOD_PATCH_VERSION@
|
|
|
|
usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: nss-util-config [OPTIONS] [LIBRARIES]
|
|
Options:
|
|
[--prefix[=DIR]]
|
|
[--exec-prefix[=DIR]]
|
|
[--includedir[=DIR]]
|
|
[--libdir[=DIR]]
|
|
[--version]
|
|
[--libs]
|
|
[--cflags]
|
|
Dynamic Libraries:
|
|
nssutil
|
|
EOF
|
|
exit $1
|
|
}
|
|
|
|
if test $# -eq 0; then
|
|
usage 1 1>&2
|
|
fi
|
|
|
|
lib_nssutil=yes
|
|
|
|
while test $# -gt 0; do
|
|
case "$1" in
|
|
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|
*) optarg= ;;
|
|
esac
|
|
|
|
case $1 in
|
|
--prefix=*)
|
|
prefix=$optarg
|
|
;;
|
|
--prefix)
|
|
echo_prefix=yes
|
|
;;
|
|
--exec-prefix=*)
|
|
exec_prefix=$optarg
|
|
;;
|
|
--exec-prefix)
|
|
echo_exec_prefix=yes
|
|
;;
|
|
--includedir=*)
|
|
includedir=$optarg
|
|
;;
|
|
--includedir)
|
|
echo_includedir=yes
|
|
;;
|
|
--libdir=*)
|
|
libdir=$optarg
|
|
;;
|
|
--libdir)
|
|
echo_libdir=yes
|
|
;;
|
|
--version)
|
|
echo ${major_version}.${minor_version}.${patch_version}
|
|
;;
|
|
--cflags)
|
|
echo_cflags=yes
|
|
;;
|
|
--libs)
|
|
echo_libs=yes
|
|
;;
|
|
*)
|
|
usage 1 1>&2
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
# Set variables that may be dependent upon other variables
|
|
if test -z "$exec_prefix"; then
|
|
exec_prefix=@exec_prefix@
|
|
fi
|
|
if test -z "$includedir"; then
|
|
includedir=@includedir@
|
|
fi
|
|
if test -z "$libdir"; then
|
|
libdir=@libdir@
|
|
fi
|
|
|
|
if test "$echo_prefix" = "yes"; then
|
|
echo $prefix
|
|
fi
|
|
|
|
if test "$echo_exec_prefix" = "yes"; then
|
|
echo $exec_prefix
|
|
fi
|
|
|
|
if test "$echo_includedir" = "yes"; then
|
|
echo $includedir
|
|
fi
|
|
|
|
if test "$echo_libdir" = "yes"; then
|
|
echo $libdir
|
|
fi
|
|
|
|
if test "$echo_cflags" = "yes"; then
|
|
echo -I$includedir
|
|
fi
|
|
|
|
if test "$echo_libs" = "yes"; then
|
|
libdirs="-Wl,-rpath-link,$libdir -L$libdir"
|
|
if test -n "$lib_nssutil"; then
|
|
libdirs="$libdirs -lnssutil${major_version}"
|
|
fi
|
|
echo $libdirs
|
|
fi
|
|
|