~ubuntu-branches/ubuntu/karmic/postgresql-8.4/karmic-security

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-02-01 22:30:52 UTC
  • mfrom: (0.1.7 upstream) (8.1.3 karmic-proposed)
  • Revision ID: james.westby@ubuntu.com-20110201223052-ikezaq42g6c3yv2e
Tags: 8.4.7-0ubuntu0.9.10
* New upstream security/bug fix release: (LP: #711318)
  - Fix buffer overrun in "contrib/intarray"'s input function for the
    query_int type.
    This bug is a security risk since the function's return address
    could be overwritten. Thanks to Apple Inc's security team for
    reporting this issue and supplying the fix. (CVE-2010-4015)
  - Avoid failures when "EXPLAIN" tries to display a simple-form CASE
    expression.
    If the CASE's test expression was a constant, the planner could
    simplify the CASE into a form that confused the expression-display
    code, resulting in "unexpected CASE WHEN clause" errors.
  - Fix assignment to an array slice that is before the existing range
    of subscripts.
    If there was a gap between the newly added subscripts and the first
    pre-existing subscript, the code miscalculated how many entries
    needed to be copied from the old array's null bitmap, potentially
    leading to data corruption or crash.
  - Avoid unexpected conversion overflow in planner for very distant
    date values.
    The date type supports a wider range of dates than can be
    represented by the timestamp types, but the planner assumed it
    could always convert a date to timestamp with impunity.
  - Fix pg_restore's text output for large objects (BLOBs) when
    standard_conforming_strings is on.
    Although restoring directly to a database worked correctly, string
    escaping was incorrect if pg_restore was asked for SQL text output
    and standard_conforming_strings had been enabled in the source
    database.
  - Fix erroneous parsing of tsquery values containing ... &
    !(subexpression) | ... .
    Queries containing this combination of operators were not executed
    correctly. The same error existed in "contrib/intarray"'s query_int
    type and "contrib/ltree"'s ltxtquery type.
  - Fix bug in "contrib/seg"'s GiST picksplit algorithm.
    This could result in considerable inefficiency, though not actually
    incorrect answers, in a GiST index on a seg column. If you have
    such an index, consider "REINDEX"ing it after installing this
    update. (This is identical to the bug that was fixed in
    "contrib/cube" in the previous update.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
dnl
18
18
m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
19
19
 
20
 
AC_INIT([PostgreSQL], [8.4.5], [pgsql-bugs@postgresql.org])
 
20
AC_INIT([PostgreSQL], [8.4.7], [pgsql-bugs@postgresql.org])
21
21
 
22
22
m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.61], [], [m4_fatal([Autoconf version 2.61 is required.
23
23
Untested combinations of 'autoconf' and PostgreSQL versions are not
1314
1314
  AC_LIBOBJ(getopt)
1315
1315
fi
1316
1316
 
 
1317
# mingw has adopted a GNU-centric interpretation of optind/optreset,
 
1318
# so always use our version on Windows.
 
1319
if test "$PORTNAME" = "win32"; then
 
1320
  AC_LIBOBJ(getopt)
 
1321
  AC_LIBOBJ(getopt_long)
 
1322
fi
 
1323
 
1317
1324
# Win32 support
1318
1325
if test "$PORTNAME" = "win32"; then
1319
1326
AC_REPLACE_FUNCS(gettimeofday)