configure: correctly check for media BRs
commitb0403890bcda05697160956e48619da4341d5874
authorStefan Becker <chemobejk@gmail.com>
Sat, 11 Jun 2011 19:31:38 +0000 (11 22:31 +0300)
committerStefan Becker <chemobejk@gmail.com>
Sat, 11 Jun 2011 19:31:38 +0000 (11 22:31 +0300)
treea475c3907ac746b0019358a9d70a253d2b2ffeb5
parent95ef2908cb4e6a6f545a49ed300dc2d2a4f0d984
configure: correctly check for media BRs

Using PKG_CHECK_MODULES(XXX) more than once for the same XXX always succeeds
after the first test passed, even if the further checks have stricter tests.

That's why first successfully testing for

        (PURPLE, purple > 2.4.0)

then the second test

        (PURPLE, purple >= 2.8.0)

will always be TRUE and thus be a no-op.

Use a fake name for the SIPE media build requirements recheck instead.
configure.ac