Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently
diff --git a/setup.py b/setup.py
index 65acb99..10ce79e 100644
--- a/setup.py
+++ b/setup.py
@@ -1675,6 +1675,8 @@
                 from distutils.dir_util import mkpath
                 mkpath(ffi_builddir)
                 config_args = []
+                if not self.verbose:
+                    config_args.append("-q")
 
                 # Pass empty CFLAGS because we'll just append the resulting
                 # CFLAGS to Python's; -g or -O2 is to be avoided.