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