diff options
author | hauke <hauke@pkgsrc.org> | 2019-07-03 10:06:50 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2019-07-03 10:06:50 +0000 |
commit | 1187c38fbf72be15d8e3c27f8f5e0329f449f9a0 (patch) | |
tree | 3d549884929c7fd8ac8b9aee97d342c8cd4b5c24 /editors/xemacs | |
parent | b60d13bce30d8bb534e9dd71a722d5a722e5ddfc (diff) | |
download | pkgsrc-1187c38fbf72be15d8e3c27f8f5e0329f449f9a0.tar.gz |
Explicitly disable postgresql support. We do not declare the
dependency, and configure picks it up outside LOCALBASE on 'rich' base
OS installations (read: Linuxen).
If anyone seriously wanted to use postgresql from XEmacs, it would
have to be made a proper option.
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile | 4 | ||||
-rw-r--r-- | editors/xemacs/Makefile.common | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index e1aa39de1d3..b1772697ac3 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.123 2019/04/11 16:05:24 hauke Exp $ +# $NetBSD: Makefile,v 1.124 2019/07/03 10:06:50 hauke Exp $ PKGNAME= ${DISTNAME} -PKGREVISION= 5 +PKGREVISION= 6 COMMENT= XEmacs text editor version 21.4 # extra options for x11 support, not for sharing with xemacs-current-nox11 diff --git a/editors/xemacs/Makefile.common b/editors/xemacs/Makefile.common index 022a203ac2a..8cd80f7b48f 100644 --- a/editors/xemacs/Makefile.common +++ b/editors/xemacs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.29 2019/06/08 10:41:00 rillig Exp $ +# $NetBSD: Makefile.common,v 1.30 2019/07/03 10:06:50 hauke Exp $ # # used by editors/xemacs-nox11/Makefile # used by editors/xemacs/Makefile @@ -41,6 +41,7 @@ CONFIGURE_ARGS+= --infopath=${PREFIX}/${PKGINFODIR} CONFIGURE_ARGS+= --with-clash-detection CONFIGURE_ARGS+= --with-mule=yes CONFIGURE_ARGS+= --with-msw=no +CONFIGURE_ARGS+= --with-postgresql=no CONFIGURE_ARGS+= --pdump CONFIGURE_ARGS+= --with-system-malloc CFLAGS+= -Dunix |