diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 11:08:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:33 -0500 |
commit | 63d284c91220535456e036623f97ccd2cc44c000 (patch) | |
tree | 56cfc7dfbf3e41fe5ab50f488441a0dd0590629b | |
parent | dca9292c1562aadf45195b49dbfd19d036fbad45 (diff) | |
download | samba-63d284c91220535456e036623f97ccd2cc44c000.tar.gz samba-63d284c91220535456e036623f97ccd2cc44c000.tar.bz2 samba-63d284c91220535456e036623f97ccd2cc44c000.zip |
r18462: make the output a bit nicer
metze
(This used to be commit 0b61ea3ed7b833dbb5a7ca8ef2bb29c1b68f5cad)
-rw-r--r-- | source4/lib/replace/repdir.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/lib/replace/repdir.m4 b/source4/lib/replace/repdir.m4 index e2f94263e8..06a01964a8 100644 --- a/source4/lib/replace/repdir.m4 +++ b/source4/lib/replace/repdir.m4 @@ -51,6 +51,10 @@ if test x"$libreplace_READDIR_GETDIRENTRIES" = x"yes"; then libreplace_READDIR_NEEDED=no fi +AC_MSG_CHECKING([a usable readdir()]) if test x"$libreplace_READDIR_NEEDED" = x"yes"; then - AC_MSG_WARN([the provides readdir() is broken]) + AC_MSG_RESULT(no) + AC_MSG_WARN([the provided readdir() is broken]) +else + AC_MSG_RESULT(yes) fi |