|
On Windows, I had to do this:
perl -p -e "s/~DRIVER~/SQLite/g" c:\Perl\lib\auto\DBI\Driver.xst > SQLite.xsi
on Linux, the command is this:
/usr/bin/perl -p -e "s/~DRIVER~/SQLite/g" \
/usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/DBI/Driver.xst > SQLite.xsi
But, I haven't figured out exactly what or who needs a patch to get this to work on all platforms (which i think it must)
Pretty sure the fault lies in the DBI template driver code... not in SQLite. That being said, SQLite could patch up the makefile or spit out a warning if the letters ".xsi" aren't present (which they are not on many platforms)
|