pkgsrc/databases/p5-DBD-Oracle/Makefile

54 lines
1.4 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.20 2013/05/31 12:39:49 wiz Exp $
PkgSrc changes: - Updating package for p5 module DBD::Oracle to 1.23 from 1.22 Upstream changes: Changes in DBD-Oracle 1.23(svn rev 12724) Fix from rt.cpan.org ticket #=44788 bool in_lite should be char in_literal Fix for UTF8 and blobs by John Scoles with Milo van der Leij Fix for some warnings and one bug in ocitrace.h from Charles Jardine Fix in case there may be a bug in 11 where the OCI_ATTR_DATA_SIZE my return 0 which should never happen, John Scoles Fix on the Makefile.PL for a possible sql bug in IC from Martin Evans Added a change from a suggestion from Martin Evans for making ref cursors faster. Added rt.cpan.org Ticket #=42328 ora_objects attribute for extended embedded objects support from Tomas Pokorny Fix for rt.cpan.org Ticket #=42328 user defined types from different schema in describe_obj from Tomas Pokorny Added a README for sun suggested by Jim McCullars Clean up of white space and formatting to 4 tabs from John Scoles Fix for GCC 4.3 warnings from Eric Simon Standardized the dbd_verbose levels so they are all 3 and over from John Scoles Added private statement functions ora_stmt_type_name and ora_stmt_type from John Scoles Update to POD from Chris Underhill Added README.win64.txt with content from Alex Buttery Fix for rt.cpan.org Ticket #=21920 Bug with Oracle DBD for Mac OS X Instant Client From boingolover Added a few more constants to get rid of magic numbers from John Scoles Fix for rt.cpan.org Ticket #=38267 Inserts/Updates to BLOB's via synonyms fails from John Scoles Fix for rt.cpan.org Ticket #=39603 build problem and fix missing functions in oci.def from Zolt'an Sebesty'en Fix for rt.cpan.org Ticket #=39374 Makefile.PL: error when reducing echo messages from make from Tippa Fix for rt.cpan.org Ticket #=39232 binding large XMLTYPE fails on 64-bit perl from Jeff Klein Fix for rt.cpan.org Ticket #=38749 Warning of a NULL column in an aggregate function also added ora_oci_success_warn to display silent OCI warningsi from John Scoles Patch for UTF8 check on execute_array from David Mansfield and a little by John Scoles
2009-04-30 22:00:57 +02:00
DISTNAME= DBD-Oracle-1.23
PKGNAME= p5-${DISTNAME}
PKGREVISION= 4
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
MAINTAINER= pkgsrc-users@NetBSD.org
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
HOMEPAGE= http://search.cpan.org/dist/DBD-Oracle/
COMMENT= Perl DBI/DBD driver for Oracle databases
LICENSE= ${PERL5_LICENSE}
PERL5_PACKLIST= auto/DBD/Oracle/.packlist
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-DBD-Oracle
PKG_SUPPORTED_OPTIONS= # empty
PKG_SUGGESTED_OPTIONS= # empty
PKG_OPTIONS_REQUIRED_GROUPS= oralib
PKG_OPTIONS_GROUP.oralib= lib32 libsys libbase
PKG_SUGGESTED_OPTIONS= libsys
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
.include "../../mk/bsd.prefs.mk"
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
.include "../../mk/bsd.options.mk"
.if !defined(ORACLE_HOME)
PKG_FAIL_REASON+= "You must set ORACLE_HOME to the location of your Oracle installation"
.elif !exists(${ORACLE_HOME})
PKG_FAIL_REASON+= "The location of ORACLE_HOME does not exist"
.endif
BUILDLINK_PASSTHRU_DIRS+= ${ORACLE_HOME}
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
.if !empty(PKG_OPTIONS:Mlib32)
LDFLAGS+= -L${ORACLE_HOME}/lib32
LDFLAGS+= ${COMPILER_RPATH_FLAG}${ORACLE_HOME}/lib32
PkgSrc changes: - Updating package for p5 module DBD::Oracle to 1.23 from 1.22 Upstream changes: Changes in DBD-Oracle 1.23(svn rev 12724) Fix from rt.cpan.org ticket #=44788 bool in_lite should be char in_literal Fix for UTF8 and blobs by John Scoles with Milo van der Leij Fix for some warnings and one bug in ocitrace.h from Charles Jardine Fix in case there may be a bug in 11 where the OCI_ATTR_DATA_SIZE my return 0 which should never happen, John Scoles Fix on the Makefile.PL for a possible sql bug in IC from Martin Evans Added a change from a suggestion from Martin Evans for making ref cursors faster. Added rt.cpan.org Ticket #=42328 ora_objects attribute for extended embedded objects support from Tomas Pokorny Fix for rt.cpan.org Ticket #=42328 user defined types from different schema in describe_obj from Tomas Pokorny Added a README for sun suggested by Jim McCullars Clean up of white space and formatting to 4 tabs from John Scoles Fix for GCC 4.3 warnings from Eric Simon Standardized the dbd_verbose levels so they are all 3 and over from John Scoles Added private statement functions ora_stmt_type_name and ora_stmt_type from John Scoles Update to POD from Chris Underhill Added README.win64.txt with content from Alex Buttery Fix for rt.cpan.org Ticket #=21920 Bug with Oracle DBD for Mac OS X Instant Client From boingolover Added a few more constants to get rid of magic numbers from John Scoles Fix for rt.cpan.org Ticket #=38267 Inserts/Updates to BLOB's via synonyms fails from John Scoles Fix for rt.cpan.org Ticket #=39603 build problem and fix missing functions in oci.def from Zolt'an Sebesty'en Fix for rt.cpan.org Ticket #=39374 Makefile.PL: error when reducing echo messages from make from Tippa Fix for rt.cpan.org Ticket #=39232 binding large XMLTYPE fails on 64-bit perl from Jeff Klein Fix for rt.cpan.org Ticket #=38749 Warning of a NULL column in an aggregate function also added ora_oci_success_warn to display silent OCI warningsi from John Scoles Patch for UTF8 check on execute_array from David Mansfield and a little by John Scoles
2009-04-30 22:00:57 +02:00
.elif !empty(PKG_OPTIONS:Mlibsys)
LDFLAGS+= -L${ORACLE_HOME}/lib
LDFLAGS+= ${COMPILER_RPATH_FLAG}${ORACLE_HOME}/lib
Update from version 1.19nb1 to 1.22. Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18 02:13:03 +01:00
.elif !empty(PKG_OPTIONS:Mlibbase)
LDFLAGS+= -L${ORACLE_HOME}
LDFLAGS+= ${COMPILER_RPATH_FLAG}${ORACLE_HOME}
.endif
CFLAGS+= -I${ORACLE_HOME}/rdbms/public/
LDFLAGS+= -lclntsh
.include "../../databases/p5-DBI/buildlink3.mk"
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"