We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 489bd40 + 6fa0dc2 commit e052a69Copy full SHA for e052a69
Formula/s/synfig.rb
@@ -67,6 +67,13 @@ class Synfig < Formula
67
def install
68
ENV.cxx11
69
70
+ # Workaround to fix error: a template argument list is expected after
71
+ # a name prefixed by the template keyword [-Wmissing-template-arg-list-after-template-kw]
72
+ # PR ref: https://github.com/synfig/synfig/pull/3559
73
+ if DevelopmentTools.clang_build_version >= 1700
74
+ ENV.append_to_cflags "-Wno-missing-template-arg-list-after-template-kw"
75
+ end
76
+
77
# missing install-sh in the tarball, and re-generate configure script
78
# upstream bug report, https://github.com/synfig/synfig/issues/3398
79
system "autoreconf", "--force", "--install", "--verbose"
0 commit comments