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