Add _DARWIN_C_SOURCE define to activate all library features on MacOS

This commit is contained in:
Romuald Conty 2010-02-17 14:12:38 +00:00
parent 9bafef8d88
commit e0d8e80b76

View file

@ -34,7 +34,9 @@ AC_HEADER_STDC
AC_HEADER_STDBOOL
AC_CHECK_HEADERS([stdio.h stdlib.h stdint.h stddef.h stdbool.h])
AC_CHECK_FUNCS(strdup, [AC_DEFINE([_XOPEN_SOURCE], [600], [Enable POSIX extensions if present])])
AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
AC_DEFINE(_DARWIN_C_SOURCE, 1, [Define on Darwin to activate all library features])
# Checks for types
AC_TYPE_SIZE_T