Lines Matching full:true
7 # AX_COMPARE_VERSION(VERSION_A, OP, VERSION_B, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
38 # When the condition is true, shell commands ACTION-IF-TRUE are run,
40 # variable 'ax_compare_version' is always set to either 'true' or 'false'
48 # would both be true.
57 # would be true because it is only comparing two minor versions.
61 # would be true because it is only comparing the lesser number of minor
89 # Used to indicate true or false condition
112 dnl # then the first line is used to determine if the condition is true.
117 x$B" | sed 's/^ *//' | sort -r | sed "s/x${A}/false/;s/x${B}/true/;1q"`
121 x$B" | sed 's/^ *//' | sort | sed "s/x${A}/false/;s/x${B}/true/;1q"`
125 x$B" | sed 's/^ *//' | sort | sed "s/x${A}/true/;s/x${B}/false/;1q"`
129 x$B" | sed 's/^ *//' | sort -r | sed "s/x${A}/true/;s/x${B}/false/;1q"`
161 test "x$A" = "x$B" && ax_compare_version=true
164 test "x$A" != "x$B" && ax_compare_version=true
173 dnl # Execute ACTION-IF-TRUE / ACTION-IF-FALSE.
174 if test "$ax_compare_version" = "true" ; then