From 9ef6b32c4711f16b93cd51ce4bcf48c06a53f729 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Wed, 17 Dec 1997 04:44:50 +0000 Subject: Makefile cleaned up async.c: #include surrounded by an #ifdef HAVE_STRDUP vacuum.c: #include commented out...can someone comment as to why it was included, as it doesn't seem to have any effect under FreeBSD so far...would like some sort of #ifdef wrapper like async.c if possible --- src/backend/commands/async.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/backend/commands/async.c') diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 42a607051f3..0ce2d6403cf 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.25 1997/12/06 22:56:24 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.26 1997/12/17 04:44:49 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -82,7 +82,9 @@ #include #include -#include /* for strdup() */ +#ifndef HAVE_STRDUP +# include /* for strdup() */ +#endif #include -- cgit v1.2.3