mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-06 13:01:42 -07:00
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:
parent
90bbde1be8
commit
4fd33e8ca2
1 changed files with 3 additions and 0 deletions
3
configure
vendored
3
configure
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue