> Please look at line 35 of the Makefile.PL. That's being executed on my > 5.8.0 (on Suse Linux, self compiled). Is that not being executed for some > reason on your machine or does the way I'm doing it cause a problem?
Ok in fact your prereqs are ok. The trouble is at top of Makefile.PL, when you add use DBI 1.201; use DBI::DBD; Makefile.PL will fail before we can do something with prereqs ... The only other way I see is to include needed method of DBI in your Makefile.PL, and after we can use prereqs and download rights modules. PS: There is ^M in your Makefile.PL
