pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/algol68g
Module Name: pkgsrc
Committed By: rillig
Date: Thu May 21 07:02:57 UTC 2020
Modified Files:
pkgsrc/lang/algol68g: Makefile options.mk
Log Message:
lang/algol68g: fix outdated configure options
Found by GNU_CONFIGURE_STRICT.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/algol68g/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/algol68g/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/algol68g/Makefile
diff -u pkgsrc/lang/algol68g/Makefile:1.16 pkgsrc/lang/algol68g/Makefile:1.17
--- pkgsrc/lang/algol68g/Makefile:1.16 Sun Apr 12 02:50:02 2020
+++ pkgsrc/lang/algol68g/Makefile Thu May 21 07:02:56 2020
@@ -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/
Index: pkgsrc/lang/algol68g/options.mk
diff -u pkgsrc/lang/algol68g/options.mk:1.2 pkgsrc/lang/algol68g/options.mk:1.3
--- pkgsrc/lang/algol68g/options.mk:1.2 Sun Jun 30 09:43:31 2013
+++ pkgsrc/lang/algol68g/options.mk Thu May 21 07:02:56 2020
@@ -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
Home |
Main Index |
Thread Index |
Old Index