Changes between Version 4 and Version 5 of BuildWithMingw


Ignore:
Timestamp:
Jun 9, 2009, 1:42:31 PM (15 years ago)
Author:
ajolma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildWithMingw

    v4 v5  
    6363.libs/libproj.a -Wl,--no-whole-archive /c/mingw/lib/libmingw32.a
    6464}}}
     65
     66[http://postgis.refractions.net/pipermail/postgis-users/2004-June/004960.html See also this]
     67
     68* GDAL
     69  * GTK+ may cause problems because it contains libtiff, I move libtiff includes away and use the internal libtiff
     70  * $(GDAL_ROOT)/ needs to be removed from GNUmakefile
     71  * I've made a gdal.pc, which is used by Geo::Raster and Geo::Vector
     72{{{
     73prefix=/usr/local
     74exec_prefix=${prefix}
     75libdir=${exec_prefix}/lib
     76includedir=${prefix}/include
     77
     78Name: GDAL
     79Description: Geospatial Data Abstraction Library
     80Version: 1.7.0
     81Requires: libcurl xerces-c
     82Libs:  -L${exec_prefix}/lib -lgdal.dll -lgeos.dll -lgeos_c.dll -lexpat -lpq -ljpeg -lpng12 -lz
     83Cflags:  -I${prefix}/include
     84}}}
     85* libral
     86  * there's a MinGW specific Makefile, use it The DLL's may be bloated because of debug code, use strip --strip-debug x.dll to remove it.