Lines Matching refs:version
5 version="@PACKAGE_VERSION@"
23 only one installation query may be made at a time. The version queries and
25 version queries are always combined with logical "and" semantics, and only the
31 gmock-config --min-version=1.0 || echo "Insufficient Google Mock version."
58 --version the version of the Google Mock installation
61 --min-version=VERSION return 0 if the version is at least VERSION
62 --exact-version=VERSION return 0 if the version is exactly VERSION
63 --max-version=VERSION return 0 if the version is at most VERSION
74 # This function bounds our version with a min and a max. It uses some clever
79 # unadorned, so "v1.0" will *not* work. The minimum version must be in $1, and
82 # continuing to maintain our own shell version.
85 major_version=${version%%.*}
88 if test "${version#*.}" != "${version}"; then
89 minor_version=${version#*.}
92 if test "${version#*.*.}" != "${version}"; then
93 point_version=${version#*.*.}
160 --prefix|--exec-prefix|--libdir|--includedir|--version)
169 --min-version=*)
171 min_version=${1#--min-version=}
173 --max-version=*)
175 max_version=${1#--max-version=}
177 --exact-version=*)
179 exact_version=${1#--exact-version=}
253 elif ! "${gtest_config}" "--exact-version=@GTEST_VERSION@"; then
254 echo "The Google Test found is not the same version as Google Mock was " \
272 version) echo $version; exit 0;;
277 # Do a version check if requested.