diff options
author | Kai Blin <kai@samba.org> | 2010-03-21 12:12:54 +0100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:02 +1000 |
commit | da3902745ed9b96b7ac3327ea31d8e111554924d (patch) | |
tree | d19211034a71c05a1bb7e357d13c20a4bf45fd97 | |
parent | 0e2afc2c533cbf5ca258eea82650da627ab78730 (diff) | |
download | samba-da3902745ed9b96b7ac3327ea31d8e111554924d.tar.gz samba-da3902745ed9b96b7ac3327ea31d8e111554924d.tar.bz2 samba-da3902745ed9b96b7ac3327ea31d8e111554924d.zip |
build: check size of dev_t, ino_t and time_t
-rw-r--r-- | lib/replace/wscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 023c60da3f..e67045745a 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -262,6 +262,7 @@ def configure(conf): conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True) conf.CHECK_SIZEOF('char int "long long" long off_t short size_t ssize_t') + conf.CHECK_SIZEOF('dev_t ino_t time_t') conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P') if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'): |