Search for libutil-freebsd as alternative to libutil

GDB needs kinfo_getvmmap() on GNU/kFreeBSD systems same as on
pure FreeBSD.  However on these systems the FreeBSD version of libutil
is renamed to libutil-freebsd.

2016-05-23  Jon Boden  <jon@ubuntubsd.org>

	* configure.ac: Search for libutil-freebsd as alternative to libutil.
	* configure: Re-generated.
This commit is contained in:
Jon Boden 2016-05-23 08:46:33 +01:00 committed by Yao Qi
parent f10e0aef4f
commit 37773e7803
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2016-05-23 Jon Boden <jon@ubuntubsd.org> (tiny change)
* configure.ac: Search for libutil-freebsd as alternative to libutil.
* configure: Re-generated.
2016-05-19 Andreas Schwab <schwab@suse.de>
* ia64-libunwind-tdep.c (libunwind_descr): Add cast from void *.

3
gdb/configure vendored
View file

@ -7050,6 +7050,7 @@ fi
# On FreeBSD we may need libutil for kinfo_getvmmap (used by fbsd-nat.c).
# On GNU/kFreeBSD systems, FreeBSD libutil is renamed to libutil-freebsd.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing kinfo_getvmmap" >&5
$as_echo_n "checking for library containing kinfo_getvmmap... " >&6; }
if test "${ac_cv_search_kinfo_getvmmap+set}" = set; then :
@ -7074,7 +7075,7 @@ return kinfo_getvmmap ();
return 0;
}
_ACEOF
for ac_lib in '' util; do
for ac_lib in '' util util-freebsd; do
if test -z "$ac_lib"; then
ac_res="none required"
else

View file

@ -535,7 +535,8 @@ AC_SEARCH_LIBS(socketpair, socket)
AM_ZLIB
# On FreeBSD we may need libutil for kinfo_getvmmap (used by fbsd-nat.c).
AC_SEARCH_LIBS(kinfo_getvmmap, util,
# On GNU/kFreeBSD systems, FreeBSD libutil is renamed to libutil-freebsd.
AC_SEARCH_LIBS(kinfo_getvmmap, util util-freebsd,
[AC_DEFINE(HAVE_KINFO_GETVMMAP, 1,
[Define to 1 if your system has the kinfo_getvmmap function. ])])