diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-21 04:09:32 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-21 04:09:32 +0800 |
commit | 9b1f148f095b8098329e8b7d7932666ad678a75c (patch) | |
tree | 8fa9d54c7b74cbce64c2fc4fa1edc24cd5ba953e /science | |
parent | 8affa322667dbe65f2458423cbd9be37081c1272 (diff) | |
download | freebsd-ports-gnome-9b1f148f095b8098329e8b7d7932666ad678a75c.tar.gz freebsd-ports-gnome-9b1f148f095b8098329e8b7d7932666ad678a75c.tar.zst freebsd-ports-gnome-9b1f148f095b8098329e8b7d7932666ad678a75c.zip |
science/wxmacmolplt: fix build with GCC-based architectures
Add USES=compiler:c++11-lang to fix linking:
checking for wxWidgets libraries... not found
Approved by: mentors (implicit approval)
Diffstat (limited to 'science')
-rw-r--r-- | science/wxmacmolplt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/science/wxmacmolplt/Makefile b/science/wxmacmolplt/Makefile index af5795b264f4..4e671350a852 100644 --- a/science/wxmacmolplt/Makefile +++ b/science/wxmacmolplt/Makefile @@ -13,7 +13,8 @@ COMMENT= Graphical user interface principally for the GAMESS program LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf gl gmake localbase:ldflags pkgconfig +USES= autoreconf compiler:c++11-lang gl gmake localbase:ldflags \ + pkgconfig USE_GITHUB= yes GH_ACCOUNT= brettbode GNU_CONFIGURE= yes |