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