Commit 0da97095 authored by Sandro Santilli's avatar Sandro Santilli
Browse files

Changed int4 typedefs to use POSIX uint32_t


git-svn-id: http://svn.osgeo.org/postgis/trunk@2302 b70326c6-7e19-0410-871a-916f4a2858ee
parent c30bd33a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ PostGIS 1.1.2CVS
	- BUGFIX in SnapToGrid() computation of output bounding box
	- More portable ./configure script
	- Changed ./run_test script to have more sane default behaviour
	- Fixed support for 64bit archs

PostGIS 1.1.1
2006/01/23
+2 −1
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
 */
#include <string.h>
#include <stdio.h>
#include <stdint.h>

#include "liblwgeom.h"
#include "wktparse.h"
@@ -22,7 +23,7 @@
void set_zm(char z, char m);
void close_parser(void);

typedef unsigned long int4;
typedef uint32_t int4;

typedef struct tag_tuple tuple;

+5 −1
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
/* TO get byte order */
#include <sys/types.h>
#include <sys/param.h>
#include <stdint.h>

#include "liblwgeom.h"
#include "wktparse.h"
@@ -21,7 +22,7 @@

/*-- Typedefs ---------------------------------------------- */

typedef unsigned long int4;
typedef uint32_t int4;
typedef uchar* (*outfunc)(uchar*,int);
typedef uchar* (*outwkbfunc)(uchar*);

@@ -610,6 +611,9 @@ unparse_WKB(uchar* serialized, allocator alloc, freeor free, char endian, size_t

/******************************************************************
 * $Log$
 * Revision 1.21  2006/02/03 09:52:14  strk
 * Changed int4 typedefs to use POSIX uint32_t
 *
 * Revision 1.20  2006/01/09 15:12:02  strk
 * ISO C90 comments
 *