Blame SOURCES/xserver-sdk-abi-requires.git

55d6a0
#!/bin/sh
55d6a0
#
55d6a0
# The X server provides capabilities of the form:
55d6a0
#
55d6a0
# Provides: xserver-abi(ansic-0) = 4
55d6a0
#
55d6a0
# for an ABI version of 0.4.  The major number is encoded into the name so
55d6a0
# that major number changes force upgrades.  If we didn't, then
55d6a0
#
55d6a0
# Requires: xserver-abi(ansic) >= 0.4
55d6a0
#
55d6a0
# would also match 1.0, which is wrong since major numbers mean an ABI break.
55d6a0
55d6a0
echo "xserver-abi($1-@MAJOR@) >= @MINOR@"