1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Another switch for configure: NEED_SYS_SELECT_H to HAVE_SYS_SELECT_H

This commit is contained in:
Marc G. Fournier
1997-01-24 18:27:32 +00:00
parent 0a16069901
commit f12c5f898c
2 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.33 1997/01/24 18:00:27 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.34 1997/01/24 18:27:29 scrappy Exp $
*
* NOTES
*
@@ -65,9 +65,9 @@
#include <fcntl.h>
#include <stdio.h>
#if defined(NEED_SYS_SELECT_H)
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif /* NEED_SYS_SELECT_H */
#endif
#include "storage/ipc.h"
#include "libpq/libpq.h"