From 4fd33e8ca277e02ff2c3c1cc8ecd6075a98fafa1 Mon Sep 17 00:00:00 2001 From: xambroz Date: Tue, 3 Mar 2020 17:37:12 +0100 Subject: [PATCH] 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. --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 9cec404..4c4079d 100755 --- a/configure +++ b/configure @@ -627,6 +627,9 @@ for i in $INCDIRS ; do if [ -f "$i/ibase.h" ]; then FIREBIRD_IPATH="$i" fi + if [ -f "$i/firebird/ibase.h" ]; then + FIREBIRD_IPATH="$i/firebird" + fi fi done if [ "X" != "X$DEBUG" ]; then