summaryrefslogtreecommitdiff
path: root/source4/lib/util/time.m4
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/util/time.m4')
-rw-r--r--source4/lib/util/time.m49
1 files changed, 0 insertions, 9 deletions
diff --git a/source4/lib/util/time.m4 b/source4/lib/util/time.m4
deleted file mode 100644
index f61ae4cd25..0000000000
--- a/source4/lib/util/time.m4
+++ /dev/null
@@ -1,9 +0,0 @@
-AC_CACHE_CHECK([if gettimeofday takes tz argument],samba_cv_HAVE_GETTIMEOFDAY_TZ,[
-AC_TRY_RUN([
-#include <sys/time.h>
-#include <unistd.h>
-main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
- samba_cv_HAVE_GETTIMEOFDAY_TZ=yes,samba_cv_HAVE_GETTIMEOFDAY_TZ=no,samba_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
-if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
- AC_DEFINE(HAVE_GETTIMEOFDAY_TZ,1,[Whether gettimeofday() is available])
-fi