mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-29 13:28:14 +00:00
[master]
When checking to see if atf is available also check the lib64 directory. [rt32206]
This commit is contained in:
parent
bf1b1d992d
commit
c5bc8b1a37
5
RELNOTES
5
RELNOTES
@ -58,6 +58,11 @@ work on other platforms. Please report any problems and suggested fixes to
|
|||||||
server code no longer use MAX_PATH constant that is not defined on
|
server code no longer use MAX_PATH constant that is not defined on
|
||||||
GNU/Hurd systems. [ISC-Bugs 25979]
|
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
|
Changes since 4.2.4
|
||||||
|
|
||||||
- Correct code to calculate timing values in client to compare
|
- Correct code to calculate timing values in client to compare
|
||||||
|
@ -193,6 +193,8 @@ if test "$atf_path" != "no" ; then
|
|||||||
if test "$atf_path" != "yes" ; then
|
if test "$atf_path" != "yes" ; then
|
||||||
if test -f $atf_path/lib/pkgconfig/atf-c.pc ; then
|
if test -f $atf_path/lib/pkgconfig/atf-c.pc ; then
|
||||||
atf_pcp=$atf_path/lib/pkgconfig
|
atf_pcp=$atf_path/lib/pkgconfig
|
||||||
|
elif test -f $atf_path/lib64/pkgconfig/atf-c.pc ; then
|
||||||
|
atf_pcp=$atf_path/lib64/pkgconfig
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# Not specified, try some common paths
|
# Not specified, try some common paths
|
||||||
@ -201,6 +203,8 @@ if test "$atf_path" != "no" ; then
|
|||||||
do
|
do
|
||||||
if test -f $d/lib/pkgconfig/atf-c.pc ; then
|
if test -f $d/lib/pkgconfig/atf-c.pc ; then
|
||||||
atf_pcp=$d/lib/pkgconfig
|
atf_pcp=$d/lib/pkgconfig
|
||||||
|
elif test -f $d/lib64/pkgconfig/atf-c.pc ; then
|
||||||
|
atf_pcp=$d/lib64/pkgconfig
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user