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/bin/psql/psql.c | |
| parent | 677028177e231ca8dce4c237a026e3d3b58cb314 (diff) | |
| download | postgresql-e44c93180172b892993fcb77370c5546606b34ab.tar.gz | |
Re-add getopt.h check, remove NT-specific tests for it.
Diffstat (limited to 'src/bin/psql/psql.c')
| -rw-r--r-- | src/bin/psql/psql.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 5b042bdab6..c7aaf83f98 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.183 1999/07/17 20:18:23 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.184 1999/07/19 02:27:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -32,13 +32,16 @@ #include "pqsignal.h" #include "stringutils.h" #include "psqlHelp.h" + #ifndef HAVE_STRDUP #include "strdup.h" #endif + #ifdef HAVE_TERMIOS_H #include <termios.h> #endif -#ifdef __CYGWIN32__ + +#ifdef HAVE_GETOPT_H #include <getopt.h> #endif |
