avoid using dirfd on systems that don't have dirfd
(Patch by Brian Cameron <brian dot cameron at sun dot com>)
+2006-10-08 John (J5) Palmieri <johnp@redhat.com>
+
+ * configure.in: define _POSIX_PTHREAD_SEMANTICS on solaris
+ avoid using dirfd on systems that don't have dirfd
+ (Patch by Brian Cameron <brian dot cameron at sun dot com>)
+
2006-10-02 John (J5) Palmieir <johnp@redhat.com>
* dbus/dbus-sysdeps.c (_dbus_abort): Remove from
fi
fi
+# Add -D_POSIX_PTHREAD_SEMANTICS if on Solaris
+#
+case $target_os in
+ solaris*)
+ CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS" ;;
+esac
+
AM_PROG_LIBTOOL
changequote(,)dnl
dirent_buf_size(DIR * dirp, size_t *size)
{
long name_max;
-# if defined(HAVE_FPATHCONF) && defined(HAVE_DIRFD) \
- && defined(_PC_NAME_MAX)
- name_max = fpathconf(dirfd(dirp), _PC_NAME_MAX);
+# if defined(HAVE_FPATHCONF) && defined(_PC_NAME_MAX)
+# if defined(HAVE_DIRFD)
+ name_max = fpathconf(dirfd(dirp), _PC_NAME_MAX);
+# else
+ name_max = fpathconf(dirp->dd_fd, _PC_NAME_MAX);
+# endif /* HAVE_DIRFD */
if (name_max == -1)
# if defined(NAME_MAX)
name_max = NAME_MAX;