Subject: | Compile for win32 with VS2005 |
Hi I'm trying to build Geo::Proj4 for windows and I can't get Proj4.c to
compile.
I couldn't get the perl makefile to work so I quickly hacked one
together that should work (see the the attached Makefile.PL).
However when I try to make the distribution I get the an error as
attached with err.log.
I have compiled and used proj-4.5.0 for projlib. But I've also tried
using 4.4.9
Not sure if this is a bug or an environment setup issue. I'm using
VS2005 and ActiveState perl 5.8.8 build 819 on windows xp sp2.
Thanks
Subject: | err.log |
Subject: | Makefile.PL |
use ExtUtils::MakeMaker;
require 5.006;
WriteMakefile
( NAME => 'Geo::Proj4'
, VERSION_FROM => 'lib/Geo/Proj4.pm'
, AUTHOR => 'Mark Overmeer, Schuyler Erle, Rich Gibson'
, ABSTRACT => 'Proj4 library for carthographic projections'
, CCFLAGS => "-IC:\\Dev\\AUSPOS\\src\\libs\\proj-4.5.0\\src"
, LIBS => [ "-lC:\\Dev\\AUSPOS\\src\\libs\\proj-4.5.0\\src\\proj" ]
);