search for: ac_gnu_source

Displaying 2 results from an estimated 2 matches for "ac_gnu_source".

Did you mean: _gnu_source
2018 Aug 14
5
[PATCH 1/4] build: Use LT_INIT in configure.ac.
Avoids the warning: libtoolize: Remember to add 'LT_INIT' to configure.ac. This is the new name for AC_PROG_LIBTOOL, so I removed that. However to use this macro we must enable AC_USE_SYSTEM_EXTENSIONS. (AC_GNU_SOURCE was removed back in 2011). --- configure.ac | 5 +++++ m4/guestfs-progs.m4 | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9cc3f1a99..f04d77848 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,8 @@ m4_define([HEADING], AC_CONF...
2005 Dec 15
2
Patch: More of kqueue() support.
...configure.in 15 Dec 2005 21:29:09 -0000 @@ -1,25 +1,24 @@ -AC_INIT(dovecot, 1.0.alpha5, [dovecot@dovecot.org]) +AC_PREREQ([2.59]) +AC_INIT([dovecot],[1.0.alpha5],[dovecot@dovecot.org]) AC_CONFIG_SRCDIR([src]) -AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE AM_MAINTAINER_MODE AC_ISC_POSIX +AC_GNU_SOURCE AC_PROG_CC AC_PROG_CPP AC_HEADER_STDC AC_C_INLINE -AM_PROG_LIBTOOL +AC_PROG_LIBTOOL AM_ICONV -AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h \ +AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h time.h \ sys/uio.h sys/sysmacros.h sys/resource.h sys/select.h libgen.h \ - sys/quo...