diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-19 02:27:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-19 02:27:16 +0000 |
commit | e44c93180172b892993fcb77370c5546606b34ab (patch) | |
tree | c6096c88d9320a3b7be2d7a645577966253046a6 /src/backend/bootstrap/bootstrap.c | |
parent | 677028177e231ca8dce4c237a026e3d3b58cb314 (diff) |
Re-add getopt.h check, remove NT-specific tests for it.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index fc357d87a79..8db37d0a081 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 <time.h> #include <signal.h> #include <setjmp.h> -#ifdef __CYGWIN32__ -#include <getopt.h> -#endif #define BOOTSTRAP_INCLUDE /* mask out stuff in tcop/tcopprot.h */ #include "postgres.h" - +#ifdef HAVE_GETOPT_H +#include <getopt.h> +#endif #include "access/genam.h" #include "access/heapam.h" |