pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1997-09-16
1997-09-16 01:22:44 by Henrik Grubbström (Grubba) <grubba@grubba.org>
221347c84fdf478727d1a5f5b36473e77d6a5a38 (
37
lines) (+
20
/-
17
)
[
Show
|
Annotate
]
Branch:
7.9
Improved getrusage_procfs test.
Rev: src/configure.in:1.115
1:
-
AC_REVISION("$Id: configure.in,v 1.
114
1997/09/
15
22:
47:10
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
115
1997/09/
16
01:
22:
44
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
481:
AC_CHECK_HEADERS(sys/rusage.h time.h sys/time.h sys/types.h unistd.h stdlib.h \ memory.h values.h string.h strings.h fcntl.h sys/filio.h sys/sockio.h crypt.h \ locale.h sys/resource.h sys/select.h sys/mman.h setjmp.h limits.h pthread.h \
-
thread.h dlfcn.h dld.h sys/times.h sched.h)
+
thread.h dlfcn.h dld.h sys/times.h sched.h
sys/procfs.h
)
AC_SIZEOF_TYPE(char *) AC_SIZEOF_TYPE(long)
1364:
########################################################################
+
if test "$ac_cv_header_sys_procfs_h" = "yes"; then
AC_MSG_CHECKING(getrusage() through procfs)
-
AC_CACHE_VAL(pike_cv_getrusage_procfs,
-
[
+
AC_CACHE_VAL(pike_cv_getrusage_procfs,
[
AC_TRY_COMPILE([ #include <sys/procfs.h> #include <sys/fcntl.h>
1381:
pike_cv_getrusage_procfs=yes , pike_cv_getrusage_procfs=no
-
)])
+
)
+
])
+
fi
if test "$pike_cv_getrusage_procfs" = yes; then AC_MSG_RESULT(yes)
1392:
#############################################################################
-
AC_MSG_CHECKING(
checking
for volatile)
+
AC_MSG_CHECKING(for volatile)
AC_CACHE_VAL(pike_cv_volatile, [ AC_TRY_COMPILE([],[ volatile int foo=1;], pike_cv_volatile=yes,pike_cv_volatile=no)