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