Skip Menu |

This queue is for tickets about the DBD-SQLite CPAN distribution.

Report information
The Basics
Id: 44876
Status: resolved
Priority: 0/
Queue: DBD-SQLite

People
Owner: Nobody in particular
Requestors: janus [...] errornet.de
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Patch to fix includes in the SQLITE_LOCATION case
The following small patch against current subversion fixes the include path when SQLITE_LOCATION is enabled. Regards, Simon
Subject: Makefile_PL.diff
Index: Makefile.PL =================================================================== --- Makefile.PL (revision 6116) +++ Makefile.PL (working copy) @@ -166,7 +166,7 @@ my @CC_INC = ( '-I$(DBI_INSTARCH_DIR)', ); if ( $sqlite_inc ) { - push @INC, "-I$sqlite_inc"; + push @CC_INC, "-I$sqlite_inc"; } my @CC_DEFINE = (
thanks, applied in 1.22_03. On Wed Apr 08 12:38:43 2009, janus wrote: Show quoted text
> The following small patch against current subversion fixes the include > path when SQLITE_LOCATION is enabled. > > Regards, > Simon