diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-05 14:02:44 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-05 09:48:05 +0200 |
commit | fcd1aa82ac154677c085caf0ed5edf205544e341 (patch) | |
tree | 9e0eadd13afa6d7e46ea78181ccaf96ca04fa162 /source3 | |
parent | 7b1ae6e7b5567df2a6431417f871dbd9e52561f6 (diff) | |
download | samba-fcd1aa82ac154677c085caf0ed5edf205544e341.tar.gz samba-fcd1aa82ac154677c085caf0ed5edf205544e341.tar.bz2 samba-fcd1aa82ac154677c085caf0ed5edf205544e341.zip |
build: Remove unused check for HAVE_UNSIGNED_CHAR
BTW, uint8_t check is in libreplace for both build systems.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/configure.in b/source3/configure.in index 671fdf1a63..7a9f03a8c5 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2053,14 +2053,6 @@ if test x"$samba_cv_HAVE_MAKEDEV" = x"yes"; then AC_DEFINE(HAVE_MAKEDEV,1,[Whether the macro for makedev is available]) fi -AC_CACHE_CHECK([for unsigned char],samba_cv_HAVE_UNSIGNED_CHAR,[ -AC_TRY_RUN([#include <stdio.h> -main() { char c; c=250; exit((c > 0)?0:1); }], -samba_cv_HAVE_UNSIGNED_CHAR=yes,samba_cv_HAVE_UNSIGNED_CHAR=no,samba_cv_HAVE_UNSIGNED_CHAR=cross)]) -if test x"$samba_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then - AC_DEFINE(HAVE_UNSIGNED_CHAR,1,[Whether the 'unsigned char' type is available]) -fi - AC_CACHE_CHECK([whether seekdir returns void],samba_cv_SEEKDIR_RETURNS_VOID,[ AC_TRY_COMPILE([#include <sys/types.h> #include <dirent.h> |