diff options
author | marino <marino@FreeBSD.org> | 2015-03-21 19:53:27 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-03-21 19:53:27 +0800 |
commit | fa4518f1d129d2f514abc944e46cf585e01a81b3 (patch) | |
tree | 98cd562e8448aa1ed42e4ff34ec59e55a6e86a02 | |
parent | ac94ff6541ef88e049abdc6266efad6397dc439e (diff) | |
download | freebsd-ports-gnome-fa4518f1d129d2f514abc944e46cf585e01a81b3.tar.gz freebsd-ports-gnome-fa4518f1d129d2f514abc944e46cf585e01a81b3.tar.zst freebsd-ports-gnome-fa4518f1d129d2f514abc944e46cf585e01a81b3.zip |
biology/segan: Limit GCC to 4.8 while waiting for update
Due to questionable c++, GCC 4.9 and newer cannot build seqan. An update
has been in the works that will enable clang compilers and all versions
of GCC to build seqan, but it is not quite ready yet. While waiting for
it, limit the version of GCC used to 4.8.
PR: 196851
-rw-r--r-- | biology/seqan/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/biology/seqan/Makefile b/biology/seqan/Makefile index a2094f638a0b..2abf70d857b0 100644 --- a/biology/seqan/Makefile +++ b/biology/seqan/Makefile @@ -23,7 +23,7 @@ MAKE_JOB_SAFE= yes SUB_FILES= pkg-message PKG_MESSAGE= ${WRKDIR}/pkg-message -USE_GCC= yes +USE_GCC= 4.8 # unsafe workaround because FreeBSD lacks logl and expl # see "BUGS" in `man 3 math` |