The private test repo got some v2.18.x updates.
[dcpomatic.git] / wscript
diff --git a/wscript b/wscript
index a06d96e8935a5e8df57e388f05ae08dd6a906c1b..a62b5c2c3a2e9b27c5c67b484fb99617b7e08195 100644 (file)
--- a/wscript
+++ b/wscript
@@ -111,6 +111,7 @@ def configure(conf):
                                        '-Wall',
                                        '-Wextra',
                                        '-Wwrite-strings',
+                                       '-Wno-error=deprecated',
                                        # I tried and failed to ignore these with _Pragma
                                        '-Wno-ignored-qualifiers',
                                        '-D_FILE_OFFSET_BITS=64',
@@ -120,8 +121,7 @@ def configure(conf):
         # These are for Xcode 15.0.1 with the v2.16.x-era
         # dependencies; maybe they aren't necessary when building
         # v2.1{7,8}.x
-        conf.env.append_value('CXXFLAGS', ['-Wno-error=deprecated',
-                                           '-Wno-deprecated-builtins',
+        conf.env.append_value('CXXFLAGS', ['-Wno-deprecated-builtins',
                                            '-Wno-deprecated-declarations',
                                            '-Wno-enum-constexpr-conversion',
                                            '-Wno-deprecated-copy'])
@@ -281,6 +281,15 @@ def configure(conf):
                    uselib="ZIP",
                    define_name='DCPOMATIC_HAVE_ZIP_FILE_ADD'
                    )
+    conf.check_cxx(fragment="""
+                            #include <zip.h>
+                            int main() { int error; zip_open("foo", ZIP_RDONLY, &error); }
+                            """,
+                   mandatory=False,
+                   msg="Checking for ZIP_RDONLY",
+                   uselib="ZIP",
+                   define_name='DCPOMATIC_HAVE_ZIP_RDONLY'
+                   )
 
     # libbz2; must be explicitly linked on macOS for some reason
     conf.check_cxx(fragment="""