Automatic conversion of the NetBSD pkgsrc CVS module, use with care
Find a file
abs ca61c6c701 Updated databases/jdbc-postgresql81 to 8.1-480:
Version 8.1-408 (2006-12-01)

  * update Italian translation update. (jurka) Thanks to Giuseppe
    Sacco.
  * update Brazilian Portuguese translation update. (jurka) Thanks
    to Euler Taveira de Oliveira.
  * fix When issuing multiple queries on one statement the driver
    was not clearing some intermediate state between executions.
    When an update, insert, or delete followed a select, the select's
    results were still available and would be returned instead of
    the non-query's affected row count. (jurka) Thanks to Gilles
    Rayrat.
  * fix When the driver asks the server to resolve a type the
    resolved type is stored in the SimpleQuery object. When the
    statement is executed again the driver determines whether the
    existing types match or if it needs to be reprepared by comparing
    the current Statement's settings with the SimpleQuery. The
    Statement will have the unspecified oid while the SimpleQuery
    will have the resolved oid, so there will not be a match and
    the statement will needlessly be reprepared. Allow an unspecified
    oid to match any resolved type. (jurka) Thanks to Akira Sato.
  * fix When creating a ResultSet from a refcursor, respect the
    creating ResultSet's scollability setting. The way the ResultSet
    is created means that it will always be scrollable anyway, so
    there's no downside. We cannot support updatable refcursor
    ResultSets until we get updatable cursors. (jurka)
  * fix Fix a bug in function escape processing. When dealing
    with an invalid escape the code attempted to read until it hit
    the escape end and press on, but it forgot to increment its
    position counter. This lead to an infinite loop that eventually
    resulted in an out of memory error. (jurka)
  * fix Update the documentation to reflect the fact that the
    default prepareThreshold is five, not zero. (jurka)
  * fix Correct error message in CallableStatement to identify
    the mismatch with the registered return type. (jurka)
  * fix Correct escaping of named savepoints which follow
    identifier, not literal rules. (jurka) Thanks to Michael Paesold.


Version 8.1-407 (2006-05-23)

  * update Remove documentation's claim that we don't support
    functions with out parameters. (jurka)
  * update Updated German translation. (jurka) Thanks to Andre
    Bialojahn.
  * fix Using callable statements against older server versions
    (7.4 or 8.0) did not work because of recent changes to output
    parameter handling. 7.4 and 8.0 do not support function output
    parameters, but they still must support the functions return
    value. Every function must have either a return value or an
    output parameter so we force the minimum output parameter count
    to one. (jurka)
  * fix When running against a 8.1+ server with protocol version
    2 we cannot handle output parameters and can only handle the
    traditional function return value. (jurka)

