summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2001-06-23Use BUILDLINK_FIX_LIBTOOL_SED to replace for installed freetds directory.jlam1-1/+3
2001-06-23Generalize how the dependency pattern may be specified. Instead of justjlam12-69/+61
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib. Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
2001-06-21Add buildlink.mk files for use by other package Makefiles.jlam2-0/+77
2001-06-21Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam11-83/+87
2001-06-21Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-21Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam1-10/+9
2001-06-20Add buildlink.mk file for use by other package Makefiles.jlam1-0/+33
2001-06-20Whitespace chnages, and include bsd.buildlink.mk(!) missed in last commit.jlam1-6/+8
2001-06-20Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-20Purely cosmetic changes to make this line up nicely.jlam1-5/+8
2001-06-19Add buildlink.mk file for use by other package Makefiles.jlam1-0/+32
2001-06-17It is www.mysql.com and not www.mysql.com.org.veego1-2/+2
2001-06-13Just define POSTGRES_HOME in the environment instead of bothjlam1-4/+2
POSTGRES_INCLUDE and POSTGRES_LIB.
2001-06-13Set POSTGRES_INCLUDE and POSTGRES_LIB to appropriate values for building.rh1-1/+3
2001-06-12LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk ifjlam2-4/+3
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam6-12/+8
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-06-11The buildlink include and lib directories are added to CFLAGS, CPPFLAGS,jlam4-23/+20
CXXFLAGS, and LDFLAGS by the buildlink.mk files so remove the extra definitions to add them from the package Makefiles. As advised by the bsd.buildlink.mk file, also ensure that the buildlink.mk files are included prior to defining any package-specific CFLAGS/LDFLAGS to ensure that the buildlink directories are at the head of the compiler search paths.
2001-06-11Use bsd.buildlink.mk instead of duplicating code all over the place.jlam1-45/+10
2001-06-10Updated to 1.18mjl2-5/+5
Fixed that altering ShowErrorStatement also altered AutoCommit! Fixed DBD::Proxy to handle commit() and rollback(). Long overdue, sorry. Fixed incompatibility with perl 5.004 (but no one's using that right? :) Fixed connect_cached and prepare_cached to not be affected by the order of elements in the attribute hash. Fixed version number of DBI::Shell Defined and documented table_info() attribute semantics (ODBC compatible)
2001-06-10Use cookies (.*_done) to determine whether headers and libs have beenjlam1-6/+12
linked from a particular package, and add a pre-configure target to the buildlink.mk file to more painlessly use buildlink.mk files. A ${BUILDLINK_TARGETS} variable still exists in case a package _must_ define NO_CONFIGURE.
2001-06-10Remove dependency on ${BUILDLINK_TARGETS} in pre-configure and pre-buildjlam3-9/+3
targets as the buildlink.mk files now add the dependency automatically. Remove any NO_CONFIGURE definitions as they seem to be useless.
2001-06-09RCS police.wiz3-3/+7
2001-06-09Sort.wiz1-2/+2
2001-06-02Update to 1.00.mjl2-5/+5
- Fetching all records now resets Active flag as it should.
2001-06-02Updated to 1.16.mjl2-5/+5
Reimplemented fetchrow_hashref in C, now fetches about 25% faster! Changed behaviour if both PrintError and RaiseError are enabled to simply do both (in that order, obviously :) Slight reduction in DBI handle creation overhead Fixed $dbh->{Driver} & $sth->{Database} to return 'outer' handles. Fixed execute param count check to honour RaiseError Fixed build for perl5.6.1 with PERLIO Fixed client sql restrictions in ProxyServer.pm Fixed batch mode command parsing in Shell Fixed typo in selectcol_arrayref docs Fixed selectrow_hashref to be available to callers Fixed core dump if statement handle didn't define Statement attribute Added bind_param_inout docs to DBI::DBD Added note to data_sources() method docs that some drivers may require a connected database handle to be supplied as an attribute Trace of install_driver method now shows path of driver file loaded Changed many '||' to 'or' in the docs Updated DBD::ADO again (improvements in error handling) Updated Win32::DBIODBC (Win32::ODBC emulation) Updated email and web addresses in DBI::FAQ
2001-06-02Update to 0.38: Changes (incomplete, sorry, that's all there is)mjl2-5/+5
- SearchBuilder.pm - refactored to allow LEFT joins. - SearchBuilder::Record::Cachable now constructs cache keys in a way that doesn't lose when records in different tables have the same keys. - Added DBIx::SearchBuilder::Record::Cachable from <mhat@netlag.com> - Changed SearchBuilder->Count to do the right thing if no query has been performed
2001-05-29Update postgresql to 7.1.2. Also update postgresql packages built fromjlam3-10/+11
postgresql sources: postgresql-client, postgresql-docs, postgresql-lib, postgresql-server, postgresql-plperl, postgresql-pltcl, odbc-postgresql, py-postgresql, tcl-postgresql, tk-postgresql to 7.1.2 or to depend on postgresql-libs-7.1.2. Changes from version 7.1.1: Fix PL/PgSQL SELECTs when returning no rows Fix for psql backslash core dump Referential integrity permission fix Optimizer fixes pg_dump cleanups
2001-05-28Add buildlink.mk file to link appropriate libraries and headers intojlam1-0/+59
${BUILDLINK_INCDIR} and ${BUILDLINK_LIBDIR}, to be used by other packages.
2001-05-26Update to 0.1027. Changes:mjl2-5/+5
* lib/DBD/File.pm (table_info): Added closedir().
2001-05-26Update to 0.1020. Changes:mjl2-5/+5
* Changed distribution to include files generated by Solaris bison 1.27 * Added LIMIT clause
2001-05-25Update to 0.99. Changes aremjl2-6/+7
- fix segmentation fault in pg_error - bug-fix for core-dump after any failed function call - add support for the datatype bytea - fix bug in connect method, which erroneously set the userid and the password to the environment variables DBI_USER and DBI_PASS - which removed the special handling of a backslash when used for octal presentation. Now a backslash always will be escaped. - remove memory-leak in ping function, bug-fix - correct the recognition of primary keys in table_attributes(). - fix a segmentation fault in DBD::pg::blob_read() when reading LOBs that required perl to reallocate space for the variable holding the scalar value - updated test.pl to create a test blob larger than 256 bytes (now 128 Kbytes) - fix a seg-fault when inserting large amounts of text. - remove the newlines from the error messages and quote date placeholders.
2001-05-25Add definitions for BUILDLINK_INCDIR and BUILDLINK_LIBDIR used by thejlam1-2/+6
post-extract target.
2001-05-24Standardize name of file to include for build-links to be "buildlink.mk".jlam4-24/+23
Use BUILDLINK_INCDIR, BUILDLINK_LIBDIR for locations of linked headers and libraries. Create a variable BUILDLINK_TARGETS whose value is the list of build-link targets to execute.
2001-05-24Bump dependency on tcl to the latest version...it's needed to actuallyjlam1-2/+2
build the software, but a lower dependency may be used when running the software.
2001-05-23ODBC-specific PostgreSQL homepagejlam1-1/+2
2001-05-22Use editline readline emulation when available. Also install the man pagejlam8-37/+92
for sqsh.
2001-05-22Sort.jlam1-23/+23
2001-05-22Update pgaccess to 0.98.7. Changes from version 0.98.6 include:jlam4-25/+20
* Fixed table creation when all columns are inherited and no new columns are added * Geometry improvements in diagram definition
2001-05-21Use useradd and groupadd on Linux as well as SunOSabs1-2/+2
2001-05-18LDFLAGS is already set to -L... -Wl,-R..., and CFLAGS and LDFLAGS arejlam1-7/+6
already added to CONFIGURE_ENV by bsd.pkg.mk. Also some minor cosmetic changes.
2001-05-18Move the message that informs the user of the possible need to dump thejlam3-10/+17
databases prior to installing a new version of PostgreSQL from PRE-INSTALL time to DEINSTALL time. Remove ${CAT} from the INSTALL file as it's no longer needed in the script.
2001-05-16Fix problem reported by David Brownlee <abs@netbsd.org> where psql isn'tjlam1-3/+1
built with readline support despite linking against libreadline.
2001-05-16Cosmetic change: sort Makefile includesjlam1-2/+2
2001-05-16Update for moved Makefile.getoptabs1-2/+2
2001-05-16The CFLAGS and LDFLAGS settings have migrated to Makefile.common injlam1-4/+1
databases/postgresql.
2001-05-16Adapt postgresql-client to use devel/readline/Makefile.readline insteadjlam3-37/+18
of the one in databases/postgresql. Remove the Makefile.readline in databases/postgresql as it's no longer used by any packages.
2001-05-15Move Makefile.getopt to pkgsrc/devel/libgetopt and cosmetic updatesjlam2-24/+3
to Makefile.readline.
2001-05-15Fix dependencies and post-extract target. "Make build" injlam2-11/+17
databases/postgresql should now correctly trigger the full build and installation of PostgreSQL.
2001-05-14Surround possible empty string in quotes so [ sees an argument.jlam1-2/+2
2001-05-14Generalize some of the code a bit to make it easier to cut-and-paste intojlam1-2/+2
other scripts.