Add missing OpenAL dependency to its .pc file

This commit is contained in:
BtbN 2022-10-29 19:19:28 +02:00
parent 7028cb01c4
commit 6f44be6038

View file

@ -19,4 +19,8 @@ ffbuild_dockerbuild() {
make install
echo "Libs.private: -lstdc++" >> "$FFBUILD_PREFIX"/lib/pkgconfig/openal.pc
if [[ $TARGET == win* ]]; then
echo "Libs.private: -lole32" >> "$FFBUILD_PREFIX"/lib/pkgconfig/openal.pc
fi
}