summaryrefslogtreecommitdiff
path: root/libguile/gen-scmconfig.c
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-04-10 01:39:02 +0200
committerLudovic Courtès <ludo@gnu.org>2013-04-10 01:39:02 +0200
commit039300a1ebee116082d50d61e6b3aeafc8a741ec (patch)
treea2fc45bf38993b7979c33c2d30ea0c9a7e5ce03b /libguile/gen-scmconfig.c
parentcfeb9130bb5d1b512279bbdce0e9211f85d359f6 (diff)
downloadguile-039300a1ebee116082d50d61e6b3aeafc8a741ec.tar.gz
build: Tell `gen-scmconfig' whether the system has `struct timespec'.
* configure.ac: Reinstate `struct timespec' check removed in commit 7e7c6f6a937005b08fffd5aeccdf992459b07137, but define `HAVE_SYSTEM_STRUCT_TIMESPEC' instead of `HAVE_STRUCT_TIMESPEC'. * libguile/gen-scmconfig.c (main): Change `HAVE_STRUCT_TIMESPEC' to `HAVE_SYSTEM_STRUCT_TIMESPEC'.
Diffstat (limited to 'libguile/gen-scmconfig.c')
-rw-r--r--libguile/gen-scmconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gen-scmconfig.c b/libguile/gen-scmconfig.c
index 9e15c622d..2f6fa6e6a 100644
--- a/libguile/gen-scmconfig.c
+++ b/libguile/gen-scmconfig.c
@@ -301,7 +301,7 @@ main (int argc, char *argv[])
pf ("\n");
pf ("/* same as POSIX \"struct timespec\" -- always defined */\n");
-#ifdef HAVE_STRUCT_TIMESPEC
+#ifdef HAVE_SYSTEM_STRUCT_TIMESPEC
pf ("typedef struct timespec scm_t_timespec;\n");
#else
pf ("/* POSIX.4 structure for a time value. This is like a `struct timeval'"