]> granicus.if.org Git - postgresql/commitdiff
Squelch some VC++ compiler warnings. Mark float literals with the "f"
authorNeil Conway <neilc@samurai.com>
Fri, 26 Jan 2007 17:45:42 +0000 (17:45 +0000)
committerNeil Conway <neilc@samurai.com>
Fri, 26 Jan 2007 17:45:42 +0000 (17:45 +0000)
suffix, to distinguish them from doubles. Make some function declarations
and definitions use the "const" qualifier for arguments consistently.
Ignore warning 4102 ("unreferenced label"), because such warnings
are always emitted by bison-generated code. Patch from Magnus Hagander.

contrib/intarray/_int.h
contrib/pg_trgm/trgm_op.c
contrib/tsearch2/rank.c
src/include/pg_config.h.win32
src/interfaces/libpq/fe-secure.c
src/interfaces/libpq/libpq-int.h
src/timezone/ialloc.c
src/timezone/zic.c
src/tools/msvc/Project.pm
src/tools/msvc/mkvcbuild.pl

index bf10f109220d5d68f9a6f6d888799ee2f7c9c861..cee970d1b1f2251ac4e530a917814c9fe61edcd8 100644 (file)
@@ -108,7 +108,7 @@ typedef void (*formfloat) (ArrayType *, float *);
 /*
 ** useful function
 */
-bool           isort(int4 *a, const int len);
+bool           isort(int4 *a, int len);
 ArrayType  *new_intArrayType(int num);
 ArrayType  *copy_intArrayType(ArrayType *a);
 ArrayType  *resize_intArrayType(ArrayType *a, int num);
index 286903393277c2e01c9598d127fc444656a2299e..f31b9bf572aa767ccc58c0e28c6980d1a9eb994d 100644 (file)
@@ -5,7 +5,7 @@
 
 PG_MODULE_MAGIC;
 
-float4         trgm_limit = 0.3;
+float4         trgm_limit = 0.3f;
 
 PG_FUNCTION_INFO_V1(set_limit);
 Datum          set_limit(PG_FUNCTION_ARGS);
index f5de5c7746f90bb823736ed058b1d859d0cbb2d2..36fc2594009795b798b5aef671c8afa75fd7cdbd 100644 (file)
@@ -37,7 +37,7 @@ Datum         rank_cd_def(PG_FUNCTION_ARGS);
 PG_FUNCTION_INFO_V1(get_covers);
 Datum          get_covers(PG_FUNCTION_ARGS);
 
-static float weights[] = {0.1, 0.2, 0.4, 1.0};
+static float weights[] = {0.1f, 0.2f, 0.4f, 1.0f};
 
 #define wpos(wep)      ( w[ WEP_GETWEIGHT(wep) ] )
 
@@ -59,7 +59,7 @@ static float4
 word_distance(int4 w)
 {
        if (w > 100)
-               return 1e-30;
+               return (float4)1e-30;
 
        return 1.0 / (1.005 + 0.05 * exp(((float4) w) / 1.5 - 2));
 }
@@ -331,7 +331,7 @@ calc_rank(float *w, tsvector * t, QUERYTYPE * q, int4 method)
                calc_rank_and(w, t, q) : calc_rank_or(w, t, q);
 
        if (res < 0)
-               res = 1e-20;
+               res = (float)1e-20;
 
        if ((method & RANK_NORM_LOGLENGTH) && t->size > 0)
                res /= log((double) (cnt_length(t) + 1)) / log(2.0);
index bffdae48fe8c37f729b6eb7a8deeb5a1e9fdd11f..9f3c1ac8699441d6d606a54d8fde3b077e3a0ac5 100644 (file)
 #define HAVE_STRDUP 1
 
 /* Define to 1 if you have the `strerror' function. */
+#ifndef HAVE_STRERROR
 #define HAVE_STRERROR 1
+#endif
 
 /* Define to 1 if you have the `strerror_r' function. */
 /* #undef HAVE_STRERROR_R */
index c27abb0c19ac1a8324b6b0d151dc91416d85d87d..a471c0b11fe97049d4176e36c9040f924db498f0 100644 (file)
@@ -11,7 +11,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.90 2007/01/05 22:20:01 momjian Exp $
+ *       $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.91 2007/01/26 17:45:41 neilc Exp $
  *
  * NOTES
  *       [ Most of these notes are wrong/obsolete, but perhaps not all ]
@@ -575,7 +575,6 @@ client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey)
        char            fnbuf[MAXPGPATH];
        FILE       *fp;
        PGconn     *conn = (PGconn *) SSL_get_app_data(ssl);
-       int                     (*cb) () = NULL;        /* how to read user password */
        char            sebuf[256];
 
        if (!pqGetHomeDirectory(homedir, sizeof(homedir)))
@@ -642,7 +641,7 @@ client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey)
                return 0;
        }
 #endif
