Disable Reels... button with no film.
[dcpomatic.git] / wscript
1 #
2 #    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of DCP-o-matic.
5 #
6 #    DCP-o-matic is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    DCP-o-matic is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 from __future__ import print_function
21
22 import subprocess
23 import os
24 import shlex
25 import sys
26 import glob
27 import distutils
28 import distutils.spawn
29 try:
30     # python 2
31     from urllib import urlencode
32 except ImportError:
33     # python 3
34     from urllib.parse import urlencode
35 from waflib import Logs, Context
36
37 APPNAME = 'dcpomatic'
38 libdcp_version = '1.8.73'
39 libsub_version = '1.6.42'
40
41 this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
42 last_version = subprocess.Popen(shlex.split('git describe --tags --match v* --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
43
44 # Python 2/3 compatibility; I don't really understand what's going on here
45 if not isinstance(this_version, str):
46     this_version = this_version.decode('utf-8')
47 if not isinstance(last_version, str):
48     last_version = last_version.decode('utf-8')
49
50 if this_version == '' or this_version == 'merged-to-main':
51     VERSION = '%sdevel' % last_version[1:].strip()
52 else:
53     VERSION = this_version[1:].strip()
54
55 def options(opt):
56     opt.load('compiler_cxx')
57     opt.load('winres')
58
59     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
60     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
61     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
62     opt.add_option('--target-windows-64', action='store_true', default=False, help='set up to do a cross-compile for Windows 64-bit')
63     opt.add_option('--target-windows-32', action='store_true', default=False, help='set up to do a cross-compile for Windows 32-bit')
64     opt.add_option('--static-dcpomatic',  action='store_true', default=False, help='link to components of DCP-o-matic statically')
65     opt.add_option('--static-boost',      action='store_true', default=False, help='link statically to Boost')
66     opt.add_option('--static-wxwidgets',  action='store_true', default=False, help='link statically to wxWidgets')
67     opt.add_option('--static-ffmpeg',     action='store_true', default=False, help='link statically to FFmpeg')
68     opt.add_option('--static-xmlpp',      action='store_true', default=False, help='link statically to libxml++')
69     opt.add_option('--static-xmlsec',     action='store_true', default=False, help='link statically to xmlsec')
70     opt.add_option('--static-ssh',        action='store_true', default=False, help='link statically to libssh')
71     opt.add_option('--static-cxml',       action='store_true', default=False, help='link statically to libcxml')
72     opt.add_option('--static-dcp',        action='store_true', default=False, help='link statically to libdcp')
73     opt.add_option('--static-sub',        action='store_true', default=False, help='link statically to libsub')
74     opt.add_option('--static-curl',       action='store_true', default=False, help='link statically to libcurl')
75     opt.add_option('--workaround-gssapi', action='store_true', default=False, help='link to gssapi_krb5')
76     opt.add_option('--use-lld',           action='store_true', default=False, help='use lld linker')
77     opt.add_option('--enable-disk',       action='store_true', default=False, help='build dcpomatic2_disk tool; requires Boost process, lwext4 and nanomsg libraries')
78     opt.add_option('--enable-grok',       action='store_true', default=False, help='build with support for grok J2K encoder')
79     opt.add_option('--warnings-are-errors', action='store_true', default=False, help='build with -Werror')
80     opt.add_option('--wx-config',         help='path to wx-config')
81     opt.add_option('--enable-asan',       action='store_true', help='build with asan')
82     opt.add_option('--disable-more-warnings', action='store_true', default=False, help='disable some warnings raised by Xcode 15 with the 2.16 branch')
83     opt.add_option('--c++17', action='store_true', default=False, help='build with C++17 and libxml++-4.0')
84
85 def configure(conf):
86     conf.load('compiler_cxx')
87     conf.load('clang_compilation_database', tooldir=['waf-tools'])
88     if conf.options.target_windows_64 or conf.options.target_windows_32:
89         conf.load('winres')
90
91     if vars(conf.options)['c++17']:
92         cpp_std = '17'
93         conf.env.XMLPP_API = '4.0'
94         conf.env.PANGOMM_API = '2.48'
95         conf.env.CAIROMM_API = '1.16'
96     else:
97         cpp_std = '11'
98         conf.env.XMLPP_API = '2.6'
99         conf.env.PANGOMM_API = '1.4'
100         conf.env.CAIROMM_API = '1.0'
101
102     # Save conf.options that we need elsewhere in conf.env
103     conf.env.DISABLE_GUI = conf.options.disable_gui
104     conf.env.DISABLE_TESTS = conf.options.disable_tests
105     conf.env.TARGET_WINDOWS_64 = conf.options.target_windows_64
106     conf.env.TARGET_WINDOWS_32 = conf.options.target_windows_32
107     conf.env.TARGET_OSX = sys.platform == 'darwin'
108     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS_64 and not conf.env.TARGET_WINDOWS_32 and not conf.env.TARGET_OSX
109     conf.env.VERSION = VERSION
110     conf.env.DEBUG = conf.options.enable_debug
111     conf.env.STATIC_DCPOMATIC = conf.options.static_dcpomatic
112     conf.env.ENABLE_DISK = conf.options.enable_disk
113     conf.env.ENABLE_GROK = conf.options.enable_grok
114     if conf.options.destdir == '':
115         conf.env.INSTALL_PREFIX = conf.options.prefix
116     else:
117         conf.env.INSTALL_PREFIX = conf.options.destdir
118
119     conf.check_cxx(cxxflags=['-msse', '-mfpmath=sse'], msg='Checking for SSE support', mandatory=False, define_name='SSE')
120
121     # Common CXXFLAGS
122     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS',
123                                        '-D__STDC_LIMIT_MACROS',
124                                        '-D__STDC_FORMAT_MACROS',
125                                        '-fno-strict-aliasing',
126                                        '-Wall',
127                                        '-Wextra',
128                                        '-Wwrite-strings',
129                                        # getMessengerLogger() in the grok code triggers these warnings
130                                        '-Wno-nonnull',
131                                        '-Wno-error=deprecated',
132                                        # I tried and failed to ignore these with _Pragma
133                                        '-Wno-ignored-qualifiers',
134                                        '-D_FILE_OFFSET_BITS=64',
135                                        '-std=c++' + cpp_std])
136
137     if conf.options.disable_more_warnings:
138         # These are for Xcode 15.0.1 with the v2.16.x-era
139         # dependencies; maybe they aren't necessary when building
140         # v2.1{7,8}.x
141         conf.env.append_value('CXXFLAGS', ['-Wno-deprecated-builtins',
142                                            '-Wno-deprecated-declarations',
143                                            '-Wno-enum-constexpr-conversion',
144                                            '-Wno-deprecated-copy'])
145
146     if conf.options.warnings_are_errors:
147         conf.env.append_value('CXXFLAGS', '-Werror')
148
149     if conf.env.SSE:
150         conf.env.append_value('CXXFLAGS', ['-msse', '-mfpmath=sse'])
151
152     if conf.options.enable_asan:
153         conf.env.append_value('CXXFLAGS', '-fsanitize=address')
154         conf.env.append_value('LINKFLAGS', '-fsanitize=address')
155
156     if conf.env['CXX_NAME'] == 'gcc':
157         gcc = conf.env['CC_VERSION']
158         if int(gcc[0]) >= 8:
159             # I tried and failed to ignore these with _Pragma
160             conf.env.append_value('CXXFLAGS', ['-Wno-cast-function-type'])
161         # Most gccs still give these warnings from boost::optional
162         conf.env.append_value('CXXFLAGS', ['-Wno-maybe-uninitialized'])
163         if int(gcc[0]) > 8:
164             # gcc 4.8.5 on Centos 7 does not have this warning
165             # gcc 7.5.0 on Ubuntu 18.04 and gcc 8.3.0 on Debian 10 do, but
166             # I didn't manage to turn it back off again with a pragma
167             conf.env.append_value('CXXFLAGS', ['-Wsuggest-override'])
168
169     if conf.options.enable_debug:
170         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG', '-fno-omit-frame-pointer'])
171     else:
172         conf.env.append_value('CXXFLAGS', '-O2')
173
174     if conf.options.enable_disk:
175         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_DISK')
176
177     if conf.options.enable_grok:
178         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GROK')
179
180     if conf.options.use_lld:
181         try:
182             conf.find_program('ld.lld')
183             conf.env.append_value('LINKFLAGS', '-fuse-ld=lld')
184         except conf.errors.ConfigurationError:
185             pass
186
187     #
188     # Windows/Linux/macOS specific
189     #
190
191     # Windows
192     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
193         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
194         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
195         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
196         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
197         conf.env.append_value('CXXFLAGS', '-Wcast-align')
198         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
199         conf.env.append_value('WINRCFLAGS', wxrc)
200         if conf.options.enable_debug:
201             conf.env.append_value('CXXFLAGS', ['-mconsole'])
202             conf.env.append_value('LINKFLAGS', ['-mconsole'])
203         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
204         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
205         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
206         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
207         conf.check(lib='ole32', uselib_store='OLE32', msg="Checking for library ole32")
208         conf.check(lib='dsound', uselib_store='DSOUND', msg="Checking for library dsound")
209         conf.check(lib='winmm', uselib_store='WINMM', msg="Checking for library winmm")
210         conf.check(lib='ksuser', uselib_store='KSUSER', msg="Checking for library ksuser")
211         conf.check(lib='setupapi', uselib_store='SETUPAPI', msg="Checking for library setupapi")
212         conf.check(lib='uuid', uselib_store='UUID', msg="Checking for library uuid")
213         boost_lib_suffix = '-mt-x32' if conf.options.target_windows_32 else '-mt-x64'
214         boost_thread = 'boost_thread' + boost_lib_suffix
215         conf.check_cxx(fragment="""
216                                #include <boost/locale.hpp>\n
217                                int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
218                                """,
219                                msg='Checking for boost locale library',
220                                libpath='/usr/local/lib',
221                                lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
222                                uselib_store='BOOST_LOCALE')
223
224     # POSIX
225     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
226         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
227         boost_lib_suffix = ''
228         boost_thread = 'boost_thread'
229         conf.env.append_value('LINKFLAGS', '-pthread')
230
231     # Linux
232     if conf.env.TARGET_LINUX:
233         conf.env.append_value('CXXFLAGS', '-DLINUX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
234         conf.env.append_value('CXXFLAGS', '-DLINUX_SHARE_PREFIX="%s/share"' % conf.env['INSTALL_PREFIX'])
235         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
236         conf.env.append_value('CXXFLAGS', ['-Wlogical-op', '-Wcast-align'])
237         conf.check(lib='dl', uselib_store='DL', msg='Checking for library dl')
238
239     # OSX
240     if conf.env.TARGET_OSX:
241         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-DGL_SILENCE_DEPRECATION'])
242         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
243         conf.env.append_value('LINKFLAGS', '-llzma')
244
245     #
246     # Dependencies.
247     #
248
249     # It should be possible to use check_cfg for both dynamic and static linking, but
250     # e.g. pkg-config --libs --static foo returns some libraries that should be statically
251     # linked and others that should be dynamic.  This doesn't work too well with waf
252     # as it wants them separate.
253
254     # libcurl
255     if conf.options.static_curl:
256         conf.env.STLIB_CURL = ['curl']
257         conf.env.LIB_CURL = ['ssh2', 'idn']
258     else:
259         conf.check_cfg(package='libcurl', args='libcurl >= 7.19.1 --cflags --libs', uselib_store='CURL', mandatory=True)
260
261     # libicu
262     if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
263         if conf.check_cfg(package='icu', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
264             conf.check_cxx(fragment="""
265                             #include <unicode/ucsdet.h>
266                             int main(void) {
267                                 UErrorCode status = U_ZERO_ERROR;
268                                 UCharsetDetector* detector = ucsdet_open (&status);
269                                 return 0; }\n
270                             """,
271                        mandatory=True,
272                        msg='Checking for libicu',
273                        okmsg='yes',
274                        libpath=['/usr/local/lib', '/usr/lib', '/usr/lib/x86_64-linux-gnu'],
275                        lib=['icuio', 'icui18n', 'icudata', 'icuuc'],
276                        uselib_store='ICU')
277
278     # libsamplerate
279     conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True)
280
281     # glib
282     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
283
284     # libzip
285     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
286     conf.check_cxx(fragment="""
287                             #include <zip.h>
288                             int main() { zip_source_t* foo; (void)foo; }
289                             """,
290                    mandatory=False,
291                    msg="Checking for zip_source_t",
292                    uselib="ZIP",
293                    define_name='DCPOMATIC_HAVE_ZIP_SOURCE_T'
294                    )
295     conf.check_cxx(fragment="""
296                             #include <zip.h>
297                             int main() { struct zip* zip = nullptr; zip_source_t* source = nullptr; zip_file_add(zip, "foo", source, ZIP_FL_ENC_GUESS); }
298                             """,
299                    mandatory=False,
300                    msg="Checking for zip_file_add",
301                    uselib="ZIP",
302                    define_name='DCPOMATIC_HAVE_ZIP_FILE_ADD'
303                    )
304     conf.check_cxx(fragment="""
305                             #include <zip.h>
306                             int main() { int error; zip_open("foo", ZIP_RDONLY, &error); }
307                             """,
308                    mandatory=False,
309                    msg="Checking for ZIP_RDONLY",
310                    uselib="ZIP",
311                    define_name='DCPOMATIC_HAVE_ZIP_RDONLY'
312                    )
313
314     # libbz2; must be explicitly linked on macOS for some reason
315     conf.check_cxx(fragment="""
316                             #include <bzlib.h>
317                             int main() { BZ2_bzCompressInit(0, 0, 0, 0); }
318                             """,
319                    mandatory=True,
320                    msg="Checking for libbz2",
321                    okmsg='yes',
322                    lib='bz2',
323                    uselib_store="BZ2"
324                    )
325
326     # libz; must be explicitly linked on macOS for some reason
327     conf.check_cxx(fragment="""
328                             #include <zlib.h>
329                             int main() { zlibVersion(); }
330                             """,
331                    mandatory=True,
332                    msg="Checking for libz",
333                    okmsg='yes',
334                    lib='z',
335                    uselib_store="LIBZ"
336                    )
337
338     # fontconfig
339     conf.check_cfg(package='fontconfig', args='--cflags --libs', uselib_store='FONTCONFIG', mandatory=True)
340
341     # pangomm
342     conf.check_cfg(package='pangomm-' + conf.env.PANGOMM_API, args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
343
344     # cairomm
345     conf.check_cfg(package='cairomm-' + conf.env.CAIROMM_API, args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
346
347     # leqm_nrt
348     conf.check_cfg(package='leqm_nrt', args='--cflags --libs', uselib_store='LEQM_NRT', mandatory=True)
349
350     # libcxml
351     if conf.options.static_cxml:
352         conf.check_cfg(package='libcxml', args='libcxml >= 0.17.0 --cflags', uselib_store='CXML', mandatory=True)
353         conf.env.STLIB_CXML = ['cxml']
354     else:
355         conf.check_cfg(package='libcxml', args='libcxml >= 0.16.0 --cflags --libs', uselib_store='CXML', mandatory=True)
356
357     # libssh
358     if conf.options.static_ssh:
359         conf.env.STLIB_SSH = ['ssh']
360         if conf.options.workaround_gssapi:
361             conf.env.LIB_SSH = ['gssapi_krb5']
362     else:
363         conf.check_cxx(fragment="""
364                                #include <libssh/libssh.h>\n
365                                int main () {\n
366                                ssh_new ();\n
367                                return 0;\n
368                                }
369                                """,
370                       msg='Checking for library libssh',
371                       mandatory=True,
372                       lib='ssh',
373                       uselib_store='SSH')
374
375     # libdcp
376     if conf.options.static_dcp:
377         conf.check_cfg(package='libdcp-1.0', args='libdcp-1.0 >= %s --cflags' % libdcp_version, uselib_store='DCP', mandatory=True)
378         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
379         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-dcpomatic', 'kumu-dcpomatic', 'openjp2']
380         conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt', 'xerces-c']
381     else:
382         conf.check_cfg(package='libdcp-1.0', args='libdcp-1.0 >= %s --cflags --libs' % libdcp_version, uselib_store='DCP', mandatory=True)
383         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
384
385     # libsub
386     if conf.options.static_sub:
387         conf.check_cfg(package='libsub-1.0', args='libsub-1.0 >= %s --cflags' % libsub_version, uselib_store='SUB', mandatory=True)
388         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
389         conf.env.STLIB_SUB = ['sub-1.0']
390     else:
391         conf.check_cfg(package='libsub-1.0', args='libsub-1.0 >= %s --cflags --libs' % libsub_version, uselib_store='SUB', mandatory=True)
392         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
393
394     # libxml++
395     if conf.options.static_xmlpp:
396         conf.env.STLIB_XMLPP = ['xml++-' + conf.env.XMLPP_API]
397         conf.env.LIB_XMLPP = ['xml2']
398     else:
399         conf.check_cfg(package='libxml++-' + conf.env.XMLPP_API, args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
400
401     # libxmlsec
402     if conf.options.static_xmlsec:
403         if conf.check_cxx(lib='xmlsec1-openssl', mandatory=False):
404             conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
405         else:
406             conf.env.STLIB_XMLSEC = ['xmlsec1']
407     else:
408         conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
409
410     # nettle
411     conf.check_cfg(package="nettle", args='--cflags --libs', uselib_store='NETTLE', mandatory=True)
412
413     # libpng
414     conf.check_cfg(package='libpng', args='--cflags --libs', uselib_store='PNG', mandatory=True)
415
416     # libjpeg
417     conf.check_cxx(fragment="""
418                             #include <cstddef>
419                             #include <cstdio>
420                             #include <jpeglib.h>
421                             int main() { struct jpeg_compress_struct compress; jpeg_create_compress (&compress); return 0; }
422                             """,
423                    msg='Checking for libjpeg',
424                    libpath='/usr/local/lib',
425                    lib=['jpeg'],
426                    uselib_store='JPEG')
427
428     # lwext4
429     if conf.options.enable_disk:
430         conf.check_cxx(fragment="""
431                                 #include <lwext4/ext4.h>\n
432                                 int main() { ext4_mount("ext4_fs", "/mp/", false); }\n
433                                 """,
434                                 msg='Checking for lwext4 library',
435                                 libpath='/usr/local/lib',
436                                 lib=['lwext4', 'blockdev'],
437                                 uselib_store='LWEXT4')
438
439     if conf.env.TARGET_LINUX and conf.options.enable_disk:
440         conf.check_cfg(package='polkit-gobject-1', args='--cflags --libs', uselib_store='POLKIT', mandatory=True)
441
442     # nanomsg
443     if conf.options.enable_disk:
444         if conf.check_cfg(package='nanomsg', args='--cflags --libs', uselib_store='NANOMSG', mandatory=False) is None:
445             conf.check_cfg(package='libnanomsg', args='--cflags --libs', uselib_store='NANOMSG', mandatory=True)
446         if conf.env.TARGET_LINUX:
447             # We link with nanomsg statically on Centos 8 so we need to link this as well
448             conf.env.LIB_NANOMSG.append('anl')
449
450     # FFmpeg
451     if conf.options.static_ffmpeg:
452         names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'postproc', 'swresample']
453         for name in names:
454             static = subprocess.Popen(shlex.split('pkg-config --static --libs lib%s' % name), stdout=subprocess.PIPE).communicate()[0].decode('utf-8')
455             libs = []
456             stlibs = []
457             include = []
458             libpath = []
459             for s in static.split():
460                 if s.startswith('-L'):
461                     libpath.append(s[2:])
462                 elif s.startswith('-I'):
463                     include.append(s[2:])
464                 elif s.startswith('-l'):
465                     if s[2:] not in names:
466                         libs.append(s[2:])
467                     else:
468                         stlibs.append(s[2:])
469
470             conf.env['LIB_%s' % name.upper()] = libs
471             conf.env['STLIB_%s' % name.upper()] = stlibs
472             conf.env['INCLUDES_%s' % name.upper()] = include
473             conf.env['LIBPATH_%s' % name.upper()] = libpath
474     else:
475         conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
476         conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
477         conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
478         conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
479         conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
480         conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
481         conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
482
483     # Check to see if we have our version of FFmpeg that allows us to get at EBUR128 results
484     conf.check_cxx(fragment="""
485                             extern "C" {\n
486                             #include <libavfilter/f_ebur128.h>\n
487                             }\n
488                             int main () { av_ebur128_get_true_peaks (0); }\n
489                             """,
490                    msg='Checking for EBUR128-patched FFmpeg',
491                    uselib='AVCODEC AVFILTER AVUTIL SWRESAMPLE',
492                    define_name='DCPOMATIC_HAVE_EBUR128_PATCHED_FFMPEG',
493                    mandatory=False)
494
495     # Check to see if we have our AVSubtitleRect has a pict member
496     # Older versions (e.g. that shipped with Ubuntu 16.04) do
497     conf.check_cxx(fragment="""
498                             extern "C" {\n
499                             #include <libavcodec/avcodec.h>\n
500                             }\n
501                             int main () { AVSubtitleRect r; r.pict; }\n
502                             """,
503                    msg='Checking for AVSubtitleRect::pict',
504                    cxxflags='-Wno-unused-result -Wno-unused-value -Wdeprecated-declarations -Werror',
505                    uselib='AVCODEC',
506                    define_name='DCPOMATIC_HAVE_AVSUBTITLERECT_PICT',
507                    mandatory=False)
508
509     # Check to see if we have our AVComponentDescriptor has a depth_minus1 member
510     # Older versions (e.g. that shipped with Ubuntu 16.04) do
511     conf.check_cxx(fragment="""
512                             extern "C" {\n
513                             #include <libavutil/pixdesc.h>\n
514                             }\n
515                             int main () { AVComponentDescriptor d; d.depth_minus1; }\n
516                             """,
517                    msg='Checking for AVComponentDescriptor::depth_minus1',
518                    cxxflags='-Wno-unused-result -Wno-unused-value -Wdeprecated-declarations -Werror',
519                    uselib='AVUTIL',
520                    define_name='DCPOMATIC_HAVE_AVCOMPONENTDESCRIPTOR_DEPTH_MINUS1',
521                    mandatory=False)
522
523     # See if we have av_register_all and avfilter_register_all
524     conf.check_cxx(fragment="""
525                             extern "C" {\n
526                             #include <libavformat/avformat.h>\n
527                             #include <libavfilter/avfilter.h>\n
528                             }\n
529                             int main () { av_register_all(); avfilter_register_all(); }\n
530                             """,
531                    msg='Checking for av_register_all and avfilter_register_all',
532                    uselib='AVFORMAT AVFILTER',
533                    define_name='DCPOMATIC_HAVE_AVREGISTER',
534                    mandatory=False)
535
536     # Hack: the previous two check_cxx calls end up copying their (necessary) cxxflags
537     # to these variables.  We don't want to use these for the actual build, so clean them out.
538     conf.env['CXXFLAGS_AVCODEC'] = []
539     conf.env['CXXFLAGS_AVUTIL'] = []
540
541     if conf.env.TARGET_LINUX:
542         conf.env.LIB_X11 = ['X11']
543
544     # We support older boosts on Linux so we can use the distribution-provided package
545     # on Centos 7, but it's good if we can use 1.61 for boost::dll::program_location()
546     boost_version = ('1.45', '104500') if conf.env.TARGET_LINUX else ('1.61', '106800')
547
548     # Boost
549     if conf.options.static_boost:
550         conf.env.STLIB_BOOST_THREAD = ['boost_thread']
551         conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % boost_lib_suffix]
552         conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix]
553         conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
554         conf.env.STLIB_BOOST_SYSTEM = ['boost_system']
555         conf.env.STLIB_BOOST_REGEX = ['boost_regex']
556     else:
557         conf.check_cxx(fragment="""
558                             #include <boost/version.hpp>\n
559                             #if BOOST_VERSION < %s\n
560                             #error boost too old\n
561                             #endif\n
562                             int main(void) { return 0; }\n
563                             """ % boost_version[1],
564                        mandatory=True,
565                        msg='Checking for boost library >= %s' % boost_version[0],
566                        okmsg='yes',
567                        errmsg='too old\nPlease install boost version %s or higher.' % boost_version[0])
568
569         conf.check_cxx(fragment="""
570                             #include <boost/thread.hpp>\n
571                             int main() { boost::thread t; }\n
572                             """,
573                        msg='Checking for boost threading library',
574                        libpath='/usr/local/lib',
575                        lib=[boost_thread, 'boost_system%s' % boost_lib_suffix],
576                        uselib_store='BOOST_THREAD')
577
578         conf.check_cxx(fragment="""
579                             #include <boost/filesystem.hpp>\n
580                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
581                             """,
582                        msg='Checking for boost filesystem library',
583                        libpath='/usr/local/lib',
584                        lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
585                        uselib_store='BOOST_FILESYSTEM')
586
587         conf.check_cxx(fragment="""
588                             #include <boost/date_time.hpp>\n
589                             int main() { boost::gregorian::day_clock::local_day(); }\n
590                             """,
591                        msg='Checking for boost datetime library',
592                        libpath='/usr/local/lib',
593                        lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
594                        uselib_store='BOOST_DATETIME')
595
596         conf.check_cxx(fragment="""
597                             #include <boost/signals2.hpp>\n
598                             int main() { boost::signals2::signal<void (int)> x; }\n
599                             """,
600                        msg='Checking for boost signals2 library',
601                        uselib_store='BOOST_SIGNALS2')
602
603         conf.check_cxx(fragment="""
604                             #include <boost/regex.hpp>\n
605                             int main() { boost::regex re ("foo"); }\n
606                             """,
607                        msg='Checking for boost regex library',
608                        lib=['boost_regex%s' % boost_lib_suffix],
609                        uselib_store='BOOST_REGEX')
610
611         # Really just checking for the header here (there's no associated library) but the test
612         # program has to link with boost_system so I'm doing it this way.
613         if conf.options.enable_disk:
614             deps = ['boost_system%s' % boost_lib_suffix]
615             if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
616                 deps.append('ws2_32')
617                 deps.append('boost_filesystem%s' % boost_lib_suffix)
618             conf.check_cxx(fragment="""
619                                 #include <boost/process.hpp>\n
620                                 int main() { new boost::process::child("foo"); }\n
621                                 """,
622                            cxxflags='-Wno-unused-parameter',
623                            msg='Checking for boost process library',
624                            lib=deps,
625                            uselib_store='BOOST_PROCESS')
626
627     # Other stuff
628
629     conf.find_program('msgfmt', var='MSGFMT')
630     conf.check(header_name='valgrind/memcheck.h', mandatory=False)
631
632     datadir = conf.env.DATADIR
633     if not datadir:
634         datadir = os.path.join(conf.env.PREFIX, 'share')
635
636     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
637     conf.define('DATADIR', datadir)
638
639     conf.recurse('src')
640     if not conf.env.DISABLE_TESTS:
641         conf.recurse('test')
642
643     Logs.pprint('YELLOW', '')
644     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
645         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Windows')
646     elif conf.env.TARGET_LINUX:
647         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Linux')
648     elif conf.env.TARGET_OSX:
649         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': macOS')
650
651     def report(name, variable):
652         linkage = ''
653         if variable:
654             linkage = 'static'
655         else:
656             linkage = 'dynamic'
657         Logs.pprint('YELLOW', '\t%s: %s' % (name.ljust(25), linkage))
658
659     report('DCP-o-matic libraries', conf.options.static_dcpomatic)
660     report('Boost', conf.options.static_boost)
661     report('wxWidgets', conf.options.static_wxwidgets)
662     report('FFmpeg', conf.options.static_ffmpeg)
663     report('libxml++', conf.options.static_xmlpp)
664     report('xmlsec', conf.options.static_xmlsec)
665     report('libssh', conf.options.static_ssh)
666     report('libcxml', conf.options.static_cxml)
667     report('libdcp', conf.options.static_dcp)
668     report('libcurl', conf.options.static_curl)
669
670     Logs.pprint('YELLOW', '')
671
672 def build(bld):
673     create_version_cc(VERSION, bld.env.CXXFLAGS)
674
675     # waf can't find these dependencies by itself because they are only included if DCPOMATIC_GROK is defined,
676     # and I can't find a way to pass that to waf's dependency scanner
677     if bld.env.ENABLE_GROK:
678         for dep in (
679                 'src/lib/j2k_encoder.cc',
680                 'src/tools/dcpomatic.cc',
681                 'src/tools/dcpomatic_server.cc',
682                 'src/tools/dcpomatic_server_cli.cc',
683                 'src/tools/dcpomatic_batch.cc'
684         ):
685             bld.add_manual_dependency(bld.path.find_node(dep), bld.path.find_node('src/lib/grok/context.h'))
686             bld.add_manual_dependency(bld.path.find_node(dep), bld.path.find_node('src/lib/grok/messenger.h'))
687
688         bld.add_manual_dependency(bld.path.find_node('src/wx/full_config_dialog.cc'), bld.path.find_node('src/wx/grok/gpu_config_panel.h'))
689
690     bld.recurse('src')
691     bld.recurse('graphics')
692
693     if not bld.env.DISABLE_TESTS:
694         bld.recurse('test')
695     if bld.env.TARGET_WINDOWS_64 or bld.env.TARGET_WINDOWS_32:
696         bld.recurse('platform/windows')
697     if bld.env.TARGET_LINUX:
698         bld.recurse('platform/linux')
699     if bld.env.TARGET_OSX:
700         bld.recurse('platform/osx')
701
702     if not bld.env.TARGET_WINDOWS_64 and not bld.env.TARGET_WINDOWS_32:
703         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Regular.ttf')
704         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Italic.ttf')
705         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Bold.ttf')
706
707     bld.add_post_fun(post)
708
709 def git_revision():
710     if not os.path.exists('.git'):
711         return None
712
713     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
714     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
715     if len(output) == 0:
716         return None
717     o = output[0].decode('utf-8')
718     return o.replace("commit ", "")[0:10]
719
720 def dist(ctx):
721     r = git_revision()
722     if r is not None:
723         f = open('.git_revision', 'w')
724         print(r, file=f)
725         f.close()
726
727     ctx.excl = """
728                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
729                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
730                GRSYMS GRTAGS GSYMS GTAGS compile_commands.json
731                """
732
733 def create_version_cc(version, cxx_flags):
734     commit = git_revision()
735     if commit is None and os.path.exists('.git_revision'):
736         f = open('.git_revision', 'r')
737         commit = f.readline().strip()
738
739     if commit is None:
740         commit = 'release'
741
742     try:
743         text =  '#include "version.h"\n'
744         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
745         text += 'char const * dcpomatic_version = \"%s\";\n' % version
746
747         t = ''
748         for f in cxx_flags:
749             f = f.replace('"', '\\"')
750             t += f + ' '
751         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
752
753         print('Writing version information to src/lib/version.cc')
754         o = open('src/lib/version.cc', 'w')
755         o.write(text)
756         o.close()
757     except IOError:
758         print('Could not open src/lib/version.cc for writing\n')
759         sys.exit(-1)
760
761 def post(ctx):
762     if ctx.cmd == 'install' and ctx.env.TARGET_LINUX:
763         ctx.exec_command('/sbin/ldconfig')
764         exe = os.path.join(ctx.env['INSTALL_PREFIX'], 'bin/dcpomatic2_disk_writer')
765         if os.path.exists(exe):
766             os.system('setcap "cap_dac_override+ep cap_sys_admin+ep" %s' % exe)
767
768 def pot(bld):
769     bld.recurse('src')
770
771 def pot_merge(bld):
772     bld.recurse('src')
773
774 def supporters(bld):
775     r = os.system('curl -m 2 -s -f https://dcpomatic.com/supporters.cc > src/wx/supporters.cc')
776     if (r >> 8) == 0:
777         r = os.system('curl -s -f https://dcpomatic.com/subscribers.cc > src/wx/subscribers.cc')
778     if (r >> 8) != 0:
779         raise Exception("Could not download supporters lists (%d)" % (r >> 8))
780
781 def tags(bld):
782     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc')
783
784 def cppcheck(bld):
785     os.system('cppcheck --enable=all --quiet .')