21c1225261
* Recently introduced test sql_type_cast.t cannot work with DBI less than 1.611. * Minor change to Makefile.PL to avoid use of unitialised warning on $ENV{LD_LIBRARY_PATH} in warning when it is not set. Changes 1.30_7: * Some time ago (I don't know when) a few internal errors generated by DBD::ODBC got ignored. There are about 5 of them but I seriously doubt anyone would hit any other than the data truncated error (which is reported by the ODBC driver anyway) and "no select statement currently executing". You can see rt_68720.t in the t directory for an example of the latter. * An extra argument has been added to the sub associated with odbc_err_handler. The arguments passed to the odbc_err_handler are now state (string), error (string), native error code (number) and the status returned from the last ODBC API. The status will be SQL_ERROR (-1) for errors or SQL_SUCCESS_WITH_INFO (1) for informational messages.
24 lines
622 B
Makefile
24 lines
622 B
Makefile
# $NetBSD: Makefile,v 1.7 2011/08/06 20:18:39 adam Exp $
|
|
|
|
DISTNAME= DBD-ODBC-1.31
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/DBD-ODBC/
|
|
COMMENT= Perl DBI/DBD driver for ODBC
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
.include "options.mk"
|
|
|
|
PERL5_PACKLIST= auto/DBD/ODBC/.packlist
|
|
|
|
MAKE_ENV+= PERL_MM_USE_DEFAULT=1
|
|
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|