Changes between Version 23 and Version 24 of CompileOnWindows
- Timestamp:
- 03/21/09 06:40:14 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompileOnWindows
v23 v24 204 204 char *datadir = PGSHAREDIR; 205 205 }}} 206 to:206 To: 207 207 {{{ 208 208 char *bindir = "/osgeo4w/apps/pgsql/bin"; 209 209 char *libdir = "/osgeo4w/apps/pgsql/lib"; 210 210 char *datadir = "/osgeo4w/apps/pgsql/share"; 211 }}} 212 5. In the msys console type: 211 }}} 212 5. Open c:\osgeo4w\postgresql-8.3.6\src\interfaces\libpq\crypt.c 213 214 6. At line 108 change: 215 {{{ 216 typedef int int32_t; 217 }}} 218 To: 219 {{{ 220 /*typedef int int32_t;*/ 221 }}} 222 7. In the msys console type: 213 223 {{{ 214 224 cd /osgeo4w/postgresql-8.3.6 215 ./configure --prefix=/osgeo4w /apps/pgsql\225 ./configure --prefix=/osgeo4w \ 216 226 --with-includes=/osgeo4w/include \ 217 227 --with-libraries=/osgeo4w/lib \ … … 229 239 230 240 {{{ 231 ./configure --prefix=/osgeo4w /apps/sqlite241 ./configure --prefix=/osgeo4w 232 242 make 233 243 make install