When checking to see if atf is available also check the
lib64 directory.
[rt32206]
server code no longer use MAX_PATH constant that is not defined on
GNU/Hurd systems. [ISC-Bugs 25979]
+ Changes since 4.2.5
+
+- Add check for 64-bit package for atf.
+ [ISC-BUGS #32206]
+
Changes since 4.2.4
- Correct code to calculate timing values in client to compare
if test "$atf_path" != "yes" ; then
if test -f $atf_path/lib/pkgconfig/atf-c.pc ; then
atf_pcp=$atf_path/lib/pkgconfig
+ elif test -f $atf_path/lib64/pkgconfig/atf-c.pc ; then
+ atf_pcp=$atf_path/lib64/pkgconfig
fi
else
# Not specified, try some common paths
do
if test -f $d/lib/pkgconfig/atf-c.pc ; then
atf_pcp=$d/lib/pkgconfig
+ elif test -f $d/lib64/pkgconfig/atf-c.pc ; then
+ atf_pcp=$d/lib64/pkgconfig
fi
done
fi