From e44c93180172b892993fcb77370c5546606b34ab Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 19 Jul 1999 02:27:16 +0000 Subject: Re-add getopt.h check, remove NT-specific tests for it. --- src/backend/bootstrap/bootstrap.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/backend/bootstrap/bootstrap.c') diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index fc357d87a7..8db37d0a08 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.65 1999/07/17 20:16:47 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.66 1999/07/19 02:27:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,14 +15,13 @@ #include #include #include -#ifdef __CYGWIN32__ -#include -#endif #define BOOTSTRAP_INCLUDE /* mask out stuff in tcop/tcopprot.h */ #include "postgres.h" - +#ifdef HAVE_GETOPT_H +#include +#endif #include "access/genam.h" #include "access/heapam.h" -- cgit v1.2.1