summaryrefslogtreecommitdiffstats
path: root/m4/dirent_dtype.m4
blob: a5740404fb8aa21093f4e6a9390eab42c03c56c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
AC_DEFUN([DOVECOT_DIRENT_DTYPE], [
  dnl * Do we have struct dirent->d_type
  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
    #include <dirent.h>
  ]], [[
    struct dirent d;
    d.d_type = DT_DIR;
  ]])],[
    AC_DEFINE(HAVE_DIRENT_D_TYPE,, [Define if you have struct dirent->d_type])
  ],[])
])