svn commit: r488033 - head/science/InsightToolkit/files

Jan Beich jbeich at FreeBSD.org
Sat Dec 22 17:05:16 UTC 2018


Mark Linimon <linimon at FreeBSD.org> writes:

> Author: linimon
> Date: Sat Dec 22 00:52:31 2018
> New Revision: 488033
> URL: https://svnweb.freebsd.org/changeset/ports/488033
>
> Log:
>   This port currently doesn't build on GCC-based architectures, due to
>   not supporting GCC8.  Make GCC8 use the same macros as the newest
>   supported version, GCC 7.3.
[...]
> +@@ -86,6 +86,9 @@
> + #  else
> + #   define VCL_GCC_70
> + #  endif
> ++#  elif (__GNUC__==8)
> ++#   define VCL_GCC_7
> ++#   define VCL_GCC_73
> + # else
> + #  error "Dunno about this gcc"
> + # endif

Confusing indentation. #elif after #endif would be a syntax error but
(__GNUC__==8) isn't actually under (__GNUC__==7) branch.

Can you shift the new lines left by one space?


More information about the svn-ports-all mailing list