Stop the build if we can't download the supporters' list.
[dcpomatic.git] / wscript
1 #
2 #    Copyright (C) 2012-2017 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 import subprocess
21 import os
22 import shlex
23 import sys
24 import glob
25 import distutils
26 import distutils.spawn
27 try:
28     # python 2
29     from urllib import urlencode
30 except ImportError:
31     # python 3
32     from urllib.parse import urlencode
33 from waflib import Logs, Context
34
35 APPNAME = 'dcpomatic'
36
37 this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
38 last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
39
40 if this_version == '':
41     VERSION = '%sdevel' % last_version[1:].strip()
42 else:
43     VERSION = this_version[1:].strip()
44
45 print('Version: %s' % VERSION)
46
47 def options(opt):
48     opt.load('compiler_cxx')
49     opt.load('winres')
50
51     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
52     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
53     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
54     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
55     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
56     opt.add_option('--static-dcpomatic',  action='store_true', default=False, help='link to components of DCP-o-matic statically')
57     opt.add_option('--static-boost',      action='store_true', default=False, help='link statically to Boost')
58     opt.add_option('--static-wxwidgets',  action='store_true', default=False, help='link statically to wxWidgets')
59     opt.add_option('--static-ffmpeg',     action='store_true', default=False, help='link statically to FFmpeg')
60     opt.add_option('--static-xmlpp',      action='store_true', default=False, help='link statically to libxml++')
61     opt.add_option('--static-xmlsec',     action='store_true', default=False, help='link statically to xmlsec')
62     opt.add_option('--static-ssh',        action='store_true', default=False, help='link statically to libssh')
63     opt.add_option('--static-cxml',       action='store_true', default=False, help='link statically to libcxml')
64     opt.add_option('--static-dcp',        action='store_true', default=False, help='link statically to libdcp')
65     opt.add_option('--static-sub',        action='store_true', default=False, help='link statically to libsub')
66     opt.add_option('--static-curl',       action='store_true', default=False, help='link statically to libcurl')
67     opt.add_option('--workaround-gssapi', action='store_true', default=False, help='link to gssapi_krb5')
68     opt.add_option('--force-cpp11',       action='store_true', default=False, help='force use of C++11')
69
70 def configure(conf):
71     conf.load('compiler_cxx')
72     conf.load('clang_compilation_database', tooldir=['waf-tools'])
73     if conf.options.target_windows:
74         conf.load('winres')
75
76     # Save conf.options that we need elsewhere in conf.env
77     conf.env.DISABLE_GUI = conf.options.disable_gui
78     conf.env.DISABLE_TESTS = conf.options.disable_tests
79     conf.env.TARGET_WINDOWS = conf.options.target_windows
80     conf.env.TARGET_OSX = sys.platform == 'darwin'
81     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
82     conf.env.VERSION = VERSION
83     conf.env.DEBUG = conf.options.enable_debug
84     conf.env.STATIC_DCPOMATIC = conf.options.static_dcpomatic
85     if conf.options.install_prefix is None:
86         conf.env.INSTALL_PREFIX = conf.env.PREFIX
87     else:
88         conf.env.INSTALL_PREFIX = conf.options.install_prefix
89
90     # Common CXXFLAGS
91     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS',
92                                        '-D__STDC_LIMIT_MACROS',
93                                        '-D__STDC_FORMAT_MACROS',
94                                        '-msse',
95                                        '-fno-strict-aliasing',
96                                        '-Wall',
97                                        '-Wcast-align',
98                                        '-Wextra',
99                                        '-Wwrite-strings',
100                                        # Remove auto_ptr warnings from libxml++-2.6
101                                        '-Wno-deprecated-declarations',
102                                        '-D_FILE_OFFSET_BITS=64'])
103
104     if conf.options.force_cpp11:
105         conf.env.append_value('CXXFLAGS', ['-std=c++11', '-DBOOST_NO_CXX11_SCOPED_ENUMS'])
106
107     gcc = conf.env['CC_VERSION']
108     if int(gcc[0]) >= 4 and int(gcc[1]) > 1:
109         conf.env.append_value('CXXFLAGS', ['-Wno-unused-result'])
110     have_c11 = int(gcc[0]) >= 4 and int(gcc[1]) >= 8 and int(gcc[2]) >= 1
111
112     if conf.options.enable_debug:
113         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG', '-fno-omit-frame-pointer'])
114     else:
115         conf.env.append_value('CXXFLAGS', '-O2')
116
117     #
118     # Windows/Linux/OS X specific
119     #
120
121     # Windows
122     if conf.env.TARGET_WINDOWS:
123         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
124         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
125         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
126         conf.env.append_value('CXXFLAGS', '-DUNICODE')
127         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
128         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
129         conf.env.append_value('CXXFLAGS', '-std=c++11')
130         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
131         conf.env.append_value('WINRCFLAGS', wxrc)
132         if conf.options.enable_debug:
133             conf.env.append_value('CXXFLAGS', ['-mconsole'])
134             conf.env.append_value('LINKFLAGS', ['-mconsole'])
135         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
136         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
137         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
138         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
139         conf.check(lib='ole32', uselib_store='OLE32', msg="Checking for library ole32")
140         conf.check(lib='dsound', uselib_store='DSOUND', msg="Checking for library dsound")
141         conf.check(lib='winmm', uselib_store='WINMM', msg="Checking for library winmm")
142         conf.check(lib='ksuser', uselib_store='KSUSER', msg="Checking for library ksuser")
143         boost_lib_suffix = '-mt'
144         boost_thread = 'boost_thread_win32-mt'
145         conf.check_cxx(fragment="""
146                                #include <boost/locale.hpp>\n
147                                int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
148                                """,
149                                msg='Checking for boost locale library',
150                                libpath='/usr/local/lib',
151                                lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
152                                uselib_store='BOOST_LOCALE')
153
154     # POSIX
155     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
156         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
157         boost_lib_suffix = ''
158         boost_thread = 'boost_thread'
159         conf.env.append_value('LINKFLAGS', '-pthread')
160
161     # Linux
162     if conf.env.TARGET_LINUX:
163         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
164         conf.env.append_value('CXXFLAGS', '-DLINUX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
165         conf.env.append_value('CXXFLAGS', '-DLINUX_SHARE_PREFIX="%s/share/dcpomatic2"' % conf.env['INSTALL_PREFIX'])
166         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
167         conf.env.append_value('CXXFLAGS', ['-Wunsafe-loop-optimizations', '-Wlogical-op'])
168         if not conf.env.DISABLE_GUI:
169             conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
170
171     # OSX
172     if conf.env.TARGET_OSX:
173         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-Wno-unused-function', '-Wno-unused-parameter', '-Wno-unused-local-typedef', '-Wno-potentially-evaluated-expression'])
174         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
175
176     #
177     # Dependencies.
178     #
179
180     # It should be possible to use check_cfg for both dynamic and static linking, but
181     # e.g. pkg-config --libs --static foo returns some libraries that should be statically
182     # linked and others that should be dynamic.  This doesn't work too well with waf
183     # as it wants them separate.
184
185     # libcurl
186     if conf.options.static_curl:
187         conf.env.STLIB_CURL = ['curl']
188         conf.env.LIB_CURL = ['ssh2', 'idn']
189     else:
190         conf.check_cfg(package='libcurl', args='--cflags --libs', atleast_version='7.19.1', uselib_store='CURL', mandatory=True)
191
192     # libicu
193     if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
194         if conf.check_cfg(package='icu', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
195             conf.check_cxx(fragment="""
196                             #include <unicode/ucsdet.h>
197                             int main(void) {
198                                 UErrorCode status = U_ZERO_ERROR;
199                                 UCharsetDetector* detector = ucsdet_open (&status);
200                                 return 0; }\n
201                             """,
202                        mandatory=True,
203                        msg='Checking for libicu',
204                        okmsg='yes',
205                        libpath=['/usr/local/lib', '/usr/lib', '/usr/lib/x86_64-linux-gnu'],
206                        lib=['icuio', 'icui18n', 'icudata', 'icuuc'],
207                        uselib_store='ICU')
208
209     # libsamplerate
210     conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True)
211
212     # glib
213     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
214
215     # ImageMagick / GraphicsMagick
216     if distutils.spawn.find_executable('Magick++-config'):
217         conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
218         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
219     else:
220         image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
221         graphics = None
222         if image is None:
223             graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
224         if image is None and graphics is None:
225             Logs.pprint('RED', 'Neither ImageMagick++ nor GraphicsMagick++ found: one or the other is required')
226         if image is not None:
227             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
228         if graphics is not None:
229             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GRAPHICS_MAGICK')
230
231     # See if we are using the MagickCore or MagickLib namespaces
232     conf.check_cxx(fragment="""
233                             #include <Magick++/Include.h>\n
234                             using namespace MagickCore;\n
235                             int main () { return 0; }\n
236                             """,
237                    mandatory=False,
238                    msg='Checking for MagickCore namespace',
239                    okmsg='yes',
240                    includes=conf.env['INCLUDES_MAGICK'],
241                    define_name='DCPOMATIC_HAVE_MAGICKCORE_NAMESPACE')
242
243     conf.check_cxx(fragment="""
244                             #include <Magick++/Include.h>\n
245                             using namespace MagickLib;\n
246                             int main () { return 0; }\n
247                             """,
248                    mandatory=False,
249                    msg='Checking for MagickLib namespace',
250                    okmsg='yes',
251                    includes=conf.env['INCLUDES_MAGICK'],
252                    define_name='DCPOMATIC_HAVE_MAGICKLIB_NAMESPACE')
253
254     # See where MagickCore.h is
255     conf.check_cxx(fragment="""
256                             #include <magick/MagickCore.h>\n
257                             int main() { return 0; }\n
258                             """,
259                    mandatory=False,
260                    msg='Checking for MagickCore.h location',
261                    okmsg='magick',
262                    errmsg='not magick',
263                    includes=conf.env['INCLUDES_MAGICK'],
264                    define_name='DCPOMATIC_MAGICKCORE_MAGICK')
265
266     conf.check_cxx(fragment="""
267                             #include <MagickCore/MagickCore.h>\n
268                             int main() { return 0; }\n
269                             """,
270                    mandatory=False,
271                    msg='Checking for MagickCore.h location',
272                    okmsg='MagickCore',
273                    errmsg='not MagickCore',
274                    includes=conf.env['INCLUDES_MAGICK'],
275                    define_name='DCPOMATIC_MAGICKCORE_MAGICKCORE')
276
277     # See if we have advanced compare() methods in Magick
278     conf.check_cxx(fragment="""
279                             #include <Magick++.h>\n
280                             int main() { Magick::Image a; Magick::Image b; a.compare(b, Magick::RootMeanSquaredErrorMetric); }
281                             """,
282                    mandatory=False,
283                    msg='Checking for advanced compare() method in {Image/Graphics}Magick',
284                    uselib='MAGICK',
285                    define_name='DCPOMATIC_ADVANCED_MAGICK_COMPARE'
286                    )
287
288     # libzip
289     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
290     conf.check_cxx(fragment="""
291                             #include <zip.h>
292                             int main() { zip_source_t* foo; }
293                             """,
294                    mandatory=False,
295                    msg="Checking for zip_source_t",
296                    uselib="ZIP",
297                    define_name='DCPOMATIC_HAVE_ZIP_SOURCE_T'
298                    )
299
300     # fontconfig
301     conf.check_cfg(package='fontconfig', args='--cflags --libs', uselib_store='FONTCONFIG', mandatory=True)
302
303     # pangomm
304     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
305
306     # cairomm
307     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
308
309     test_cxxflags = ''
310     if have_c11:
311         test_cxxflags = '-std=c++11'
312
313     # See if we have Cairo::ImageSurface::format_stride_for_width; Centos 5 does not
314     conf.check_cxx(fragment="""
315                             #include <cairomm/cairomm.h>
316                             int main(void) {
317                                 Cairo::ImageSurface::format_stride_for_width (Cairo::FORMAT_ARGB32, 1024);\n
318                                 return 0; }\n
319                             """,
320                        mandatory=False,
321                        cxxflags=test_cxxflags,
322                        msg='Checking for format_stride_for_width',
323                        okmsg='yes',
324                        includes=conf.env['INCLUDES_CAIROMM'],
325                        uselib='CAIROMM',
326                        define_name='DCPOMATIC_HAVE_FORMAT_STRIDE_FOR_WIDTH')
327
328     # See if we have Pango::Layout::show_in_cairo_context; Centos 5 does not
329     conf.check_cxx(fragment="""
330                             #include <pangomm.h>
331                             int main(void) {
332                                 Cairo::RefPtr<Cairo::Context> context;
333                                 Glib::RefPtr<Pango::Layout> layout;
334                                 layout->show_in_cairo_context (context);
335                                 return 0; }\n
336                             """,
337                        mandatory=False,
338                        msg='Checking for show_in_cairo_context',
339                        cxxflags=test_cxxflags,
340                        okmsg='yes',
341                        includes=conf.env['INCLUDES_PANGOMM'],
342                        uselib='PANGOMM',
343                        define_name='DCPOMATIC_HAVE_SHOW_IN_CAIRO_CONTEXT')
344
345
346     # libcxml
347     if conf.options.static_cxml:
348         conf.check_cfg(package='libcxml', atleast_version='0.15.5', args='--cflags', uselib_store='CXML', mandatory=True)
349         conf.env.STLIB_CXML = ['cxml']
350     else:
351         conf.check_cfg(package='libcxml', atleast_version='0.15.5', args='--cflags --libs', uselib_store='CXML', mandatory=True)
352
353     # libssh
354     if conf.options.static_ssh:
355         conf.env.STLIB_SSH = ['ssh']
356         if conf.options.workaround_gssapi:
357             conf.env.LIB_SSH = ['gssapi_krb5']
358     else:
359         conf.check_cc(fragment="""
360                                #include <libssh/libssh.h>\n
361                                int main () {\n
362                                ssh_session s = ssh_new ();\n
363                                return 0;\n
364                                }
365                                """,
366                       msg='Checking for library libssh',
367                       mandatory=True,
368                       lib='ssh',
369                       uselib_store='SSH')
370
371     # libdcp
372     if conf.options.static_dcp:
373         conf.check_cfg(package='libdcp-1.0', atleast_version='1.5.1', args='--cflags', uselib_store='DCP', mandatory=True)
374         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
375         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-cth', 'kumu-cth', 'openjp2']
376         conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
377     else:
378         conf.check_cfg(package='libdcp-1.0', atleast_version='1.5.1', args='--cflags --libs', uselib_store='DCP', mandatory=True)
379         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
380
381     # libsub
382     if conf.options.static_sub:
383         conf.check_cfg(package='libsub-1.0', atleast_version='1.3.0', args='--cflags', uselib_store='SUB', mandatory=True)
384         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
385         conf.env.STLIB_SUB = ['sub-1.0']
386     else:
387         conf.check_cfg(package='libsub-1.0', atleast_version='1.3.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
388         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
389
390     # libxml++
391     if conf.options.static_xmlpp:
392         conf.env.STLIB_XMLPP = ['xml++-2.6']
393         conf.env.LIB_XMLPP = ['xml2']
394     else:
395         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
396
397     # libxmlsec
398     if conf.options.static_xmlsec:
399         if conf.check_cxx(lib='xmlsec1-openssl', mandatory=False):
400             conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
401         else:
402             conf.env.STLIB_XMLSEC = ['xmlsec1']
403     else:
404         conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
405
406     # nettle
407     conf.check_cfg(package="nettle", args='--cflags --libs', uselib_store='NETTLE', mandatory=True)
408
409     # FFmpeg
410     if conf.options.static_ffmpeg:
411         names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'postproc', 'swresample']
412         for name in names:
413             static = subprocess.Popen(shlex.split('pkg-config --static --libs lib%s' % name), stdout=subprocess.PIPE).communicate()[0].decode('utf-8')
414             libs = []
415             stlibs = []
416             include = []
417             libpath = []
418             for s in static.split():
419                 if s.startswith('-L'):
420                     libpath.append(s[2:])
421                 elif s.startswith('-I'):
422                     include.append(s[2:])
423                 elif s.startswith('-l'):
424                     if s[2:] not in names:
425                         libs.append(s[2:])
426                     else:
427                         stlibs.append(s[2:])
428
429             conf.env['LIB_%s' % name.upper()] = libs
430             conf.env['STLIB_%s' % name.upper()] = stlibs
431             conf.env['INCLUDES_%s' % name.upper()] = include
432             conf.env['LIBPATH_%s' % name.upper()] = libpath
433     else:
434         conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
435         conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
436         conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
437         conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
438         conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
439         conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
440         conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
441
442     # Check to see if we have our version of FFmpeg that allows us to get at EBUR128 results
443     conf.check_cxx(fragment="""
444                             extern "C" {\n
445                             #include <libavfilter/f_ebur128.h>\n
446                             }\n
447                             int main () { av_ebur128_get_true_peaks (0); }\n
448                             """,
449                    msg='Checking for EBUR128-patched FFmpeg',
450                    libpath=conf.env['LIBPATH_AVFORMAT'],
451                    lib='avfilter avutil swresample',
452                    includes=conf.env['INCLUDES_AVFORMAT'],
453                    define_name='DCPOMATIC_HAVE_EBUR128_PATCHED_FFMPEG',
454                    mandatory=False)
455
456     # Check to see if we have our AVSubtitleRect has a pict member
457     # Older versions (e.g. that shipped with Ubuntu 16.04) do
458     conf.check_cxx(fragment="""
459                             extern "C" {\n
460                             #include <libavcodec/avcodec.h>\n
461                             }\n
462                             int main () { AVSubtitleRect r; r.pict; }\n
463                             """,
464                    msg='Checking for AVSubtitleRect::pict',
465                    cxxflags='-Wno-unused-result -Wno-unused-value -Wdeprecated-declarations -Werror',
466                    libpath=conf.env['LIBPATH_AVCODEC'],
467                    lib='avcodec',
468                    includes=conf.env['INCLUDES_AVCODEC'],
469                    define_name='DCPOMATIC_HAVE_AVSUBTITLERECT_PICT',
470                    mandatory=False)
471
472     # Check to see if we have our AVComponentDescriptor has a depth_minus1 member
473     # Older versions (e.g. that shipped with Ubuntu 16.04) do
474     conf.check_cxx(fragment="""
475                             extern "C" {\n
476                             #include <libavutil/pixdesc.h>\n
477                             }\n
478                             int main () { AVComponentDescriptor d; d.depth_minus1; }\n
479                             """,
480                    msg='Checking for AVComponentDescriptor::depth_minus1',
481                    cxxflags='-Wno-unused-result -Wno-unused-value -Wdeprecated-declarations -Werror',
482                    libpath=conf.env['LIBPATH_AVUTIL'],
483                    lib='avutil',
484                    includes=conf.env['INCLUDES_AVUTIL'],
485                    define_name='DCPOMATIC_HAVE_AVCOMPONENTDESCRIPTOR_DEPTH_MINUS1',
486                    mandatory=False)
487
488     # Hack: the previous two check_cxx calls end up copying their (necessary) cxxflags
489     # to these variables.  We don't want to use these for the actual build, so clearn them out.
490     conf.env['CXXFLAGS_AVCODEC'] = []
491     conf.env['CXXFLAGS_AVUTIL'] = []
492
493     # Boost
494     if conf.options.static_boost:
495         conf.env.STLIB_BOOST_THREAD = ['boost_thread']
496         conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % boost_lib_suffix]
497         conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix]
498         conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
499         conf.env.STLIB_BOOST_SYSTEM = ['boost_system']
500         conf.env.STLIB_BOOST_REGEX = ['boost_regex']
501     else:
502         conf.check_cxx(fragment="""
503                             #include <boost/version.hpp>\n
504                             #if BOOST_VERSION < 104500\n
505                             #error boost too old\n
506                             #endif\n
507                             int main(void) { return 0; }\n
508                             """,
509                        mandatory=True,
510                        msg='Checking for boost library >= 1.45',
511                        okmsg='yes',
512                        errmsg='too old\nPlease install boost version 1.45 or higher.')
513
514         conf.check_cxx(fragment="""
515                             #include <boost/thread.hpp>\n
516                             int main() { boost::thread t (); }\n
517                             """,
518                        msg='Checking for boost threading library',
519                        libpath='/usr/local/lib',
520                        lib=[boost_thread, 'boost_system%s' % boost_lib_suffix],
521                        uselib_store='BOOST_THREAD')
522
523         conf.check_cxx(fragment="""
524                             #include <boost/filesystem.hpp>\n
525                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
526                             """,
527                        msg='Checking for boost filesystem library',
528                        libpath='/usr/local/lib',
529                        lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
530                        uselib_store='BOOST_FILESYSTEM')
531
532         conf.check_cxx(fragment="""
533                             #include <boost/date_time.hpp>\n
534                             int main() { boost::gregorian::day_clock::local_day(); }\n
535                             """,
536                        msg='Checking for boost datetime library',
537                        libpath='/usr/local/lib',
538                        lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
539                        uselib_store='BOOST_DATETIME')
540
541         conf.check_cxx(fragment="""
542                             #include <boost/signals2.hpp>\n
543                             int main() { boost::signals2::signal<void (int)> x; }\n
544                             """,
545                        msg='Checking for boost signals2 library',
546                        uselib_store='BOOST_SIGNALS2')
547
548         conf.check_cxx(fragment="""
549                             #include <boost/regex.hpp>\n
550                             int main() { boost::regex re ("foo"); }\n
551                             """,
552                        msg='Checking for boost regex library',
553                        lib=['boost_regex%s' % boost_lib_suffix],
554                        uselib_store='BOOST_REGEX')
555
556     # libxml++ requires glibmm and versions of glibmm 2.45.31 and later
557     # must be built with -std=c++11 as they use c++11
558     # features and c++11 is not (yet) the default in gcc.
559     glibmm_version = conf.cmd_and_log(['pkg-config', '--modversion', 'glibmm-2.4'], output=Context.STDOUT, quiet=Context.BOTH)
560     s = glibmm_version.split('.')
561     v = (int(s[0]) << 16) | (int(s[1]) << 8) | int(s[2])
562     if v >= 0x022D1F:
563         conf.env.append_value('CXXFLAGS', '-std=c++11')
564
565     # Other stuff
566
567     conf.find_program('msgfmt', var='MSGFMT')
568
569     datadir = conf.env.DATADIR
570     if not datadir:
571         datadir = os.path.join(conf.env.PREFIX, 'share')
572
573     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
574     conf.define('DATADIR', datadir)
575
576     conf.recurse('src')
577     if not conf.env.DISABLE_TESTS:
578         conf.recurse('test')
579
580     Logs.pprint('YELLOW', '')
581     if conf.env.TARGET_WINDOWS:
582         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Windows')
583     elif conf.env.TARGET_LINUX:
584         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Linux')
585     elif conf.env.TARGET_OSX:
586         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': OS X')
587
588     def report(name, variable):
589         linkage = ''
590         if variable:
591             linkage = 'static'
592         else:
593             linkage = 'dynamic'
594         Logs.pprint('YELLOW', '\t%s: %s' % (name.ljust(25), linkage))
595
596     report('DCP-o-matic libraries', conf.options.static_dcpomatic)
597     report('Boost', conf.options.static_boost)
598     report('wxWidgets', conf.options.static_wxwidgets)
599     report('FFmpeg', conf.options.static_ffmpeg)
600     report('libxml++', conf.options.static_xmlpp)
601     report('xmlsec', conf.options.static_xmlsec)
602     report('libssh', conf.options.static_ssh)
603     report('libcxml', conf.options.static_cxml)
604     report('libdcp', conf.options.static_dcp)
605     report('libcurl', conf.options.static_curl)
606
607     Logs.pprint('YELLOW', '')
608
609 def download_supporters():
610     last_date = subprocess.Popen(shlex.split('git log -1 --format=%%ai %s' % last_version), stdout=subprocess.PIPE).communicate()[0]
611     r = os.system('curl -f https://dcpomatic.com/supporters.cc?%s > src/wx/supporters.cc' % urlencode({"until": last_date.strip()}))
612     if (r >> 8) != 0:
613         raise Exception("Could not download supporters list")
614
615 def build(bld):
616     create_version_cc(VERSION, bld.env.CXXFLAGS)
617     download_supporters()
618
619     bld.recurse('src')
620     bld.recurse('graphics')
621
622     if not bld.env.DISABLE_TESTS:
623         bld.recurse('test')
624     if bld.env.TARGET_WINDOWS:
625         bld.recurse('platform/windows')
626     if bld.env.TARGET_LINUX:
627         bld.recurse('platform/linux')
628     if bld.env.TARGET_OSX:
629         bld.recurse('platform/osx')
630
631     if not bld.env.TARGET_WINDOWS:
632         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Regular.ttf')
633         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Italic.ttf')
634         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Bold.ttf')
635
636     bld.add_post_fun(post)
637
638 def git_revision():
639     if not os.path.exists('.git'):
640         return None
641
642     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
643     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
644     if len(output) == 0:
645         return None
646     o = output[0].decode('utf-8')
647     return o.replace("commit ", "")[0:10]
648
649 def dist(ctx):
650     r = git_revision()
651     if r is not None:
652         f = open('.git_revision', 'w')
653         print >>f,r
654     f.close()
655
656     ctx.excl = """
657                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
658                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
659                GRSYMS GRTAGS GSYMS GTAGS compile_commands.json
660                """
661
662 def create_version_cc(version, cxx_flags):
663     commit = git_revision()
664     if commit is None and os.path.exists('.git_revision'):
665         f = open('.git_revision', 'r')
666         commit = f.readline().strip()
667
668     if commit is None:
669         commit = 'release'
670
671     try:
672         text =  '#include "version.h"\n'
673         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
674         text += 'char const * dcpomatic_version = \"%s\";\n' % version
675
676         t = ''
677         for f in cxx_flags:
678             f = f.replace('"', '\\"')
679             t += f + ' '
680         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
681
682         print('Writing version information to src/lib/version.cc')
683         o = open('src/lib/version.cc', 'w')
684         o.write(text)
685         o.close()
686     except IOError:
687         print('Could not open src/lib/version.cc for writing\n')
688         sys.exit(-1)
689
690 def post(ctx):
691     if ctx.cmd == 'install':
692         ctx.exec_command('/sbin/ldconfig')
693
694 def pot(bld):
695     bld.recurse('src')
696
697 def pot_merge(bld):
698     bld.recurse('src')
699
700 def tags(bld):
701     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc')
702
703 def cppcheck(bld):
704     os.system('cppcheck --enable=all --quiet .')