mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
ebc37b4280
installed, the patched gram.y file would not be used and the security patch would be a no-op. Also, I've had reports of compilation errors related to bison. Since checking for the correct version of bison is hard and error prone, I'm doing what the postgresql distribution does - patching the yacc:ed .c file to get rid of the building dependency. Bumping portrevision of -server. Pointy hat to: me Noticed by: Mike Harding and others Security: http://www.vuxml.org/freebsd/6b4b0b3f-8127-11d9-a9e7-0001020eed82.html Approved by: seanc (implicit)
23 lines
542 B
Makefile
23 lines
542 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Aug 25 00:13:57 CEST 2004
|
|
# Whom: Palle Girgensohn <girgen@pingpong.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.port.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -client
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql80-server
|
|
|
|
BUILD_DIRS= src/include src/interfaces src/bin doc src/makefiles
|
|
CLIENT_ONLY= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|