Merge master.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dcpomatic'
6 <<<<<<< HEAD
7 VERSION = '2.0.0devel'
8 =======
9 VERSION = '1.64.18devel'
10 >>>>>>> master
11
12 def options(opt):
13     opt.load('compiler_cxx')
14     opt.load('winres')
15
16     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
17     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
18     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
19     opt.add_option('--target-debian',     action='store_true', default=False, help='set up to compile for a Debian/Ubuntu package')
20     opt.add_option('--target-centos',     action='store_true', default=False, help='set up to compile for a Centos package')
21     opt.add_option('--magickpp-config',   action='store',      default='Magick++-config', help='path to Magick++-config')
22     opt.add_option('--wx-config',         action='store',      default='wx-config', help='path to wx-config')
23     opt.add_option('--address-sanitizer', action='store_true', default=False, help='build with address sanitizer')
24     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
25
26 def static_ffmpeg(conf):
27     conf.check_cfg(package='libavformat', args='--cflags', uselib_store='AVFORMAT', mandatory=True)
28     conf.env.STLIB_AVFORMAT = ['avformat']
29     conf.check_cfg(package='libavfilter', args='--cflags', uselib_store='AVFILTER', mandatory=True)
30     conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
31     conf.check_cfg(package='libavcodec', args='--cflags', uselib_store='AVCODEC', mandatory=True)
32     conf.env.STLIB_AVCODEC = ['avcodec']
33     conf.env.LIB_AVCODEC = ['z']
34     conf.check_cfg(package='libavutil', args='--cflags', uselib_store='AVUTIL', mandatory=True)
35     conf.env.STLIB_AVUTIL = ['avutil']
36     conf.check_cfg(package='libswscale', args='--cflags', uselib_store='SWSCALE', mandatory=True)
37     conf.env.STLIB_SWSCALE = ['swscale']
38     conf.check_cfg(package='libswresample', args='--cflags', uselib_store='SWRESAMPLE', mandatory=True)
39     conf.env.STLIB_SWRESAMPLE = ['swresample']
40     conf.check_cfg(package='libpostproc', args='--cflags', uselib_store='POSTPROC', mandatory=True)
41     conf.env.STLIB_POSTPROC = ['postproc']
42
43 def dynamic_ffmpeg(conf):
44     conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
45     conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
46     conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
47     conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
48     conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
49     conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
50     conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
51
52 def static_openjpeg(conf):
53     conf.check_cfg(package='libopenjpeg', args='--cflags', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
54     conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.1', mandatory=True)
55     conf.env.STLIB_OPENJPEG = ['openjpeg']
56
57 def dynamic_openjpeg(conf):
58     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
59     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.1', mandatory=True)
60
61 def static_dcp(conf, static_boost, static_xmlpp, static_xmlsec, static_ssh):
62     conf.check_cfg(package='libdcp-1.0', atleast_version='0.92', args='--cflags', uselib_store='DCP', mandatory=True)
63     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
64     conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-libdcp', 'kumu-libdcp']
65     conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
66
67     if static_boost:
68         conf.env.STLIB_DCP.append('boost_system')
69
70     if static_xmlpp:
71         conf.env.STLIB_DCP.append('xml++-2.6')
72     else:
73         conf.env.LIB_DCP.append('xml++-2.6')
74
75     if static_xmlsec:
76         conf.env.STLIB_DCP.append('xmlsec1-openssl')
77         conf.env.STLIB_DCP.append('xmlsec1')
78     else:
79         conf.env.LIB_DCP.append('xmlsec1-openssl')
80         conf.env.LIB_DCP.append('xmlsec1')
81
82     if static_ssh:
83         conf.env.STLIB_DCP.append('ssh')
84     else:
85         conf.env.LIB_DCP.append('ssh')
86
87 def dynamic_dcp(conf):
88     conf.check_cfg(package='libdcp-1.0', atleast_version='0.92', args='--cflags --libs', uselib_store='DCP', mandatory=True)
89     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
90
91 def dynamic_ssh(conf):
92     conf.check_cc(fragment="""
93                            #include <libssh/libssh.h>\n
94                            int main () {\n
95                            ssh_session s = ssh_new ();\n
96                            return 0;\n
97                            }
98                            """, msg='Checking for library libssh', mandatory=True, lib='ssh', uselib_store='SSH')
99
100 def dynamic_boost(conf, lib_suffix, thread):
101     conf.check_cxx(fragment="""
102                             #include <boost/version.hpp>\n
103                             #if BOOST_VERSION < 104500\n
104                             #error boost too old\n
105                             #endif\n
106                             int main(void) { return 0; }\n
107                             """,
108                    mandatory=True,
109                    msg='Checking for boost library >= 1.45',
110                    okmsg='yes',
111                    errmsg='too old\nPlease install boost version 1.45 or higher.')
112
113     conf.check_cxx(fragment="""
114                             #include <boost/thread.hpp>\n
115                             int main() { boost::thread t (); }\n
116                             """, msg='Checking for boost threading library',
117                             libpath='/usr/local/lib',
118                             lib=[thread, 'boost_system%s' % lib_suffix],
119                             uselib_store='BOOST_THREAD')
120
121     conf.check_cxx(fragment="""
122                             #include <boost/filesystem.hpp>\n
123                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
124                             """, msg='Checking for boost filesystem library',
125                             libpath='/usr/local/lib',
126                             lib=['boost_filesystem%s' % lib_suffix, 'boost_system%s' % lib_suffix],
127                             uselib_store='BOOST_FILESYSTEM')
128
129     conf.check_cxx(fragment="""
130                             #include <boost/date_time.hpp>\n
131                             int main() { boost::gregorian::day_clock::local_day(); }\n
132                             """, msg='Checking for boost datetime library',
133                             libpath='/usr/local/lib',
134                             lib=['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix],
135                             uselib_store='BOOST_DATETIME')
136
137     conf.check_cxx(fragment="""
138                             #include <boost/signals2.hpp>\n
139                             int main() { boost::signals2::signal<void (int)> x; }\n
140                             """,
141                             msg='Checking for boost signals2 library',
142                             uselib_store='BOOST_SIGNALS2')
143
144 def static_boost(conf, lib_suffix):
145     conf.env.STLIB_BOOST_THREAD = ['boost_thread']
146     conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % lib_suffix]
147     conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix]
148     conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
149
150 def dynamic_quickmail(conf):
151     conf.check_cxx(fragment="""
152                             #include <quickmail.h>
153                             int main(void) { quickmail_initialize (); }
154                             """,
155                    mandatory=True,
156                    msg='Checking for libquickmail',
157                    libpath='/usr/local/lib',
158                    lib=['quickmail', 'curl'],
159                    uselib_store='QUICKMAIL')
160
161 def configure(conf):
162     conf.load('compiler_cxx')
163     if conf.options.target_windows:
164         conf.load('winres')
165
166     # conf.options -> conf.env
167     conf.env.TARGET_WINDOWS = conf.options.target_windows
168     conf.env.DISABLE_GUI = conf.options.disable_gui
169     conf.env.TARGET_DEBIAN = conf.options.target_debian
170     conf.env.TARGET_CENTOS = conf.options.target_centos
171     conf.env.VERSION = VERSION
172     conf.env.TARGET_OSX = sys.platform == 'darwin'
173     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
174     # true if we should build dcpomatic/libdcpomatic/libdcpomatic-wx statically
175     conf.env.BUILD_STATIC = conf.options.target_debian or conf.options.target_centos
176     if conf.options.install_prefix is None:
177         conf.env.INSTALL_PREFIX = conf.env.PREFIX
178     else:
179         conf.env.INSTALL_PREFIX = conf.options.install_prefix
180
181     # Common CXXFLAGS
182     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing',
183                                        '-Wall', '-Wno-attributes', '-Wextra', '-D_FILE_OFFSET_BITS=64'])
184
185     if conf.options.enable_debug:
186         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
187     else:
188         conf.env.append_value('CXXFLAGS', '-O2')
189
190     if conf.options.address_sanitizer:
191         conf.env.append_value('CXXFLAGS', ['-fsanitize=address', '-fno-omit-frame-pointer'])
192         conf.env.append_value('LINKFLAGS', ['-fsanitize=address'])
193
194     #
195     # Platform-specific CFLAGS hacks and other tinkering
196     #
197
198     # Windows
199     if conf.env.TARGET_WINDOWS:
200         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H', '-DUNICODE', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN'])
201         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
202         conf.env.append_value('WINRCFLAGS', wxrc)
203         if conf.options.enable_debug:
204             conf.env.append_value('CXXFLAGS', ['-mconsole'])
205             conf.env.append_value('LINKFLAGS', ['-mconsole'])
206         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
207         conf.check(lib='bfd', uselib_store='BFD', msg="Checking for library bfd")
208         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
209         conf.check(lib='iberty', uselib_store='IBERTY', msg="Checking for library iberty")
210         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
211         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
212         boost_lib_suffix = '-mt'
213         boost_thread = 'boost_thread_win32-mt'
214
215     # POSIX
216     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
217         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
218         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['PREFIX'])
219         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dcpomatic"' % conf.env['PREFIX'])
220         boost_lib_suffix = ''
221         boost_thread = 'boost_thread'
222         conf.env.append_value('LINKFLAGS', '-pthread')
223
224     # Linux
225     if conf.env.TARGET_LINUX:
226         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
227
228     if conf.env.TARGET_DEBIAN:
229         # libxml2 seems to be linked against this on Ubuntu but it doesn't mention it in its .pc file
230         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
231         
232     if not conf.env.DISABLE_GUI and conf.env.TARGET_LINUX:
233         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
234
235     # OSX
236     if conf.env.TARGET_OSX:
237         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_OSX')
238         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
239
240     #
241     # Dependencies.
242     # There's probably a neater way of expressing these, but I've gone for brute force for now.
243     #
244
245     if conf.env.TARGET_DEBIAN:
246         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags', uselib_store='CXML', mandatory=True)
247         conf.env.STLIB_CXML = ['cxml']
248         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XML++', mandatory=True)
249         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
250         conf.env.STLIB_QUICKMAIL = ['quickmail']
251         static_ffmpeg(conf)
252         static_openjpeg(conf)
253         static_dcp(conf, False, False, False, False)
254         dynamic_boost(conf, boost_lib_suffix, boost_thread)
255
256     if conf.env.TARGET_CENTOS:
257         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs-only-L', uselib_store='CXML', mandatory=True)
258         conf.env.STLIB_CXML = ['cxml', 'boost_filesystem']
259         conf.check_cfg(package='libcurl', args='--cflags --libs-only-L', uselib_store='CURL', mandatory=True)
260         conf.env.STLIB_CURL = ['curl']
261         conf.env.LIB_CURL = ['ssh2', 'idn']
262         conf.env.STLIB_QUICKMAIL = ['quickmail', 'curl']
263         conf.env.LIB_QUICKMAIL = ['ssh2', 'idn']
264         static_ffmpeg(conf)
265         static_openjpeg(conf)
266         static_dcp(conf, True, True, True, True)
267         static_boost(conf, boost_lib_suffix)
268
269     if conf.env.TARGET_WINDOWS:
270         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XML++', mandatory=True)
271         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
272         conf.check_cxx(fragment="""
273                                 #include <boost/locale.hpp>\n
274                                 int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
275                                 """, msg='Checking for boost locale library',
276                                 libpath='/usr/local/lib',
277                                 lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
278                                 uselib_store='BOOST_LOCALE')
279         dynamic_quickmail(conf)
280         dynamic_boost(conf, boost_lib_suffix, boost_thread)
281         dynamic_ffmpeg(conf)
282         dynamic_openjpeg(conf)
283         dynamic_dcp(conf)
284         dynamic_ssh(conf)
285
286     # Not packaging; just a straight build
287     if not conf.env.TARGET_WINDOWS and not conf.env.TARGET_DEBIAN and not conf.env.TARGET_CENTOS:
288         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
289         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XML++', mandatory=True)
290         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
291         dynamic_quickmail(conf)
292         dynamic_boost(conf, boost_lib_suffix, boost_thread)
293         dynamic_ffmpeg(conf)
294         dynamic_dcp(conf)
295         dynamic_openjpeg(conf)
296         dynamic_ssh(conf)
297
298     # Dependencies which are always dynamically linked
299     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
300     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
301     conf.check_cfg(package= '', path=conf.options.magickpp_config, args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
302     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
303     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
304     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
305
306     conf.check_cc(fragment="""
307                            #include <glib.h>
308                            int main() { g_format_size (1); }
309                            """, msg='Checking for g_format_size ()',
310                            uselib='GLIB',
311                            define_name='HAVE_G_FORMAT_SIZE',
312                            mandatory=False)
313
314     conf.find_program('msgfmt', var='MSGFMT')
315     
316     datadir = conf.env.DATADIR
317     if not datadir:
318         datadir = os.path.join(conf.env.PREFIX, 'share')
319     
320     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
321     conf.define('DATADIR', datadir)
322
323     conf.recurse('src')
324     conf.recurse('test')
325
326 def build(bld):
327     create_version_cc(VERSION, bld.env.CXXFLAGS)
328
329     bld.recurse('src')
330     bld.recurse('test')
331     if bld.env.TARGET_WINDOWS:
332         bld.recurse('platform/windows')
333     if bld.env.TARGET_LINUX:
334         bld.recurse('platform/linux')
335     if bld.env.TARGET_OSX:
336         bld.recurse('platform/osx')
337
338     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
339         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dcpomatic.png' % r)
340
341     if not bld.env.TARGET_WINDOWS:
342         bld.install_files('${PREFIX}/share/dcpomatic', 'icons/taskbar_icon.png')
343
344     bld.add_post_fun(post)
345
346 def git_revision():
347     if not os.path.exists('.git'):
348         return None
349
350     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
351     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
352     o = output[0].decode('utf-8')
353     return o.replace("commit ", "")[0:10]
354
355 def dist(ctx):
356     r = git_revision()
357     if r is not None:
358         f = open('.git_revision', 'w')
359         print >>f,r
360     f.close()
361
362     ctx.excl = """
363                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
364                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
365                GRSYMS GRTAGS GSYMS GTAGS
366                """
367
368
369 def create_version_cc(version, cxx_flags):
370     commit = git_revision()
371     if commit is None and os.path.exists('.git_revision'):
372         f = open('.git_revision', 'r')
373         commit = f.readline().strip()
374     
375     if commit is None:
376         commit = 'release'
377
378     try:
379         text =  '#include "version.h"\n'
380         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
381         text += 'char const * dcpomatic_version = \"%s\";\n' % version
382
383         t = ''
384         for f in cxx_flags:
385             f = f.replace('"', '\\"')
386             t += f + ' '
387         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
388
389         print('Writing version information to src/lib/version.cc')
390         o = open('src/lib/version.cc', 'w')
391         o.write(text)
392         o.close()
393     except IOError:
394         print('Could not open src/lib/version.cc for writing\n')
395         sys.exit(-1)
396     
397 def post(ctx):
398     if ctx.cmd == 'install':
399         ctx.exec_command('/sbin/ldconfig')
400
401 def pot(bld):
402     bld.recurse('src')
403
404 def pot_merge(bld):
405     bld.recurse('src')