summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-08-01 22:13:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-08-01 22:13:11 -0700
commit404e5c4091c607a39d28b651063da9bdc7ebb3bb (patch)
tree0ff839db2e4d40c86918c423538ec617da24560e /configure
parent3c616876604219141ad1088e372c91928508f089 (diff)
downloadtxr-404e5c4091c607a39d28b651063da9bdc7ebb3bb.tar.gz
txr-404e5c4091c607a39d28b651063da9bdc7ebb3bb.tar.bz2
txr-404e5c4091c607a39d28b651063da9bdc7ebb3bb.zip
* configure (have_sys_time): New variable.
Added check for setitimer/getitimer which also checks for <sys/time.h>. * signal.c (sig_init): Register itimer-real, itimer-virtual, itimer-prof variables and getitimer and setitimer functions. (tv_to_usec): New static function. (getitimer_wrap, setitimer_wrap): New functions. * signal.h (getitimer_wrap, setitimer_wrap): Declared. * txr.1: Documented itimers.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure28
1 files changed, 28 insertions, 0 deletions
diff --git a/configure b/configure
index 6151327b..33c87103 100755
--- a/configure
+++ b/configure
@@ -114,6 +114,7 @@ mpi_version=1.8.6
have_quilt=
have_patch=
have_unistd=
+have_sys_time=
have_timegm=
have_syslog=
have_windows_h=
@@ -1709,6 +1710,29 @@ else
printf "no\n"
fi
+printf "Checking for setitimer/getitimer ... "
+
+cat > conftest.c <<!
+#include <sys/time.h>
+
+int main(void)
+{
+ struct itimerval itv, itv2;
+ int err;
+ err = getitimer(ITIMER_REAL, &itv);
+ err = getitimer(ITIMER_VIRTUAL, &itv);
+ err = setitimer(ITIMER_VIRTUAL, &itv, &itv2);
+ return 0;
+}
+!
+if conftest ; then
+ printf "yes\n"
+ printf "#define HAVE_ITIMER 1\n" >> config.h
+ have_sys_time=y
+else
+ printf "no\n"
+fi
+
printf "Checking for makedev ... "
cat > conftest.c <<!
@@ -1843,6 +1867,10 @@ if [ -n "$have_unistd" ] ; then
printf "#define HAVE_UNISTD_H 1\n" >> config.h
fi
+if [ -n "$have_sys_time" ] ; then
+ printf "#define HAVE_SYS_TIME 1\n" >> config.h
+fi
+
if [ -n "$have_windows_h" ] ; then
printf "#define HAVE_WINDOWS_H 1\n" >> config.h
fi