]> granicus.if.org Git - postgresql/commitdiff
Some points for portability improvements:
authorBruce Momjian <bruce@momjian.us>
Thu, 23 Mar 2000 17:27:36 +0000 (17:27 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 23 Mar 2000 17:27:36 +0000 (17:27 +0000)
1. C++ style comments in C source for ecpg ( // comment )
2. compiler finds wrong include file extern.h in ecpg/lib/descriptor.c
from
include path instead of workdir (rename it ?)
3. fe-connect getsockopt takes a socklen_t as fifth arg not int (use
SOCKET_SIZE_TYPE instead)
4. char vs unsigned char in psql calls to libpq
5. empty define that results in an empty but terminated line ( ; )

Now for all but point 3 I can supply changes to the
compiler flags, to make the compiler less pedantic.
Or is someone interested in the complications ?

in the meantime can someone apply the attached patch ?

Andreas

src/interfaces/libpq/fe-connect.c
src/template/aix_42
src/test/regress/resultmap

index 81973e34f63050b3c809af7027b2f5e11ed2e711..ad1d13fdf2a23ef17e72b8dc34bb53a443cfa833 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.123 2000/03/11 03:08:36 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.124 2000/03/23 17:27:29 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1080,7 +1080,7 @@ PQconnectPoll(PGconn *conn)
 #else
                        char optval;
 #endif
-                       int optlen = sizeof(optval);
+                       SOCKET_SIZE_TYPE optlen = sizeof(optval);
 
                        /* Write ready, since we've made it here, so the connection
                         * has been made. */
index 49f3a69041365e2f3c08505636d90616cfaa0e3b..a0ed5a9c04a3752477651e2220e8efc6c5dcb16f 100644 (file)
@@ -1,5 +1,5 @@
 AROPT:crs
-CFLAGS:-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg -qcheck=divzero -qlonglong
+CFLAGS:-O2 -qmaxmem=16384 -qhalt=w -qsrcmsg -qlanglvl=extended -qlonglong -qcpluscmt
 SHARED_LIB:-lc
 ALL:
 SRCH_INC:
index faa8577f2c2b3a308f0042ff9f128d79a224ff50..a325a3be0d18dfc0aa345bda5fe30467be1a6df5 100644 (file)
@@ -15,6 +15,8 @@ int4/powerpc-unknown-linux-gnu=int4-not-representable
 int2/.*-qnx4=int2-too-large
 int4/.*-qnx4=int4-too-large
 int8/.*-qnx4=int8-exp-three-digits
+int2/.*-aix4=int2-too-large
+int4/.*-aix4=int4-too-large
 float8/alpha-dec-osf=float8-fp-exception
 float4/.*-qnx4=float4-exp-three-digits
 float8/.*-qnx4=float8-exp-three-digits