Consider the /usr/include/firebird/ path for fb

For example on the Fedora 31 the path for the firebird include ibase.h is /usr/include/firebird/ibase.
This patch should also consider the firebird subdirectory inside the regular include directory.
This commit is contained in:
xambroz 2020-03-03 17:37:12 +01:00 committed by GitHub
parent 90bbde1be8
commit 4fd33e8ca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
configure vendored
View file

@ -627,6 +627,9 @@ for i in $INCDIRS ; do
if [ -f "$i/ibase.h" ]; then if [ -f "$i/ibase.h" ]; then
FIREBIRD_IPATH="$i" FIREBIRD_IPATH="$i"
fi fi
if [ -f "$i/firebird/ibase.h" ]; then
FIREBIRD_IPATH="$i/firebird"
fi
fi fi
done done
if [ "X" != "X$DEBUG" ]; then if [ "X" != "X$DEBUG" ]; then