Skip to content

Commit f12c5f8

Browse files
committed
Another switch for configure: NEED_SYS_SELECT_H to HAVE_SYS_SELECT_H
1 parent 0a16069 commit f12c5f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.33 1997/01/24 18:00:27 scrappy Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.34 1997/01/24 18:27:29 scrappy Exp $
1414
*
1515
* NOTES
1616
*
@@ -65,9 +65,9 @@
6565
#include <fcntl.h>
6666
#include <stdio.h>
6767

68-
#if defined(NEED_SYS_SELECT_H)
68+
#ifdef HAVE_SYS_SELECT_H
6969
# include <sys/select.h>
70-
#endif /* NEED_SYS_SELECT_H */
70+
#endif
7171

7272
#include "storage/ipc.h"
7373
#include "libpq/libpq.h"

src/include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# define DISABLE_XOPEN_NLS
1919
# define HAVE_ISINF
2020
# define NEED_UNION_SEMUN
21-
# define NEED_SYS_SELECT_H
21+
# define HAVE_SYS_SELECT_H
2222
# define HAVE_TZSET
2323
# define HAVE_ANSI_CPP
2424
# define HAS_TEST_AND_SET

0 commit comments

Comments
 (0)