# This is a wrapper of pkg-config to simulate nspr-config/nss-config.
# Usage: nspr-nss-config nspr [--version] [--libs] [--cflags]
# or nspr-nss-config nss [--version] [--libs] [--cflags]
if test $# -eq 0; then
exit 1
fi
program_name=$1
shift
exit 1
fi
while test $# -gt 0; do
case $1 in
--version)
;;
--cflags)
;;
--libs)
;;
esac
shift
done
if test "$echo_version" = "yes"; then
# use sed to append .0 if it doesn't have micro version
fi
if test "$echo_cflags" = "yes"; then
fi
if test "$echo_libs" = "yes"; then
fi