mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-30 11:01:45 +08:00
AC_FUNC_GETLOADAVG: don't define SVR4 on cygwin
* lib/autoconf/functions.m4 (_AC_LIBOBJ_GETLOADAVG): Only define SVR4 when -lkvm is required. * THANKS: Update. Reported by Yaakov Selkowitz. Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
bfc4d94c7d
commit
9a30240650
@ -1,3 +1,11 @@
|
||||
2010-08-24 Eric Blake <eblake@redhat.com>
|
||||
|
||||
AC_FUNC_GETLOADAVG: don't define SVR4 on cygwin
|
||||
* lib/autoconf/functions.m4 (_AC_LIBOBJ_GETLOADAVG): Only define
|
||||
SVR4 when -lkvm is required.
|
||||
* THANKS: Update.
|
||||
Reported by Yaakov Selkowitz.
|
||||
|
||||
2010-08-23 Eric Blake <eblake@redhat.com>
|
||||
|
||||
AC_HEADER_STDBOOL: avoid spurious clang failure
|
||||
|
1
THANKS
1
THANKS
@ -410,6 +410,7 @@ Werner Lemberg wl@gnu.org
|
||||
Wilfredo Sanchez wsanchez@apple.com
|
||||
William Pursell bill.pursell@gmail.com
|
||||
Wolfgang Mueller Wolfgang.Mueller@cui.unige.ch
|
||||
Yaakov Selkowitz yselkowitz@users.sourceforge.net
|
||||
Yavor Doganov yavor@gnu.org
|
||||
Yury Puhalsky pooh@cryptopro.ru
|
||||
Zack Weinberg zack@codesourcery.com
|
||||
|
@ -672,7 +672,8 @@ AC_CHECK_FUNCS(setlocale)
|
||||
# We cannot check for <dwarf.h>, because Solaris 2 does not use dwarf (it
|
||||
# uses stabs), but it is still SVR4. We cannot check for <elf.h> because
|
||||
# Irix 4.0.5F has the header but not the library.
|
||||
if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes; then
|
||||
if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes \
|
||||
&& test "$ac_cv_lib_kvm_kvm_open" = yes; then
|
||||
ac_have_func=yes
|
||||
AC_DEFINE(SVR4, 1, [Define to 1 on System V Release 4.])
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user