From: Harlan Stenn Date: Mon, 28 Dec 2009 09:17:49 +0000 (-0500) Subject: [Bug 1445] IRIX does not have -lcap or support linux capabilities X-Git-Tag: NTP_4_2_7P6~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76dc93ced3fd0c20d5337e55642739953a679c5a;p=thirdparty%2Fntp.git [Bug 1445] IRIX does not have -lcap or support linux capabilities bk: 4b3877bd6A1PS9ozKvOpI3yMa5kcKg --- diff --git a/ChangeLog b/ChangeLog index 64c3391d3..a7f7d354c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,8 @@ --- -* [Bug 1439] .texi generation must wait until after binary is linked. +* [Bug 1445] IRIX does not have -lcap or support linux capabilities. * [Bug 1440] Update configure.ac to support kfreebsd. +* [Bug 1439] .texi generation must wait until after binary is linked. * [Bug 1127] Properly check the return of X590_verify() - missed one. --- diff --git a/configure.ac b/configure.ac index 82205a015..42c37f7b0 100644 --- a/configure.ac +++ b/configure.ac @@ -4533,7 +4533,13 @@ AC_MSG_CHECKING([[if we have linux capabilities (libcap)]]) case "$ac_cv_header_sys_capability_h$ac_cv_header_sys_prctl_h" in yesyes) - ntp_have_linuxcaps=yes + case "$host" in + mips-sgi-irix*) + ntp_have_linuxcaps=no + ;; + *) ntp_have_linuxcaps=yes + ;; + esac ;; *) ntp_have_linuxcaps=no