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