diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-24 14:58:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:51 -0500 |
commit | 70b52b02a77c695d32aa57daaeb5689cd6857eba (patch) | |
tree | 4f7bb8f3f645e64b8983e7fd3f439d5c629c975f /source4/build/m4 | |
parent | 2a9b65cd17b271ff88fca6bda0bddc6230c2b319 (diff) | |
download | samba-70b52b02a77c695d32aa57daaeb5689cd6857eba.tar.gz samba-70b52b02a77c695d32aa57daaeb5689cd6857eba.tar.bz2 samba-70b52b02a77c695d32aa57daaeb5689cd6857eba.zip |
r10476: Move some more types to libreplace. Fix missing strndup errors
for heimdal
(This used to be commit e09ffdfb1dba289b79ac7e5a638bf5322d45ddc0)
Diffstat (limited to 'source4/build/m4')
-rw-r--r-- | source4/build/m4/check_types.m4 | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source4/build/m4/check_types.m4 b/source4/build/m4/check_types.m4 index b4c7b5ed1c..88ccc7859c 100644 --- a/source4/build/m4/check_types.m4 +++ b/source4/build/m4/check_types.m4 @@ -28,12 +28,4 @@ if test $ac_cv_sizeof_long_long -lt 8;then AC_MSG_ERROR([Sorry we need sizeof(long long) >= 8]) fi AC_CHECK_TYPE(_Bool) -AC_CHECK_TYPE(uint_t, unsigned int) -AC_CHECK_TYPE(int8_t, signed char) -AC_CHECK_TYPE(uint8_t, unsigned char) -AC_CHECK_TYPE(int16_t, short) -AC_CHECK_TYPE(uint16_t, unsigned short) -AC_CHECK_TYPE(int32_t, long) -AC_CHECK_TYPE(uint32_t, unsigned long) -AC_CHECK_TYPE(int64_t, long long) -AC_CHECK_TYPE(uint64_t, unsigned long long) + |