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