diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 17:38:49 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2006-09-13 17:38:49 +0000 |
commit | 90ca6d7b247fc573e562606ed61b32f69303335c (patch) | |
tree | 35f11e458892ad72838b764f2c2f3321ab9fc01c | |
parent | 0ee90659f22fd04f98c467f681bb900cc6a81fcb (diff) | |
download | samba-90ca6d7b247fc573e562606ed61b32f69303335c.tar.gz samba-90ca6d7b247fc573e562606ed61b32f69303335c.tar.xz samba-90ca6d7b247fc573e562606ed61b32f69303335c.zip |
r18486: hopefully this fixes the panics on solaris
metze
-rw-r--r-- | source/lib/replace/libreplace_cc.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/lib/replace/libreplace_cc.m4 b/source/lib/replace/libreplace_cc.m4 index 4dfe32e7a74..dd06a6c0f7c 100644 --- a/source/lib/replace/libreplace_cc.m4 +++ b/source/lib/replace/libreplace_cc.m4 @@ -69,6 +69,9 @@ esac AC_CHECK_HEADERS([standards.h]) +# Solaris needs HAVE_LONG_LONG defined +AC_CHECK_TYPES(long long) + AC_CHECK_TYPE(uint_t, unsigned int) AC_CHECK_TYPE(int8_t, char) AC_CHECK_TYPE(uint8_t, unsigned char) |