Remove <values.h> inclusions, no-longer-needed MAXINT definitions.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 28 Jul 2000 02:13:52 +0000 (02:13 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 28 Jul 2000 02:13:52 +0000 (02:13 +0000)
configure
configure.in
contrib/odbc/odbc.c
src/backend/optimizer/geqo/geqo_eval.c
src/backend/postmaster/postmaster.c
src/backend/utils/adt/float.c
src/backend/utils/adt/nabstime.c
src/backend/utils/adt/varbit.c
src/include/config.h.in
src/include/utils/varbit.h

index 2234d9f0636b432d12db00801f5269764496014b..9cb12f30631607a0771630f9b10f753b696a7675 100755 (executable)
--- a/configure
+++ b/configure
@@ -2285,7 +2285,7 @@ mkinstalldirs="\$(SHELL) \$(top_srcdir)/config/mkinstalldirs"
 
 
 
-for ac_prog in gawk mawk nawk awk
+for ac_prog in mawk gawk nawk awk
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
@@ -4018,7 +4018,7 @@ fi
 ##
 ## Header files
 ##
-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
+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
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
index 1e125a1bbc84e8780391e1facb769a054829f75d..6078b525c059a9a64e33cf10ee3e8d18a95a8c3b 100644 (file)
@@ -796,7 +796,7 @@ fi
 ## Header files
 ##
 dnl sys/socket.h and sys/types.h are required by AC_FUNC_ACCEPT_ARGTYPES
-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])
+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])
 
 AC_CHECK_HEADERS([readline/readline.h readline.h], [break])
 AC_CHECK_HEADERS([readline/history.h history.h], [break])
index efc1fa21df06c3e096f4a061a491d19fdef4d34d..2a134ee488bab07ee1585057dbb2200940812689 100644 (file)
@@ -3,19 +3,9 @@
 #include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
-
 #include <float.h>                             /* faked on sunos4 */
-
 #include <math.h>
-
 #include <limits.h>
-#ifndef MAXINT
-#define MAXINT           INT_MAX
-#endif
-
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
 
 #include "fmgr.h"
 #include "utils/timestamp.h"
index fd0f7fb84b7a03fcbe135f4fdf1980825b6e8ea9..42379bd1ea84c5c5211508d5296ec024dbdf52b2 100644 (file)
@@ -23,9 +23,6 @@
 
 #include <math.h>
 #include <limits.h>
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
 
 #include "optimizer/geqo.h"
 #include "optimizer/pathnode.h"
index 48f4c47d5e3d0cb6f5c4230e2680ed1329ae84ee..1c3f2d528c214e1575500fad62f0344d793513d9 100644 (file)
 #include <fcntl.h>
 #include <time.h>
 #include <sys/param.h>
-
- /* moved here to prevent double define */
+/* moved here to prevent double define */
 #include <netdb.h>
-
 #include <limits.h>
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
 
 #ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
index a650924aaeebf9bf79704e02553062eab3d0693b..ad3bd400ccbce6102ad389f22563d600b416b70e 100644 (file)
@@ -54,9 +54,6 @@
 #include "postgres.h"
 
 #include <limits.h>
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
 
 /* for finite() on Solaris */
 #ifdef HAVE_IEEEFP_H
index 06f32597b147270e9e09d3229c2a43a29a61c53e..42532c8d40bee41530724fc1aed9137e543eac6b 100644 (file)
 #include <float.h>
 #include <limits.h>
 
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
-
 #ifndef USE_POSIX_TIME
 #include <sys/timeb.h>
 #endif
index 494e6a611875c50179f048bd00eacb365c1edacf..796279963a9f7ae495384061317cf9ad8fb8852f 100644 (file)
 #include <math.h>
 #include <limits.h>
 
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
-
 #include "fmgr.h"
 #include "utils/builtins.h"
 #include "utils/varbit.h"
index aa084bf76a7fcc3373c5a6682b5ced17155bb82b..70ef757e07296baa935ea4170b13b5206b23d825 100644 (file)
 /* Set to 1 if you have <termios.h> */
 #undef HAVE_TERMIOS_H
 
-/* Set to 1 if  you have <values.h> */
-#undef HAVE_VALUES_H
-
 /* Set to 1 if you have <sys/pstat.h> */
 #undef HAVE_SYS_PSTAT_H
 
index 5961bb80a5a53cf2a16d0e8c84d27f996dcdad3c..172cb4c6c4de48b220b02fb175914031a10516d6 100644 (file)
@@ -5,16 +5,13 @@
 
 #include <math.h>
 #include <limits.h>
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
 
 #include "utils/builtins.h"
 
 
-#define HEXDIG(z)       (z)<10 ? ((z)+'0') : ((z)-10+'A')
+#define HEXDIG(z)       ((z)<10 ? ((z)+'0') : ((z)-10+'A'))
 
-/* Modeled on struct varlena from postgres.h, bu data type is bits8 */
+/* Modeled on struct varlena from postgres.h, but data type is bits8 */
 struct varbita
 {
        int32           vl_len;