c658a3b4f8
* Improve handling of getaddrinfo() on AIX This fixes a problem with starting the statistics collector, among other things. * Fix "failed to re-find parent key" errors in "VACUUM" * Fix race condition for truncation of a large relation across a gigabyte boundary by "VACUUM" * Fix bugs affecting multi-gigabyte hash indexes * Fix possible deadlock in Windows signal handling * Fix error when constructing an ARRAY[] made up of multiple empty elements * Fix ecpg memory leak during connection * to_number() and to_char(numeric) are now STABLE, not IMMUTABLE, for new initdb installs This is because lc_numeric can potentially change the output of these functions. * Improve index usage of regular expressions that use parentheses This improves psql \d performance also. * Update timezone database This affects Australian and Canadian daylight-savings rules in particular.
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
# $NetBSD: buildlink3.mk,v 1.9 2007/01/08 20:30:42 adam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
POSTGRESQL80_CLIENT_BUILDLINK3_MK:= ${POSTGRESQL80_CLIENT_BUILDLINK3_MK}+
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= postgresql80-client
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npostgresql80-client}
|
|
BUILDLINK_PACKAGES+= postgresql80-client
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}postgresql80-client
|
|
|
|
.if ${POSTGRESQL80_CLIENT_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.postgresql80-client+= postgresql80-client>=8.0.2
|
|
BUILDLINK_ABI_DEPENDS.postgresql80-client?= postgresql80-client>=8.0.5nb1
|
|
BUILDLINK_PKGSRCDIR.postgresql80-client?= ../../databases/postgresql80-client
|
|
|
|
. if defined(PG_SUBPREFIX) && !empty(PG_SUBPREFIX)
|
|
BUILDLINK_INCDIRS.postgresql80-client?= ${PG_SUBPREFIX}/include
|
|
BUILDLINK_LIBDIRS.postgresql80-client?= ${PG_SUBPREFIX}/lib
|
|
. endif
|
|
|
|
# This variable contains the libraries need to link most clients.
|
|
BUILDLINK_LDADD.postgresql80-client= -lpq ${BUILDLINK_LDADD.gettext}
|
|
|
|
BUILDLINK_FILES.postgresql80-client+= bin/pg_config
|
|
.endif # POSTGRESQL80_CLIENT_BUILDLINK3_MK
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|