Pass _FILE_OFFSET_BITS=64 to Linux builds to hopefully fix recovery with large MXF...
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.107pre'
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 Windows')
15     opt.add_option('--static', action='store_true', default=False, help='build statically, and link statically to libdcp and FFmpeg')
16     opt.add_option('--magickpp-config', action='store', default='Magick++-config', help='path to Magick++-config')
17     opt.add_option('--wx-config', action='store', default='wx-config', help='path to wx-config')
18
19 def configure(conf):
20     conf.load('compiler_cxx')
21     if conf.options.target_windows:
22         conf.load('winres')
23
24     conf.env.TARGET_WINDOWS = conf.options.target_windows
25     conf.env.DISABLE_GUI = conf.options.disable_gui
26     conf.env.STATIC = conf.options.static
27     conf.env.VERSION = VERSION
28     conf.env.TARGET_OSX = sys.platform == 'darwin'
29     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
30
31     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing',
32                                        '-Wall', '-Wno-attributes', '-Wextra'])
33
34     if conf.env.TARGET_WINDOWS:
35         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H', '-DUNICODE'])
36         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
37         conf.env.append_value('WINRCFLAGS', wxrc)
38         if conf.options.enable_debug:
39             conf.env.append_value('CXXFLAGS', ['-mconsole'])
40             conf.env.append_value('LINKFLAGS', ['-mconsole'])
41         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
42         conf.check(lib = 'bfd', uselib_store = 'BFD', msg = "Checking for library bfd")
43         conf.check(lib = 'dbghelp', uselib_store = 'DBGHELP', msg = "Checking for library dbghelp")
44         conf.check(lib = 'iberty', uselib_store = 'IBERTY', msg = "Checking for library iberty")
45         conf.check(lib = 'shlwapi', uselib_store = 'SHLWAPI', msg = "Checking for library shlwapi")
46         boost_lib_suffix = '-mt'
47         boost_thread = 'boost_thread_win32-mt'
48     else:
49         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
50         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['PREFIX'])
51         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dvdomatic"' % conf.env['PREFIX'])
52         conf.env.append_value('CXXFLAGS', '-D_FILE_OFFSET_BITS=64')
53         boost_lib_suffix = ''
54         boost_thread = 'boost_thread'
55         conf.env.append_value('LINKFLAGS', '-pthread')
56
57     if conf.env.TARGET_LINUX:
58         # libxml2 seems to be linked against this on Ubuntu but it doesn't mention it in its .pc file
59         conf.env.append_value('LIB', 'lzma')
60         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_LINUX')
61
62     if conf.env.TARGET_OSX:
63         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_OSX')
64
65     if conf.options.enable_debug:
66         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
67     else:
68         conf.env.append_value('CXXFLAGS', '-O2')
69
70     if not conf.options.static:
71         conf.check_cfg(package = 'libdcp', atleast_version = '0.52', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
72         conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
73         conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
74         conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
75         conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
76         conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
77         conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
78         conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
79     else:
80         # This is hackio grotesquio for static builds (ie for .deb packages).  We need to link some things
81         # statically and some dynamically, or things get horribly confused and the dynamic linker (I think)
82         # crashes.  These calls do what the check_cfg calls would have done, but specify the
83         # different bits as static or dynamic as required.  It'll break if you look at it funny, but
84         # I think anyone else who builds would do so dynamically.
85         conf.env.HAVE_CXML = 1
86         conf.env.STLIB_CXML = ['cxml']
87         conf.env.HAVE_DCP = 1
88         conf.env.STLIB_DCP = ['dcp', 'asdcp-libdcp', 'kumu-libdcp']
89         conf.env.LIB_DCP = ['glibmm-2.4', 'xml++-2.6', 'ssl', 'crypto', 'bz2']
90         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='DCP', mandatory=True)
91         conf.env.HAVE_AVFORMAT = 1
92         conf.env.STLIB_AVFORMAT = ['avformat']
93         conf.env.HAVE_AVFILTER = 1
94         conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
95         conf.env.HAVE_AVCODEC = 1
96         conf.env.STLIB_AVCODEC = ['avcodec']
97         conf.env.LIB_AVCODEC = ['z']
98         conf.env.HAVE_AVUTIL = 1
99         conf.env.STLIB_AVUTIL = ['avutil']
100         conf.env.HAVE_SWSCALE = 1
101         conf.env.STLIB_SWSCALE = ['swscale']
102         conf.env.HAVE_SWRESAMPLE = 1
103         conf.env.STLIB_SWRESAMPLE = ['swresample']
104         conf.env.HAVE_POSTPROC = 1
105         conf.env.STLIB_POSTPROC = ['postproc']
106
107         # This doesn't seem to be set up, and we need it otherwise resampling support
108         # won't be included.  Hack upon a hack, obviously
109         conf.env.append_value('CXXFLAGS', ['-DHAVE_SWRESAMPLE=1'])
110
111     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
112     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
113
114     if conf.env.TARGET_LINUX:
115         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
116         if conf.env.STATIC:
117             conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
118         else:
119             # On Linux we need to be able to include <gtk/gtk.h> to check GTK's version
120             conf.check_cfg(package='gtk+-2.0', args='--cflags', uselib_store='GTK', mandatory=True)
121
122     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
123
124     if conf.options.static:
125         conf.check_cc(fragment = """
126                         #include <stdio.h>\n
127                         #include <openjpeg.h>\n
128                         int main () {\n
129                         void* p = (void *) opj_image_create;\n
130                         return 0;\n
131                         }
132                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
133     else:
134         # Only 1.5.0 and 1.5.1 have been tested.
135         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
136         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
137
138     conf.check_cxx(fragment = """
139                               #include <boost/version.hpp>\n
140                               #if BOOST_VERSION < 104500\n
141                               #error boost too old\n
142                               #endif\n
143                               int main(void) { return 0; }\n
144                               """,
145                    mandatory = True,
146                    msg = 'Checking for boost library >= 1.45',
147                    okmsg = 'yes',
148                    errmsg = 'too old\nPlease install boost version 1.45 or higher.')
149
150     conf.check_cc(fragment  = """
151                               #include <libssh/libssh.h>\n
152                               int main () {\n
153                               ssh_session s = ssh_new ();\n
154                               return 0;\n
155                               }
156                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
157
158     conf.check_cxx(fragment = """
159                               #include <boost/thread.hpp>\n
160                               int main() { boost::thread t (); }\n
161                               """, msg = 'Checking for boost threading library',
162                               libpath = '/usr/local/lib',
163                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
164                               uselib_store = 'BOOST_THREAD')
165
166     conf.check_cxx(fragment = """
167                               #include <boost/filesystem.hpp>\n
168                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
169                               """, msg = 'Checking for boost filesystem library',
170                               libpath = '/usr/local/lib',
171                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
172                               uselib_store = 'BOOST_FILESYSTEM')
173
174     conf.check_cxx(fragment = """
175                               #include <boost/date_time.hpp>\n
176                               int main() { boost::gregorian::day_clock::local_day(); }\n
177                               """, msg = 'Checking for boost datetime library',
178                               libpath = '/usr/local/lib',
179                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
180                               uselib_store = 'BOOST_DATETIME')
181
182     conf.check_cxx(fragment = """
183                               #include <boost/signals2.hpp>\n
184                               int main() { boost::signals2::signal<void (int)> x; }\n
185                               """,
186                               msg = 'Checking for boost signals2 library',
187                               uselib_store = 'BOOST_SIGNALS2')
188
189     conf.check_cc(fragment = """
190                              #include <glib.h>
191                              int main() { g_format_size (1); }
192                              """, msg = 'Checking for g_format_size ()',
193                              uselib = 'GLIB',
194                              define_name = 'HAVE_G_FORMAT_SIZE',
195                              mandatory = False)
196
197     conf.find_program('msgfmt', var='MSGFMT')
198     
199     datadir = conf.env.DATADIR
200     if not datadir:
201         datadir = os.path.join(conf.env.PREFIX, 'share')
202     
203     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
204     conf.define('DATADIR', datadir)
205
206     conf.recurse('src')
207     conf.recurse('test')
208
209 def build(bld):
210     create_version_cc(VERSION)
211
212     bld.recurse('src')
213     bld.recurse('test')
214     if bld.env.TARGET_WINDOWS:
215         bld.recurse('platform/windows')
216     if bld.env.TARGET_LINUX:
217         bld.recurse('platform/linux')
218     if bld.env.TARGET_OSX:
219         bld.recurse('platform/osx')
220
221     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
222         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
223
224     if not bld.env.TARGET_WINDOWS:
225         bld.install_files('${PREFIX}/share/dvdomatic', 'icons/taskbar_icon.png')
226
227     bld.add_post_fun(post)
228
229 def dist(ctx):
230     ctx.excl = """
231                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
232                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
233                GRSYMS GRTAGS GSYMS GTAGS
234                """
235
236 def create_version_cc(version):
237     if os.path.exists('.git'):
238         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
239         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
240         o = output[0].decode('utf-8')
241         commit = o.replace ("commit ", "")[0:10]
242     else:
243         commit = 'release'
244
245     try:
246         text =  '#include "version.h"\n'
247         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
248         text += 'char const * dvdomatic_version = \"%s\";\n' % version
249         print('Writing version information to src/lib/version.cc')
250         o = open('src/lib/version.cc', 'w')
251         o.write(text)
252         o.close()
253     except IOError:
254         print('Could not open src/lib/version.cc for writing\n')
255         sys.exit(-1)
256     
257 def post(ctx):
258     if ctx.cmd == 'install':
259         ctx.exec_command('/sbin/ldconfig')
260
261 def pot(bld):
262     bld.recurse('src')
263
264 def pot_merge(bld):
265     bld.recurse('src')