1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-21 12:05:57 +03:00

#if aix changed to #if HAVE_SYS_SELECT_H

This commit is contained in:
Marc G. Fournier 1998-02-02 00:05:03 +00:00
parent e6e364088a
commit dd26bef4ef

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.64 1998/02/01 19:43:46 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.65 1998/02/02 00:05:03 scrappy Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -33,7 +33,7 @@
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
#include <errno.h> #include <errno.h>
#ifdef aix #if HAVE_SYS_SELECT_H
#include <sys/select.h> #include <sys/select.h>
#endif /* aix */ #endif /* aix */
@ -1293,7 +1293,7 @@ PostgresMain(int argc, char *argv[])
if (IsUnderPostmaster == false) if (IsUnderPostmaster == false)
{ {
puts("\nPOSTGRES backend interactive interface"); puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.64 $ $Date: 1998/02/01 19:43:46 $"); puts("$Revision: 1.65 $ $Date: 1998/02/02 00:05:03 $");
} }
/* ---------------- /* ----------------