svn commit: r506200 - head/lang/gnu-apl

Alexey Dokuchaev danfe at FreeBSD.org
Mon Jul 8 03:28:26 UTC 2019


Author: danfe
Date: Mon Jul  8 03:28:25 2019
New Revision: 506200
URL: https://svnweb.freebsd.org/changeset/ports/506200

Log:
  Do not use LIBAPL_CONFIGURE_WITH and only add --with-libapl flag when the
  LIBAPL option is selected.  For some reason, configure script thinks that
  libapl.so is wanted when --without-libapl passed down on it.
  
  Reported by:	pkg-fallout

Modified:
  head/lang/gnu-apl/Makefile

Modified: head/lang/gnu-apl/Makefile
==============================================================================
--- head/lang/gnu-apl/Makefile	Mon Jul  8 01:40:36 2019	(r506199)
+++ head/lang/gnu-apl/Makefile	Mon Jul  8 03:28:25 2019	(r506200)
@@ -28,7 +28,8 @@ OPTIONS_DEFINE=	DOCS GTK3 LIBAPL PCRE PGSQL SQLITE
 OPTIONS_SUB=	yes
 
 LIBAPL_DESC=	Build libapl.so instead of executable
-LIBAPL_CONFIGURE_WITH=	libapl
+# XXX: LIBAPL_CONFIGURE_WITH won't work for some reason
+LIBAPL_CONFIGURE_ON=	--with-libapl
 
 GTK3_USES=	pkgconfig gnome
 GTK3_USE=	GNOME=gtk30


More information about the svn-ports-all mailing list