File tree Expand file tree Collapse file tree 10 files changed +12
-47
lines changed Expand file tree Collapse file tree 10 files changed +12
-47
lines changed Original file line number Diff line number Diff line change @@ -2285,7 +2285,7 @@ mkinstalldirs="\$(SHELL) \$(top_srcdir)/config/mkinstalldirs"
2285
2285
2286
2286
2287
2287
2288
- for ac_prog in gawk mawk nawk awk
2288
+ for ac_prog in mawk gawk nawk awk
2289
2289
do
2290
2290
# Extract the first word of "$ac_prog", so it can be a program name with args.
2291
2291
set dummy $ac_prog ; ac_word=$2
4018
4018
# #
4019
4019
# # Header files
4020
4020
# #
4021
- for ac_hdr in crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/pstat.h sys/select.h sys/socket.h sys/types.h termios.h values.h
4021
+ for ac_hdr in crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/pstat.h sys/select.h sys/socket.h sys/types.h termios.h
4022
4022
do
4023
4023
ac_safe=` echo " $ac_hdr " | sed ' y%./+-%__p_%' `
4024
4024
echo $ac_n " checking for $ac_hdr " " ... $ac_c " 1>&6
Original file line number Diff line number Diff line change 796
796
## Header files
797
797
##
798
798
dnl sys/socket.h and sys/types.h are required by AC_FUNC_ACCEPT_ARGTYPES
799
- AC_CHECK_HEADERS([crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/pstat.h sys/select.h sys/socket.h sys/types.h termios.h values.h ])
799
+ AC_CHECK_HEADERS([crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/pstat.h sys/select.h sys/socket.h sys/types.h termios.h])
800
800
801
801
AC_CHECK_HEADERS([readline/readline.h readline.h], [break])
802
802
AC_CHECK_HEADERS([readline/history.h history.h], [break])
Original file line number Diff line number Diff line change 3
3
#include <stdlib.h>
4
4
#include <ctype.h>
5
5
#include <errno.h>
6
-
7
6
#include <float.h> /* faked on sunos4 */
8
-
9
7
#include <math.h>
10
-
11
8
#include <limits.h>
12
- #ifndef MAXINT
13
- #define MAXINT INT_MAX
14
- #endif
15
-
16
- #ifdef HAVE_VALUES_H
17
- #include <values.h>
18
- #endif
19
9
20
10
#include "fmgr.h"
21
11
#include "utils/timestamp.h"
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: geqo_eval.c,v 1.52 2000/07/12 22:59:01 petere Exp $
9
+ * $Id: geqo_eval.c,v 1.53 2000/07/28 02:13:16 tgl Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
23
23
24
24
#include <math.h>
25
25
#include <limits.h>
26
- #ifdef HAVE_VALUES_H
27
- #include <values.h>
28
- #endif
29
26
30
27
#include "optimizer/geqo.h"
31
28
#include "optimizer/pathnode.h"
Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.157 2000/07/17 03:05:04 tgl Exp $
14
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.158 2000/07/28 02:13:26 tgl Exp $
15
15
*
16
16
* NOTES
17
17
*
48
48
#include <fcntl.h>
49
49
#include <time.h>
50
50
#include <sys/param.h>
51
-
52
- /* moved here to prevent double define */
51
+ /* moved here to prevent double define */
53
52
#include <netdb.h>
54
-
55
53
#include <limits.h>
56
- #ifdef HAVE_VALUES_H
57
- #include <values.h>
58
- #endif
59
54
60
55
#ifdef HAVE_SYS_SELECT_H
61
56
#include <sys/select.h>
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.65 2000/07/17 03:05:17 tgl Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.66 2000/07/28 02:13:31 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
54
54
#include "postgres.h"
55
55
56
56
#include <limits.h>
57
- #ifdef HAVE_VALUES_H
58
- #include <values.h>
59
- #endif
60
57
61
58
/* for finite() on Solaris */
62
59
#ifdef HAVE_IEEEFP_H
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.72 2000/07/12 22:59:09 petere Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.73 2000/07/28 02:13:31 tgl Exp $
13
13
*
14
14
* NOTES
15
15
*
24
24
#include <float.h>
25
25
#include <limits.h>
26
26
27
- #ifdef HAVE_VALUES_H
28
- #include <values.h>
29
- #endif
30
-
31
27
#ifndef USE_POSIX_TIME
32
28
#include <sys/timeb.h>
33
29
#endif
Original file line number Diff line number Diff line change 4
4
* Functions for the built-in type bit() and varying bit().
5
5
*
6
6
* IDENTIFICATION
7
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.5 2000/07/12 22:59:09 petere Exp $
7
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.6 2000/07/28 02:13:31 tgl Exp $
8
8
*
9
9
*-------------------------------------------------------------------------
10
10
*/
21
21
#include <math.h>
22
22
#include <limits.h>
23
23
24
- #ifdef HAVE_VALUES_H
25
- #include <values.h>
26
- #endif
27
-
28
24
#include "fmgr.h"
29
25
#include "utils/builtins.h"
30
26
#include "utils/varbit.h"
Original file line number Diff line number Diff line change 8
8
* or in config.h afterwards. Of course, if you edit config.h, then your
9
9
* changes will be overwritten the next time you run configure.
10
10
*
11
- * $Id: config.h.in,v 1.127 2000/07/14 16:39:35 petere Exp $
11
+ * $Id: config.h.in,v 1.128 2000/07/28 02:13:40 tgl Exp $
12
12
*/
13
13
14
14
#ifndef CONFIG_H
327
327
/* Set to 1 if you have <termios.h> */
328
328
#undef HAVE_TERMIOS_H
329
329
330
- /* Set to 1 if you have <values.h> */
331
- #undef HAVE_VALUES_H
332
-
333
330
/* Set to 1 if you have <sys/pstat.h> */
334
331
#undef HAVE_SYS_PSTAT_H
335
332
Original file line number Diff line number Diff line change 5
5
6
6
#include <math.h>
7
7
#include <limits.h>
8
- #ifdef HAVE_VALUES_H
9
- #include <values.h>
10
- #endif
11
8
12
9
#include "utils/builtins.h"
13
10
14
11
15
- #define HEXDIG (z ) (z)<10 ? ((z)+'0') : ((z)-10+'A')
12
+ #define HEXDIG (z ) (( z)<10 ? ((z)+'0') : ((z)-10+'A') )
16
13
17
- /* Modeled on struct varlena from postgres.h, bu data type is bits8 */
14
+ /* Modeled on struct varlena from postgres.h, but data type is bits8 */
18
15
struct varbita
19
16
{
20
17
int32 vl_len ;
You can’t perform that action at this time.
0 commit comments