3 dnl Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 dnl This program is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; version 2 of the License.
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 dnl GNU General Public License for more details.
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program; if not, write to the Free Software
16 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 dnl Usage: ENSC_SYSCALLNR(<syscall>,<default>[,<fallback>])
20 AC_DEFUN([ENSC_SYSCALLNR],
22 AC_REQUIRE([AC_PROG_CPP])
23 AC_REQUIRE([AC_PROG_EGREP])
25 AC_CACHE_CHECK([for number of syscall '$1'], [ensc_cv_value_syscall_$1],
29 #ifdef ENSC_SYSCALL_FALLBACK
30 # include ENSC_SYSCALL_FALLBACK
32 # include <asm/unistd.h>
35 ensc_syscall_tmp_nr=__NR_$1;
36 ensc_syscall_tmp_src=ENSC_MARK
41 test x"$ensc_syscall_tmp_nr" != x || \
42 eval $($CPP $CPPFLAGS -D ENSC_MARK='glibc' conftest.c | $EGREP '^ensc_syscall_tmp_(nr=[[1-9]][[0-9]]*;|src=.*)$')
43 test x"$ensc_syscall_tmp_nr" != x -o x'$3' = x || \
44 eval $($CPP $CPPFLAGS -D ENSC_MARK='fallback' -D ENSC_SYSCALL_FALLBACK='"$3"' conftest.c | $EGREP '^ensc_syscall_tmp_(nr=[[1-9]][[0-9]]*;|src=.*)$')
45 test "$ensc_syscall_tmp_nr" || {
46 ensc_syscall_tmp_nr=$2
47 ensc_syscall_tmp_src=default
50 if test x"$ensc_syscall_tmp_nr" = x; then
52 [Can not determine value of __NR_$1; please verify your glibc/kernelheaders, and/or set CPPFLAGS='-D__NR_$1=<value>' environment when calling configure.])
56 ensc_cv_value_syscall_$1="$ensc_syscall_tmp_nr/$ensc_syscall_tmp_src"
59 ensc_syscall_tmp_nr=${ensc_cv_value_syscall_$1%/*}
60 ensc_syscall_tmp_src=${ensc_cv_value_syscall_$1#*/}
62 if test x"$ensc_syscall_tmp_src" != x'glibc'; then
63 AC_DEFINE_UNQUOTED(ENSC_SYSCALL__NR_$1, $ensc_syscall_tmp_nr, [The number of the $1 syscall])