From a28943af2164d573d8a8c5ffa59539aa6a30f3f5 Mon Sep 17 00:00:00 2001 From: Radim Kolar <> Date: Wed, 19 Aug 2009 16:28:46 +0200 Subject: [PATCH] autodetect utime.h header --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index efb592b..b71f709 100644 --- a/SConstruct +++ b/SConstruct @@ -102,6 +102,8 @@ if conf.CheckCHeader('sys/syslimits.h'): conf.env.Append(CPPFLAGS = '-DHAVE_SYS_SYSLIMITS_H') if conf.CheckCHeader('sys/wait.h'): conf.env.Append(CPPFLAGS = '-DHAVE_SYS_WAIT_H') +if conf.CheckCHeader('utime.h'): + conf.env.Append(CPPFLAGS = '-DHAVE_UTIME_H') env.Append(CPPFLAGS = '-DSIZEOF_CHAR='+conf.sizeOf("char")) env.Append(CPPFLAGS = '-DSIZEOF_LONG='+conf.sizeOf("long")) env.Append(CPPFLAGS = '-DSIZEOF_SHORT='+conf.sizeOf("short"))