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