diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 11:08:50 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2006-09-13 11:08:50 +0000 |
commit | a90aa6ad381cbfc7797c374ad0ffc79abccdef2a (patch) | |
tree | ab6366a98293bc81861c2723c9a1aaa1153da002 | |
parent | 50abc63232d784edea741beff04c366a4c9ed812 (diff) | |
download | samba-a90aa6ad381cbfc7797c374ad0ffc79abccdef2a.tar.gz samba-a90aa6ad381cbfc7797c374ad0ffc79abccdef2a.tar.xz samba-a90aa6ad381cbfc7797c374ad0ffc79abccdef2a.zip |
r18462: make the output a bit nicer
metze
-rw-r--r-- | source/lib/replace/repdir.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/lib/replace/repdir.m4 b/source/lib/replace/repdir.m4 index e2f94263e8e..06a01964a8b 100644 --- a/source/lib/replace/repdir.m4 +++ b/source/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 |