]> granicus.if.org Git - graphviz/commitdiff
disable -Wunused-parameter when building SWIG-generated Ruby bindings
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 11 Jul 2021 01:28:31 +0000 (18:28 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Jul 2021 18:35:00 +0000 (11:35 -0700)
There is no value to warning about things like this in generated code, which are
just artifacts of how SWIG code generation works. Removes 91 compiler warnings.

tclpkg/gv/Makefile.am

index 42e1193198a90163fc0d43900261b924b539cee2..e70941e12981b96727cf8d5e7ec178c1079b8455 100644 (file)
@@ -257,6 +257,7 @@ libgv_ruby_la_SOURCES = $(BASESOURCES) gv_dummy_init.c
 libgv_ruby_la_LIBADD = $(BASELIBS) $(RUBY_LIBS)
 libgv_ruby_la_LDFLAGS = -module -avoid-version
 libgv_ruby_la_CPPFLAGS = $(BASECPPFLAGS) $(RUBY_CFLAGS)
+libgv_ruby_la_CXXFLAGS = $(AM_CXXFLAGS) -Wno-unused-parameter
 # $(RUBY_data): gv_ruby.cpp
 gv_ruby.cpp: gv.i
        $(SWIG) -c++ -ruby -o gv_ruby.cpp $(srcdir)/gv.i