From: Todd C. Miller Date: Thu, 30 Sep 2004 23:00:25 +0000 (+0000) Subject: Also look for systrace.h in /usr/include/linux X-Git-Tag: SUDO_1_7_0~907 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f338fd773e2d8aa6187377e0e6213eb0548e4fa;p=sudo Also look for systrace.h in /usr/include/linux --- diff --git a/configure b/configure index 47d54630f..a89e119f4 100755 --- a/configure +++ b/configure @@ -30226,7 +30226,8 @@ _ACEOF if test "$with_systrace" = "yes"; then -for ac_header in dev/systrace.h sys/systrace.h + +for ac_header in dev/systrace.h sys/systrace.h linux/systrace.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_header" >&5 diff --git a/configure.in b/configure.in index 238dc8c9e..2d88b3865 100644 --- a/configure.in +++ b/configure.in @@ -1782,7 +1782,7 @@ dnl if test -n "$with_systrace"; then AC_DEFINE(HAVE_SYSTRACE) if test "$with_systrace" = "yes"; then - AC_CHECK_HEADERS(dev/systrace.h sys/systrace.h, [break], [], [#include ]) + AC_CHECK_HEADERS(dev/systrace.h sys/systrace.h linux/systrace.h, [break], [], [#include ]) else CPPFLAGS="$CPPFLAGS -I${with_systrace}" fi