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.
1 parent e6c8ef8 commit 6fa0dc2Copy full SHA for 6fa0dc2
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