diff options
author | bad <bad> | 1999-07-13 17:42:57 +0000 |
---|---|---|
committer | bad <bad> | 1999-07-13 17:42:57 +0000 |
commit | 45e6fd983c27134cc09fad81b967632a2df61282 (patch) | |
tree | daed59747cee9140fd60535f683cf94a23c750a2 /databases | |
parent | a5aa3dd842553152d43cce928fafb5ba50e649e5 (diff) | |
download | pkgsrc-45e6fd983c27134cc09fad81b967632a2df61282.tar.gz |
Must list tcl and tk includes in --with-includes. Noticed by
Bjoern Labitzke.
Also, libs and includes are found in LOCALBASE.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 724cdbeff13..3222f88b084 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 1999/06/06 14:25:45 tv Exp $ +# $NetBSD: Makefile,v 1.35 1999/07/13 17:42:57 bad Exp $ # FreeBSD Id: Makefile,v 1.22 1997/12/24 01:21:37 alex Exp # @@ -32,11 +32,10 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX}/${PGUSER} \ --enable-locale \ --with-tcl \ - --with-tclconfig="${PREFIX}/lib/tcl8.0 ${PREFIX}/lib/tk8.0" \ - --with-includes=${PREFIX}/include \ + --with-tclconfig="${LOCALBASE}/lib/tcl8.0 ${LOCALBASE}/lib/tk8.0" \ + --with-includes="${LOCALBASE}/include ${LOCALBASE}/include/tcl8.0 ${LOCALBASE}/include/tk8.0" \ --with-libs=${PREFIX}/lib \ --with-template=`${ECHO} ${OPSYS} | ${TR} '[A-Z]' '[a-z]'` -CPPFLAGS+= -I${LOCALBASE}/include/tcl8.0 -I${LOCALBASE}/include/tk8.0 INSTALL_TARGET= install install-man |