mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
libreplace: move gettimeofday TZ arg check here
This commit is contained in:
parent
c2e2be51a6
commit
e8662248c8
@ -11,6 +11,16 @@ AC_CHECK_HEADERS(sys/time.h utime.h)
|
||||
AC_HEADER_TIME
|
||||
AC_CHECK_FUNCS(utime utimes)
|
||||
|
||||
AC_CACHE_CHECK([if gettimeofday takes TZ argument],libreplace_cv_HAVE_GETTIMEOFDAY_TZ,[
|
||||
AC_TRY_RUN([
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
|
||||
libreplace_cv_HAVE_GETTIMEOFDAY_TZ=yes,libreplace_cv_HAVE_GETTIMEOFDAY_TZ=no,libreplace_cv_HAVE_GETTIMEOFDAY_TZ=yes)])
|
||||
if test x"$libreplace_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
|
||||
AC_DEFINE(HAVE_GETTIMEOFDAY_TZ,1,[Whether gettimeofday() is available])
|
||||
fi
|
||||
|
||||
# wait
|
||||
AC_HEADER_SYS_WAIT
|
||||
|
||||
|
@ -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=yes)])
|
||||
if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
|
||||
AC_DEFINE(HAVE_GETTIMEOFDAY_TZ,1,[Whether gettimeofday() is available])
|
||||
fi
|
@ -121,7 +121,6 @@ fi
|
||||
|
||||
m4_include(../lib/socket_wrapper/config.m4)
|
||||
m4_include(../lib/nss_wrapper/config.m4)
|
||||
m4_include(../lib/util/time.m4)
|
||||
|
||||
m4_include(m4/swat.m4)
|
||||
|
||||
|
@ -20,7 +20,6 @@ m4_include(../lib/util/util.m4)
|
||||
m4_include(../lib/util/fsusage.m4)
|
||||
m4_include(../lib/util/xattr.m4)
|
||||
m4_include(../lib/util/capability.m4)
|
||||
m4_include(../lib/util/time.m4)
|
||||
m4_include(../lib/popt/samba.m4)
|
||||
m4_include(../lib/util/charset/config.m4)
|
||||
m4_include(lib/socket/config.m4)
|
||||
|
Loading…
x
Reference in New Issue
Block a user