Version 8.1-406 (2006-05-22)

  * update Updated German transalation. (jurka) Thanks to Andre
    Bialojahn.
  * fix Fix a couple of bugs in CallableStatement outputs. An
    oversight in the checking of actual results vs. what the caller
    specified for registerOutParameter was checking all register
    parameters against the first out parameter, not the parameter
    it actually corresponded with. Also with a function that has
    an in parameter and an out parameter, the out parameter will
    be registered at position 2, but will be returned in a result
    at position 1 because the first input parameter generates no
    output. The driver needs to correctly map between these two
    parameter offsets. (davec) Thanks to Luis Londono.
  * fix Error messages were not run through MessageFormat if it
    didn't have any parameters. This was a problem because all
    error messages are written expecting to be run through the
    formatter and use two single quotes when only one is desired
    in the output. Without being run through the formatter the two
    quotes appeared in the output. (jurka) Thanks to Giuseppe Sacco.
  * fix Add some more synchronization to the TypeInfoCache. We
    need synchronization around the PreparedStatements because they
    may not be used by two threads at the same time. Additional
    synchronization is applied to the maps to ensure that they are
    in sync with each other. Make _pgNameToSQLType static. (jurka)
    Thanks to Till Toenges.
  * fix An OutOfMemoryError during fe<->be communication leaves
    the protocol in an unknown state. This prevents the caller from
    even closing the connection. Checking every allocation is a
    lot of work, but the most likely error location is going to be
    when receiving large result sets. Put in checks around receiving
    row data to detect memory exhaustion, keep the protocol in a
    known state, and report the failure back to the user. (jurka)
    Thanks to David Blasby.
  * fix When we're unable to parse a timestamp value, the error
    message should print out the bad value. It was printing a char
    array which showed up as a useless [C@xxxx. (jurka) Thanks to
    Oliver Jowett.
  * fix gij/gcj has some JDK1.5 classes in it, but it only supports
    JDK1.4 as the default source level. This confuses older ant
    versions and our build script tries to compile a JDK1.5 version.
    Instead of letting ant detect the java version, let the jvm
    tell us that itself using java.specification.version as suggested
    by Heikki Linnakangas. Also put in a check for a JDK1.6 compile
    attempt and bail out with an explanatory unsupported error
    message instead of just failing at some random point. (jurka)
  * fix When a prepared statement uses different parameter types
    than what the statement was originally prepared for, the driver
    must replan the query for the new types. When doing this in
    batches the driver was not correctly freeing old plans. To
    cleanup prepared statements the driver records a reference to
    a query object in response to the ParseComplete message. The
    problem in this case was that since the driver sends multiple
    Parse messages before a Sync, when the driver receives the
    first ParseComplete message the query object now contains a
    reference to the latest parsed statement, not the first. So it
    was only cleaning up the last parsed statement not all of them.
    (jurka) Thanks to Peter Eisentraut.
  * fix When the Connection retrieved from XAConnection.getConnection()
    is closed we do not want to rollback the transaction because
    the underlying connection is not closed and the transaction is
    being managed by the XAResource, not the Connection. (jurka)
    Thanks to Niels Beekman.
2007-01-13 21:34:40 +00:00
archivers add LICENSE=generic-nonlicense, because RESTRICTED makes it clear this 2007-01-11 19:08:50 +00:00
audio No need to include flac/buildlink3.mk, it is not supported 2007-01-13 21:28:11 +00:00
benchmarks Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
biology Modular Xorg support. 2007-01-11 11:37:07 +00:00
bootstrap Changed the URL for downloading gcc, since the old one gives a 404. 2007-01-11 03:34:10 +00:00
cad Add an option to allow a batch mode pcb to be built. Useful for webserver 2007-01-09 11:55:52 +00:00
chat Modular Xorg support. 2007-01-13 16:50:12 +00:00
comms Changes 3.0.12: 2007-01-07 13:46:18 +00:00
converters Add MASTER_SITE_SOURCEFORGE_JP to MASTER_SITES. 2007-01-08 13:34:12 +00:00
cross Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
crosspkgtools Update MASTER_SITES. 2006-11-18 18:32:05 +00:00
databases Updated databases/jdbc-postgresql81 to 8.1-480: 2007-01-13 21:34:40 +00:00
devel p5-File-Spec has gone (superseded by p5-PathTools), but the version in 2007-01-13 21:24:58 +00:00
distfiles
doc Note mldonkey PKGREVISION bump. 2007-01-13 18:41:56 +00:00
editors Updated editors/vim-share to 7.0.182 2007-01-10 14:26:50 +00:00
emulators Modular Xorg support. 2007-01-13 11:40:08 +00:00
finance Modular Xorg support. 2007-01-13 16:50:12 +00:00
fonts fontconfig's configure doesn't support multiple --with-add-fonts, 2007-01-11 11:25:57 +00:00
games Modular Xorg support. 2007-01-13 16:50:12 +00:00
geography Update to 1.2.1 2007-01-12 18:11:49 +00:00
graphics Modular Xorg support. 2007-01-13 16:50:12 +00:00
ham Made the package work for unprivileged users by installing the set-uid 2007-01-08 03:42:13 +00:00
inputmethod Fix build with standard-compliant^W^Wnon-NetBSD iconv. 2007-01-13 13:02:54 +00:00
lang Update to 1.5.0_10. Changes are in the release notes: 2007-01-12 18:23:38 +00:00
licenses Add LHa distribution notice from lha's manual page. 2007-01-08 03:09:06 +00:00
mail p5-File-Spec has gone (superseded by p5-PathTools), but the version in 2007-01-13 21:24:58 +00:00
math Needs libXt explicitly. 2007-01-08 15:00:36 +00:00
mbone Modular Xorg support. Never use static linkage on some platforms by 2007-01-13 11:27:02 +00:00
meta-pkgs xearth -> xplanet 2006-12-24 10:36:49 +00:00
misc Modular Xorg support. 2007-01-13 18:51:51 +00:00
mk Add descriptions for speex, sndfile, samplerate. Sort. 2007-01-12 20:28:03 +00:00
multimedia Add support for flac-1.1.3 based on patches from Josh Coalson on 2007-01-13 18:33:44 +00:00
net Fix build on DragonFly and with modular Xorg. 2007-01-13 18:54:24 +00:00
news Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
packages
parallel use ssh for X86SOL2 and DRAGONFLY for the rsh command to make these two 2007-01-09 02:22:03 +00:00
pkgtools Updated url2pkg to 2.3. 2007-01-12 21:35:52 +00:00
print update to 1.3.3.7 2007-01-11 19:19:01 +00:00
regress Added a test new case for /bin/sh. 2006-11-09 12:39:55 +00:00
security Give up maintainership as I don't use this anymore. 2007-01-13 00:56:54 +00:00
shells Fix bash's default path to not have hard-coded /usr/pkg/bin but use 2007-01-08 19:26:31 +00:00
sysutils Modular Xorg support. 2007-01-13 16:50:12 +00:00
templates In URLs, the "NetBSD" should be capitalized as such, i.e. "NetBSD.org", 2006-07-06 21:14:19 +00:00
textproc Fix a typo. 2007-01-10 23:20:54 +00:00
time Modular Xorg support. 2007-01-11 10:35:40 +00:00
wm Modular Xorg support. 2007-01-13 16:50:12 +00:00
www Needs Python 2.4+ as the list comprehension is not support before 2007-01-11 11:30:00 +00:00
x11 Modular Xorg support. 2007-01-13 18:51:51 +00:00
Makefile The tool definitions must come before including bsd.prefs.mk. Pointed 2007-01-07 00:57:36 +00:00
pkglocate
README Refer doc/pkgsrc.txt instead of Packages.txt. 2005-05-07 22:16:38 +00:00

$NetBSD: README,v 1.18 2005/05/07 22:18:28 wiz Exp $

Please see doc/pkgsrc.txt for information.