4928c07
#!/bin/sh
4928c07
#
4928c07
# Extract ABI versions from the .pc file.  Filter out xserver modules.
4928c07
#
4928c07
# Copyright 2009 Red Hat, Inc.
4928c07
# License: MIT
4928c07
4928c07
abis=`grep ^abi "$1" | tr '_=.' '-- '`
4928c07
echo $abis | while read major minor; do
4928c07
    echo "xserver($major) = $minor"
4928c07
done
4928c07
4928c07
shift
4928c07
4928c07
# exec "$@" | grep -v '\.so$'