cbe5269763
Release notes: http://developer.postgresql.org/pgdocs/postgres/release-8-2-7.html Remove HIER patch option, since it is not available anymore. The site is down and original author responses that he does not maintain it anymore. PR: ports/116423 Remove option to build and link with thread safety, and always build thread safe instead. Decided after a discussion with postgresql hackers, and tested for a while in postgresql83. This helps when for example linking with openldap, or for using certain programming languages as postgresql functions.
24 lines
614 B
Makefile
24 lines
614 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Nov 2 00:13:57 CET 2005
|
|
# Whom: Palle Girgensohn <girgen@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.databases.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -client
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql82-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces \
|
|
src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
|
|
doc src/makefiles
|
|
CLIENT_ONLY= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|