summaryrefslogtreecommitdiff
path: root/lang/algol68g
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-21 07:02:56 +0000
committerrillig <rillig@pkgsrc.org>2020-05-21 07:02:56 +0000
commitcba8357361d022d42a928eefacbc1dd56273b80f (patch)
treea412ebe2df1f6703dcaa80ec21bdbda8c22c0b03 /lang/algol68g
parent0d567946ae92586ca125a0a9c43acc6b27671380 (diff)
downloadpkgsrc-cba8357361d022d42a928eefacbc1dd56273b80f.tar.gz
lang/algol68g: fix outdated configure options
Found by GNU_CONFIGURE_STRICT.
Diffstat (limited to 'lang/algol68g')
-rw-r--r--lang/algol68g/Makefile3
-rw-r--r--lang/algol68g/options.mk10
2 files changed, 7 insertions, 6 deletions
diff --git a/lang/algol68g/Makefile b/lang/algol68g/Makefile
index bc25295d83f..51ecf60fa0f 100644
--- a/lang/algol68g/Makefile
+++ b/lang/algol68g/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2020/04/12 02:50:02 ryoon Exp $
+# $NetBSD: Makefile,v 1.17 2020/05/21 07:02:56 rillig Exp $
DISTNAME= algol68g-2.8.4
+PKGREVISION= 1
CATEGORIES= lang
MASTER_SITES= http://jmvdveer.home.xs4all.nl/
diff --git a/lang/algol68g/options.mk b/lang/algol68g/options.mk
index e620b7a08d3..eaf4fe48b36 100644
--- a/lang/algol68g/options.mk
+++ b/lang/algol68g/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2013/06/30 09:43:31 ryoon Exp $
+# $NetBSD: options.mk,v 1.3 2020/05/21 07:02:56 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.a68g
PKG_SUPPORTED_OPTIONS= plotutils pgsql
@@ -8,17 +8,17 @@ PKG_SUGGESTED_OPTIONS= plotutils
.if !empty(PKG_OPTIONS:Mplotutils)
. include "../../graphics/plotutils/buildlink3.mk"
-CONFIGURE_ARGS+= --with-plotutils
+CONFIGURE_ARGS+= --enable-plotutils
.else
-CONFIGURE_ARGS+= --without-plotutils
+CONFIGURE_ARGS+= --disable-plotutils
.endif
# It seems that when including PostgreSQL support it doesn't actually
# need to have it installed at build time, just at run time.
# So maybe this DEPENDS is undesirable.
.if !empty(PKG_OPTIONS:Mpgsql)
-CONFIGURE_ARGS+= --with-pgsql
+CONFIGURE_ARGS+= --enable-postgresql
.include "../../mk/pgsql.buildlink3.mk"
.else
-CONFIGURE_ARGS+= --without-pgsql
+CONFIGURE_ARGS+= --disable-postgresql
.endif