diff options
author | danfe <danfe@FreeBSD.org> | 2019-07-08 11:28:25 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2019-07-08 11:28:25 +0800 |
commit | 4af5fbf78549ec50eeb1d524560758fdc158f78f (patch) | |
tree | 7397edd23808eb4fcab12a8a40e76f0b12c44f60 /lang | |
parent | 3e13626fc4d7438a63d1da26a8bf33348122e248 (diff) | |
download | freebsd-ports-gnome-4af5fbf78549ec50eeb1d524560758fdc158f78f.tar.gz freebsd-ports-gnome-4af5fbf78549ec50eeb1d524560758fdc158f78f.tar.zst freebsd-ports-gnome-4af5fbf78549ec50eeb1d524560758fdc158f78f.zip |
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
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gnu-apl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/gnu-apl/Makefile b/lang/gnu-apl/Makefile index ee653dcad255..e59a94e105da 100644 --- a/lang/gnu-apl/Makefile +++ b/lang/gnu-apl/Makefile @@ -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 |