summaryrefslogtreecommitdiff
path: root/m4/gnu-source.m4
blob: d8332f4cb73ff8d78cc1c01e056d30114683c8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# AC_GNU_SOURCE
# --------------
AC_DEFUN([AC_GNU_SOURCE],
[AH_VERBATIM([_GNU_SOURCE],
[/* Enable GNU extensions on systems that have them.  */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable many GNU extensions on Solaris.  */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif])dnl
AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl
AC_BEFORE([$0], [AC_RUN_IFELSE])dnl
AC_DEFINE([_GNU_SOURCE])
AC_DEFINE([__EXTENSIONS__])
])