diff options
-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 |