-       if (PEM_read_PrivateKey(fp, pkey, cb, NULL) == NULL)
+       if (PEM_read_PrivateKey(fp, pkey, NULL, NULL) == NULL)
        {
                char       *err = SSLerrmessage();
 
index 9fce1e39276355511b4438ba8e9c80cc077ecafc..61e36bfba335e2ea89882e21a5512bbd65d887aa 100644 (file)
@@ -12,7 +12,7 @@
  * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.117 2007/01/05 22:20:01 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.118 2007/01/26 17:45:41 neilc Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include <signal.h>
 #endif
 
-#ifdef WIN32_ONLY_COMPILER
-typedef int ssize_t;                   /* ssize_t doesn't exist in VC (at least not
-                                                                * VC6) */
-#endif
-
 /* include stuff common to fe and be */
 #include "getaddrinfo.h"
 #include "libpq/pqcomm.h"
index 547a786e34d7edd4c130644b66c2b8dd15e3f1e0..2b4dc17b3bd28b85b1769fcb85592ab39469afdd 100644 (file)
@@ -3,7 +3,7 @@
  * 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/timezone/ialloc.c,v 1.7 2005/10/15 02:49:51 momjian Exp $
+ *       $PostgreSQL: pgsql/src/timezone/ialloc.c,v 1.8 2007/01/26 17:45:42 neilc Exp $
  */
 
 #include "postgres.h"
@@ -14,7 +14,7 @@
 #define nonzero(n)     (((n) == 0) ? 1 : (n))
 
 char *
-imalloc(const int n)
+imalloc(int n)
 {
        return malloc((size_t) nonzero(n));
 }
@@ -28,7 +28,7 @@ icalloc(int nelem, int elsize)
 }
 
 void *
-irealloc(void *pointer, const int size)
+irealloc(void *pointer, int size)
 {
        if (pointer == NULL)
                return imalloc(size);
index 0f272e8d6e5d0b63b034add24f49eff88df18909..af5fc36f15267cc70f745cc84164aa52037a9eea 100644 (file)
@@ -3,7 +3,7 @@
  * 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/timezone/zic.c,v 1.19 2006/10/24 15:11:03 tgl Exp $
+ *       $PostgreSQL: pgsql/src/timezone/zic.c,v 1.20 2007/01/26 17:45:42 neilc Exp $
  */
 
 #include "postgres.h"
@@ -104,10 +104,10 @@ struct zone
 };
 
 extern int     link(const char *fromname, const char *toname);
-static void addtt(pg_time_t starttime, int type);
+static void addtt(const pg_time_t starttime, int type);
 static int addtype(long gmtoff, const char *abbr, int isdst,
                int ttisstd, int ttisgmt);
-static void leapadd(pg_time_t t, int positive, int rolling, int count);
+static void leapadd(const pg_time_t t, int positive, int rolling, int count);
 static void adjleap(void);
 static void associate(void);
 static int     ciequal(const char *ap, const char *bp);
@@ -146,7 +146,7 @@ static void rulesub(struct rule * rp,
                const char *typep, const char *monthp,
                const char *dayp, const char *timep);
 static void setboundaries(void);
-static pg_time_t tadd(pg_time_t t1, long t2);
+static pg_time_t tadd(const pg_time_t t1, long t2);
 static void usage(void);
 static void writezone(const char *name);
 static int     yearistype(int year, const char *type);
index 362611114a047a9cb3252ff793abea2d8cd7463c..437940c2747671dbd6d887c73791e75ceaa913c7 100644 (file)
@@ -23,7 +23,8 @@ sub new {
         includes        => '',
         defines         => ';',
                solution        => $solution,
-        disablewarnings => '4018;4244;4273',
+        disablewarnings => '4018;4244;4273;4102',
+        disablelinkerwarnings => ''
     };
 
        bless $self;
@@ -242,6 +243,13 @@ sub AddResourceFile {
        $self->AddFile("$dir\\win32ver.rc");
 }
 
+sub DisableLinkerWarnings {
+   my ($self, $warnings) = @_;
+
+   $self->{disablelinkerwarnings} .= ';' unless ($self->{disablelinkerwarnings} eq '');
+   $self->{disablelinkerwarnings} .= $warnings;
+}
+
 sub Save {
        my ($self) = @_;
 
@@ -390,6 +398,9 @@ EOF
                GenerateMapFile="FALSE" MapFileName=".\\$cfgname\\$self->{name}\\$self->{name}.map"
                SubSystem="1" TargetMachine="1"
 EOF
+   if ($self->{disablelinkerwarnings}) {
+      print $f "\t\tAdditionalOptions=\"/ignore:$self->{disablelinkerwarnings}\"\n";
+   }
        if ($self->{implib}) {
                my $l = $self->{implib};
                $l =~ s/__CFGNAME__/$cfgname/g;
index 2cb88c14b8d200343bfee35a97da428cd8559a5a..0fcbbffb02c32243d4a4f3511bd8bc0fed4ea20a 100644 (file)
@@ -135,6 +135,7 @@ $pgevent->AddFiles('src\bin\pgevent','pgevent.c','pgmsgevent.rc');
 $pgevent->AddResourceFile('src\bin\pgevent','Eventlog message formatter');
 $pgevent->RemoveFile('src\bin\pgevent\win32ver.rc');
 $pgevent->UseDef('src\bin\pgevent\pgevent.def');
+$pgevent->DisableLinkerWarnings('4104');
 
 my $psql = AddSimpleFrontend('psql', 1);
 $psql->AddIncludeDir('src\bin\pg_dump');