From: Steve Singer Date: Mon, 30 Jun 2014 12:37:54 +0000 (-0400) Subject: Remove HAVE_POSIX_SIGNALS from config.h X-Git-Url: http://git.postgresql.org/gitweb/%7B?a=commitdiff_plain;h=0d71e224595446b30efc1c4274ac93637d8828f6;p=slony1-engine.git Remove HAVE_POSIX_SIGNALS from config.h Compiling slony against PG 9.4 gives compiler warnings because the definition of HAVE_POSIX_SIGNALS has changed. This is defined in pg_config so we do not really need to redefine it in the config.h slony provides. We leave the configure check in place to we just don't include it in the header --- diff --git a/config.h.in b/config.h.in index af6c2860..1ff3d54e 100644 --- a/config.h.in +++ b/config.h.in @@ -64,7 +64,7 @@ #undef HAVE_GETACTIVESNAPSHOT /* Set to 1 if we have POSIX signals */ -#undef HAVE_POSIX_SIGNALS +/**#undef HAVE_POSIX_SIGNALS**/ /* Set to 1 if we have PGPORT */ #undef HAVE_PGPORT