1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
dnl @synopsis AG_CHECK_UNAME_SYSCALL
dnl
dnl Check that the POSIX compliant uname(2) call works properly.
dnl
dnl @category C
dnl @author Bruce Korb <bkorb@gnu.org>
dnl @version 2001-12-01
dnl @license GPLWithACException
dnl DO NOT EDIT THIS FILE (ag_check_uname_syscall.m4)
dnl
dnl It has been AutoGen-ed Saturday December 1, 2001 at 09:21:28 PM PST
dnl From the definitions bkorb.def
dnl and the template file conftest.tpl
dnl See: http://autogen.sf.net for a description of the AutoGen project
AC_DEFUN([AG_CHECK_UNAME_SYSCALL],[
AC_MSG_CHECKING([whether uname(2) is POSIX])
AC_CACHE_VAL([ag_cv_uname_syscall],[
AC_TRY_RUN([#include <sys/utsname.h>
int main() { struct utsname unm;
return uname( &unm ); }],[ag_cv_uname_syscall=yes],[ag_cv_uname_syscall=no],[ag_cv_uname_syscall=no]
) # end of TRY_RUN]) # end of CACHE_VAL
AC_MSG_RESULT([$ag_cv_uname_syscall])
if test x$ag_cv_uname_syscall = xyes
then
AC_DEFINE(HAVE_UNAME_SYSCALL, 1,
[Define this if uname(2) is POSIX])
fi
]) # end of AC_DEFUN of AG_CHECK_UNAME_SYSCALL
|