diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-04-21 05:32:35 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-04-21 05:32:35 +0800 |
commit | c252384790efc1594afc810b235481777d55c2b9 (patch) | |
tree | 9204d48f91c17afa9936dad26de7ef9d540a528d | |
parent | f57a9f6fb1dbc1786d85a7b8f499fe4d52b6be0d (diff) | |
download | freebsd-ports-gnome-c252384790efc1594afc810b235481777d55c2b9.tar.gz freebsd-ports-gnome-c252384790efc1594afc810b235481777d55c2b9.tar.zst freebsd-ports-gnome-c252384790efc1594afc810b235481777d55c2b9.zip |
math/matio: fix build on GCC architectures
Add USES=compiler:c11 to fix build.
PR: 237214
Approved by: tcberner (mentor), makc (maintainer)
Differential Revision: https://reviews.freebsd.org/D19990
-rw-r--r-- | math/matio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/matio/Makefile b/math/matio/Makefile index 8f13f7768ccd..d5d7ad04f481 100644 --- a/math/matio/Makefile +++ b/math/matio/Makefile @@ -12,7 +12,7 @@ COMMENT= Library for reading and writing Matlab MAT files LICENSE= BSD2CLAUSE GNU_CONFIGURE= yes -USES= 7z libtool pathfix +USES= 7z compiler:c11 libtool pathfix USE_LDCONFIG= yes INSTALL_TARGET= install-strip |