diff options
Diffstat (limited to 'lib/replace/wscript')
-rw-r--r-- | lib/replace/wscript | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 215fc32383..aa69c47316 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -317,25 +317,6 @@ removeea setea addmain=False, msg='Checking for working strptime'): conf.DEFINE('REPLACE_STRPTIME', 1) - else: - conf.CHECK_CODE(''' - const char *s = "20070414101546Z"; - char *ret; - struct tm t; - memset(&t, 0, sizeof(t)); - ret = strptime(s, "%Y%m%d%H%M%S", &t); - if (ret == NULL || t.tm_wday != 6) { - return 0; - } else { - return 1; - } - ''', - msg="Checking correct behavior of strptime", - headers = 'time.h', - execute = True, - define_ret = True, - define = 'REPLACE_STRPTIME', - ) conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False) |