Changes between Version 1 and Version 2 of BuildingWithMinGW


Ignore:
Timestamp:
Dec 22, 2007, 2:18:34 AM (16 years ago)
Author:
Ari Jolma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingWithMinGW

    v1 v2  
    88
    99And you should have libgdal-1.dll in your c:\msys\1.0\local\bin and libgdal-1.dll.a in c:\msys\1.0\local\lib.
     10
     11expat:
     12
     13get libexpat.dll and create an import library with commands (in mingw\bin):
     14
     15{{{
     16pexports libexpat.dll | perl def.pl >libexpat.def
     17dlltool -d libexpat.def -l ..\lib\libexpat.dll.a
     18}}}
     19
     20where def.pl is a small perl program to add an underscored alias:
     21
     22{{{
     23while (<STDIN>) {
     24    $a = $_;
     25    print $_;
     26    if (/^XML/) {
     27        chomp;
     28        s/\r//;
     29        print '_'."$_ = $a";
     30    }
     31}
     32}}}