From: Stefan Metzmacher Date: Wed, 13 Jun 2012 10:41:57 +0000 (+0200) Subject: Revert "replace: use replace for non 'samba' compliant strptime" X-Git-Tag: samba-4.0.0beta2~184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3a3c0d7640f8fcefde901b7e35a2f22e7d3a033;p=thirdparty%2Fsamba.git Revert "replace: use replace for non 'samba' compliant strptime" This reverts commit 4ea7d4694a8353fc55ecd12cb09b9c91ffde7b3f. A better fix will follow. metze --- diff --git a/lib/replace/wscript b/lib/replace/wscript index 215fc32383e..aa69c473166 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)