clean up headers, obsd socket.h needs types.h
[arla.git] / cf / header-dirent-dir-h.m4
blob6a21815f6c56ebe20562b0a3505547e875bc7356
1 dnl $Id$
3 dnl
4 dnl Check if we can include both dirent.h and sys/dir.h
5 dnl
7 AC_DEFUN([AC_DIRENT_SYS_DIR_H], [
8 AC_CACHE_CHECK(if we can include both dirent.h and sys/dir.h,
9 ac_cv_header_dirent_and_sys_dir,
10 AC_TRY_CPP([
11 #include <sys/types.h>
12 #include <dirent.h>
13 #include <sys/dir.h>
15 ac_cv_header_dirent_and_sys_dir=yes,
16 ac_cv_header_dirent_and_sys_dir=no))
17 if test "$ac_cv_header_dirent_and_sys_dir" = yes; then
18         AC_DEFINE(DIRENT_AND_SYS_DIR_H, 1,
19         [define if you can include both dirent.h and sys/dir.h])