pkgsrc/databases/postgresql82-client/buildlink3.mk
adam 52694bfff8 Changes 8.2.1:
* Fix crash with SELECT ... LIMIT ALL (also LIMIT NULL)
* "Several /contrib/tsearch2" fixes
* On Windows, make log messages coming from the operating system use
  ASCII encoding
  This fixes a conversion problem when there is a mismatch between
  the encoding of the operating system and database server.
* Fix Windows linking of pg_dump using "win32.mak"
* Fix planner mistakes for outer join queries
* Fix several problems in queries involving sub-SELECTs
* Fix potential crash in SPI during subtransaction abort
  This affects all PL functions since they all use SPI.
* Improve build speed of PDF documentation
* Re-add JST (Japan) timezone abbreviation
* Improve optimization decisions related to index scans
* Have psql print multi-byte combining characters as before, rather
  than output as \u
* Improve index usage of regular expressions that use parentheses
  This improves psql \d performance also.
* Make pg_dumpall assume that databases have public CONNECT
  privilege, when dumping from a pre-8.2 server
  This preserves the previous behavior that anyone can connect to a
  database if allowed by "pg_hba.conf".
2007-01-08 18:16:09 +00:00

34 lines
1.2 KiB
Makefile

# $NetBSD: buildlink3.mk,v 1.3 2007/01/08 18:16:09 adam Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
POSTGRESQL82_CLIENT_BUILDLINK3_MK:= ${POSTGRESQL82_CLIENT_BUILDLINK3_MK}+
.include "../../mk/bsd.fast.prefs.mk"
.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+= postgresql82-client
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npostgresql82-client}
BUILDLINK_PACKAGES+= postgresql82-client
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}postgresql82-client
.if ${POSTGRESQL82_CLIENT_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.postgresql82-client+= postgresql82-client>=8.2.0
BUILDLINK_PKGSRCDIR.postgresql82-client?= ../../databases/postgresql82-client
. if defined(PG_SUBPREFIX) && !empty(PG_SUBPREFIX)
BUILDLINK_INCDIRS.postgresql82-client?= ${PG_SUBPREFIX}/include
BUILDLINK_LIBDIRS.postgresql82-client?= ${PG_SUBPREFIX}/lib
. endif
# This variable contains the libraries need to link most clients.
BUILDLINK_LDADD.postgresql82-client= -lpq ${BUILDLINK_LDADD.gettext}
BUILDLINK_FILES.postgresql82-client+= bin/pg_config
.endif # POSTGRESQL82_CLIENT_BUILDLINK3_MK
.include "../../security/openssl/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}