diff options
author | recht <recht@pkgsrc.org> | 2004-06-27 16:38:32 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-06-27 16:38:32 +0000 |
commit | ca5db60df5e9b528f2e92ee5c468787063c85b67 (patch) | |
tree | 3b660851ba6a3e9869efd980034c064ce64d5583 /databases/postgresql74-lib | |
parent | 11fcf246e2877f8fe435b5299abc12939bf63e00 (diff) | |
download | pkgsrc-ca5db60df5e9b528f2e92ee5c468787063c85b67.tar.gz |
update to 7.4.3
changes:
* Fix temporary memory leak when using non-hashed aggregates (Tom)
* ECPG fixes, including some for Informix compatibility (Michael)
* Fixes for compiling with thread-safety, particularly Solaris (Bruce)
* Fix error in COPY IN termination when using the old network
protocol (ljb)
* Several important fixes in pg_autovacuum (Matthew T. O'Connor)
* Fix problem with reading tar-format dumps on NetBSD and BSD/OS (Bruce)
* Several JDBC fixes
* Fix ALTER SEQUENCE RESTART where last_value equals the restart
value (Tom)
* Repair failure to recalculate nested sub-selects (Tom)
* Fix problems with non-constant expressions in LIMIT/OFFSET
* Support FULL JOIN with no join clause, such as X FULL JOIN Y ON
TRUE (Tom)
* Fix another zero-column table bug (Tom)
* Improve handling of non-qualified identifiers in GROUP BY clauses
in sub-selects (Tom)
* Do not generate "NATURAL CROSS JOIN" when decompiling rules (Tom)
* Add checks for invalid field length in binary COPY (Tom)
* Avoid locking conflict between ANALYZE and LISTEN/NOTIFY
* Numerous translation updates (various contributors)
Diffstat (limited to 'databases/postgresql74-lib')
-rw-r--r-- | databases/postgresql74-lib/Makefile | 7 | ||||
-rw-r--r-- | databases/postgresql74-lib/PLIST | 4 | ||||
-rw-r--r-- | databases/postgresql74-lib/buildlink3.mk | 4 |
3 files changed, 6 insertions, 9 deletions
diff --git a/databases/postgresql74-lib/Makefile b/databases/postgresql74-lib/Makefile index fb1bc61b642..9d6a72592bb 100644 --- a/databases/postgresql74-lib/Makefile +++ b/databases/postgresql74-lib/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2004/04/27 11:54:20 recht Exp $ +# $NetBSD: Makefile,v 1.5 2004/06/27 16:38:32 recht Exp $ PKGNAME= postgresql-lib-${BASE_VERS} -PKGREVISION= 1 SVR4_PKGNAME= pstgl COMMENT= PostgreSQL database headers and libraries @@ -16,10 +15,8 @@ BUILD_DIRS+= ${WRKSRC}/src/pl .include "../../mk/bsd.prefs.mk" # As told by Josh Berkus -# currently broken for SunOS, will be fixed in 7.4.3 .include "../../mk/pthread.buildlink3.mk" -.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "native" \ - && ${OPSYS} != "SunOS" +.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "native" CONFIGURE_ARGS+= --enable-thread-safety .endif diff --git a/databases/postgresql74-lib/PLIST b/databases/postgresql74-lib/PLIST index 26b38d488f5..11c59c9c742 100644 --- a/databases/postgresql74-lib/PLIST +++ b/databases/postgresql74-lib/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2004/04/19 00:02:33 recht Exp $ +@comment $NetBSD: PLIST,v 1.2 2004/06/27 16:38:32 recht Exp $ bin/ecpg include/ecpg_informix.h include/ecpgerrno.h @@ -360,7 +360,7 @@ lib/libecpg.so.4.1 lib/libecpg_compat.a lib/libecpg_compat.so lib/libecpg_compat.so.1 -lib/libecpg_compat.so.1.1 +lib/libecpg_compat.so.1.2 lib/libpgtypes.a lib/libpgtypes.so lib/libpgtypes.so.1 diff --git a/databases/postgresql74-lib/buildlink3.mk b/databases/postgresql74-lib/buildlink3.mk index be7978cb6ff..24c936a0afd 100644 --- a/databases/postgresql74-lib/buildlink3.mk +++ b/databases/postgresql74-lib/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.2 2004/04/20 22:37:22 recht Exp $ +# $NetBSD: buildlink3.mk,v 1.3 2004/06/27 16:38:32 recht Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ POSTGRESQL_LIB_BUILDLINK3_MK:= ${POSTGRESQL_LIB_BUILDLINK3_MK}+ @@ -11,7 +11,7 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npostgresql-lib} BUILDLINK_PACKAGES+= postgresql-lib .if !empty(POSTGRESQL_LIB_BUILDLINK3_MK:M+) -BUILDLINK_DEPENDS.postgresql-lib+= postgresql-lib>=7.4.2nb1 +BUILDLINK_DEPENDS.postgresql-lib+= postgresql-lib>=7.4.3 BUILDLINK_PKGSRCDIR.postgresql-lib?= ../../databases/postgresql74-lib BUILDLINK_INCDIRS.postgresql-lib?= include/postgresql .endif # POSTGRESQL_LIB_BUILDLINK3_MK |