Don't need to explicitly link to OpenJPEG.
[dcpomatic.git] / wscript
1 #
2 #    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3 #
4 #    This program is free software; you can redistribute it and/or modify
5 #    it under the terms of the GNU General Public License as published by
6 #    the Free Software Foundation; either version 2 of the License, or
7 #    (at your option) any later version.
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program; if not, write to the Free Software
16 #    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 #
18
19 import subprocess
20 import os
21 import shlex
22 import sys
23 import glob
24 import distutils
25 import distutils.spawn
26 from waflib import Logs, Context
27
28 APPNAME = 'dcpomatic'
29 VERSION = '2.6.3devel'
30
31 def options(opt):
32     opt.load('compiler_cxx')
33     opt.load('winres')
34
35     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
36     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
37     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
38     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
39     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
40     opt.add_option('--static-dcpomatic',  action='store_true', default=False, help='link to components of DCP-o-matic statically')
41     opt.add_option('--static-boost',      action='store_true', default=False, help='link statically to Boost')
42     opt.add_option('--static-wxwidgets',  action='store_true', default=False, help='link statically to wxWidgets')
43     opt.add_option('--static-ffmpeg',     action='store_true', default=False, help='link statically to FFmpeg')
44     opt.add_option('--static-xmlpp',      action='store_true', default=False, help='link statically to libxml++')
45     opt.add_option('--static-xmlsec',     action='store_true', default=False, help='link statically to xmlsec')
46     opt.add_option('--static-ssh',        action='store_true', default=False, help='link statically to libssh')
47     opt.add_option('--static-cxml',       action='store_true', default=False, help='link statically to libcxml')
48     opt.add_option('--static-dcp',        action='store_true', default=False, help='link statically to libdcp')
49     opt.add_option('--static-sub',        action='store_true', default=False, help='link statically to libsub')
50     opt.add_option('--static-curl',       action='store_true', default=False, help='link statically to libcurl')
51     opt.add_option('--workaround-gssapi', action='store_true', default=False, help='link to gssapi_krb5')
52
53 def configure(conf):
54     conf.load('compiler_cxx')
55     if conf.options.target_windows:
56         conf.load('winres')
57
58     # Save conf.options that we need elsewhere in conf.env
59     conf.env.DISABLE_GUI = conf.options.disable_gui
60     conf.env.DISABLE_TESTS = conf.options.disable_tests
61     conf.env.TARGET_WINDOWS = conf.options.target_windows
62     conf.env.TARGET_OSX = sys.platform == 'darwin'
63     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
64     conf.env.VERSION = VERSION
65     conf.env.DEBUG = conf.options.enable_debug
66     conf.env.STATIC_DCPOMATIC = conf.options.static_dcpomatic
67     if conf.options.install_prefix is None:
68         conf.env.INSTALL_PREFIX = conf.env.PREFIX
69     else:
70         conf.env.INSTALL_PREFIX = conf.options.install_prefix
71
72     # Common CXXFLAGS
73     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS',
74                                        '-D__STDC_LIMIT_MACROS',
75                                        '-D__STDC_FORMAT_MACROS',
76                                        '-msse',
77                                        '-fno-strict-aliasing',
78                                        '-Wall',
79                                        '-Wno-attributes',
80                                        '-Wextra',
81                                        '-Wno-unused-result',
82                                        '-D_FILE_OFFSET_BITS=64'])
83
84     if conf.options.enable_debug:
85         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG', '-fno-omit-frame-pointer'])
86     else:
87         conf.env.append_value('CXXFLAGS', '-O2')
88
89     #
90     # Windows/Linux/OS X specific
91     #
92
93     # Windows
94     if conf.env.TARGET_WINDOWS:
95         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
96         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
97         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
98         conf.env.append_value('CXXFLAGS', '-DUNICODE')
99         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
100         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
101         conf.env.append_value('CXXFLAGS', '-Wno-deprecated-declarations')
102         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
103         conf.env.append_value('WINRCFLAGS', wxrc)
104         if conf.options.enable_debug:
105             conf.env.append_value('CXXFLAGS', ['-mconsole'])
106             conf.env.append_value('LINKFLAGS', ['-mconsole'])
107         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
108         conf.check(lib='bfd', uselib_store='BFD', msg="Checking for library bfd")
109         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
110         conf.check(lib='iberty', uselib_store='IBERTY', msg="Checking for library iberty")
111         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
112         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
113         boost_lib_suffix = '-mt'
114         boost_thread = 'boost_thread_win32-mt'
115         conf.check_cxx(fragment="""
116                                #include <boost/locale.hpp>\n
117                                int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
118                                """,
119                                msg='Checking for boost locale library',
120                                libpath='/usr/local/lib',
121                                lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
122                                uselib_store='BOOST_LOCALE')
123
124     # POSIX
125     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
126         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
127         boost_lib_suffix = ''
128         boost_thread = 'boost_thread'
129         conf.env.append_value('LINKFLAGS', '-pthread')
130
131     # Linux
132     if conf.env.TARGET_LINUX:
133         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
134         conf.env.append_value('CXXFLAGS', '-DLINUX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
135         conf.env.append_value('CXXFLAGS', '-DLINUX_SHARE_PREFIX="%s/share/dcpomatic2"' % conf.env['INSTALL_PREFIX'])
136         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
137         if not conf.env.DISABLE_GUI:
138             conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
139
140     # OSX
141     if conf.env.TARGET_OSX:
142         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-Wno-unused-function', '-Wno-unused-parameter'])
143         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
144
145     #
146     # Dependencies.
147     #
148
149     # It should be possible to use check_cfg for both dynamic and static linking, but
150     # e.g. pkg-config --libs --static foo returns some libraries that should be statically
151     # linked and others that should be dynamic.  This doesn't work too well with waf
152     # as it wants them separate.
153
154     # libcurl
155     if conf.options.static_curl:
156         conf.env.STLIB_CURL = ['curl']
157         conf.env.LIB_CURL = ['ssh2', 'idn']
158     else:
159         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
160
161     # libicu
162     if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
163         if conf.check_cfg(package='icu', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
164             conf.check_cxx(fragment="""
165                             #include <unicode/ucsdet.h>
166                             int main(void) {
167                                 UErrorCode status = U_ZERO_ERROR;
168                                 UCharsetDetector* detector = ucsdet_open (&status);
169                                 return 0; }\n
170                             """,
171                        mandatory=True,
172                        msg='Checking for libicu',
173                        okmsg='yes',
174                        libpath=['/usr/local/lib', '/usr/lib', '/usr/lib/x86_64-linux-gnu'],
175                        lib=['icuio', 'icui18n', 'icudata', 'icuuc'],
176                        uselib_store='ICU')
177
178     # libsndfile
179     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
180
181     # libsamplerate
182     conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True)
183
184     # glib
185     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
186
187     # ImageMagick / GraphicsMagick
188     if distutils.spawn.find_executable('Magick++-config'):
189         conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
190         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
191     else:
192         image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
193         graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
194         if image is None and graphics is None:
195             Logs.pprint('RED', 'Neither ImageMagick++ nor GraphicsMagick++ found: one or the other is required')
196         if image is not None:
197             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
198         if graphics is not None:
199             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GRAPHICS_MAGICK')
200
201     # libzip
202     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
203
204     # fontconfig
205     conf.check_cfg(package='fontconfig', args='--cflags --libs', uselib_store='FONTCONFIG', mandatory=True)
206
207     # pangomm
208     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
209
210     # cairomm
211     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
212
213     # libcxml
214     if conf.options.static_cxml:
215         conf.check_cfg(package='libcxml', atleast_version='0.12.0', args='--cflags', uselib_store='CXML', mandatory=True)
216         conf.env.STLIB_CXML = ['cxml']
217     else:
218         conf.check_cfg(package='libcxml', atleast_version='0.12.0', args='--cflags --libs', uselib_store='CXML', mandatory=True)
219
220     # libssh
221     if conf.options.static_ssh:
222         conf.env.STLIB_SSH = ['ssh']
223         if conf.options.workaround_gssapi:
224             conf.env.LIB_SSH = ['gssapi_krb5']
225     else:
226         conf.check_cc(fragment="""
227                                #include <libssh/libssh.h>\n
228                                int main () {\n
229                                ssh_session s = ssh_new ();\n
230                                return 0;\n
231                                }
232                                """,
233                       msg='Checking for library libssh',
234                       mandatory=True,
235                       lib='ssh',
236                       uselib_store='SSH')
237
238     # libdcp
239     if conf.options.static_dcp:
240         conf.check_cfg(package='libdcp-1.0', atleast_version='1.2.8', args='--cflags', uselib_store='DCP', mandatory=True)
241         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
242         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-libdcp-1.0', 'kumu-libdcp-1.0']
243         conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
244     else:
245         conf.check_cfg(package='libdcp-1.0', atleast_version='1.2.8', args='--cflags --libs', uselib_store='DCP', mandatory=True)
246         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
247
248     # libsub
249     if conf.options.static_sub:
250         conf.check_cfg(package='libsub-1.0', atleast_version='1.1.8', args='--cflags', uselib_store='SUB', mandatory=True)
251         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
252         conf.env.STLIB_SUB = ['sub-1.0']
253     else:
254         conf.check_cfg(package='libsub-1.0', atleast_version='1.1.8', args='--cflags --libs', uselib_store='SUB', mandatory=True)
255         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
256
257     # libxml++
258     if conf.options.static_xmlpp:
259         conf.env.STLIB_XMLPP = ['xml++-2.6']
260         conf.env.LIB_XMLPP = ['xml2']
261     else:
262         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
263
264     # libxmlsec
265     if conf.options.static_xmlsec:
266         conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
267     else:
268         conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
269
270     # FFmpeg
271     if conf.options.static_ffmpeg:
272         names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'postproc']
273         for name in names:
274             static = subprocess.Popen(shlex.split('pkg-config --static --libs lib%s' % name), stdout=subprocess.PIPE).communicate()[0]
275             libs = []
276             stlibs = []
277             include = []
278             libpath = []
279             for s in static.split():
280                 if s.startswith('-L'):
281                     libpath.append(s[2:])
282                 elif s.startswith('-I'):
283                     include.append(s[2:])
284                 elif s.startswith('-l'):
285                     if s[2:] not in names:
286                         libs.append(s[2:])
287                     else:
288                         stlibs.append(s[2:])
289
290             conf.env['LIB_%s' % name.upper()] = libs
291             conf.env['STLIB_%s' % name.upper()] = stlibs
292             conf.env['INCLUDES_%s' % name.upper()] = include
293             conf.env['LIBPATH_%s' % name.upper()] = libpath
294     else:
295         conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
296         conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
297         conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
298         conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
299         conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
300         conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
301
302     # Boost
303     if conf.options.static_boost:
304         conf.env.STLIB_BOOST_THREAD = ['boost_thread']
305         conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % boost_lib_suffix]
306         conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix]
307         conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
308         conf.env.STLIB_BOOST_SYSTEM = ['boost_system']
309         conf.env.STLIB_BOOST_REGEX = ['boost_regex']
310     else:
311         conf.check_cxx(fragment="""
312                             #include <boost/version.hpp>\n
313                             #if BOOST_VERSION < 104500\n
314                             #error boost too old\n
315                             #endif\n
316                             int main(void) { return 0; }\n
317                             """,
318                        mandatory=True,
319                        msg='Checking for boost library >= 1.45',
320                        okmsg='yes',
321                        errmsg='too old\nPlease install boost version 1.45 or higher.')
322
323         conf.check_cxx(fragment="""
324                             #include <boost/thread.hpp>\n
325                             int main() { boost::thread t (); }\n
326                             """,
327                        msg='Checking for boost threading library',
328                        libpath='/usr/local/lib',
329                        lib=[boost_thread, 'boost_system%s' % boost_lib_suffix],
330                        uselib_store='BOOST_THREAD')
331
332         conf.check_cxx(fragment="""
333                             #include <boost/filesystem.hpp>\n
334                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
335                             """,
336                        msg='Checking for boost filesystem library',
337                        libpath='/usr/local/lib',
338                        lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
339                        uselib_store='BOOST_FILESYSTEM')
340
341         conf.check_cxx(fragment="""
342                             #include <boost/date_time.hpp>\n
343                             int main() { boost::gregorian::day_clock::local_day(); }\n
344                             """,
345                        msg='Checking for boost datetime library',
346                        libpath='/usr/local/lib',
347                        lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
348                        uselib_store='BOOST_DATETIME')
349
350         conf.check_cxx(fragment="""
351                             #include <boost/signals2.hpp>\n
352                             int main() { boost::signals2::signal<void (int)> x; }\n
353                             """,
354                        msg='Checking for boost signals2 library',
355                        uselib_store='BOOST_SIGNALS2')
356
357         conf.check_cxx(fragment="""
358                             #include <boost/regex.hpp>\n
359                             int main() { boost::regex re ("foo"); }\n
360                             """,
361                        msg='Checking for boost regex library',
362                        lib=['boost_regex%s' % boost_lib_suffix],
363                        uselib_store='BOOST_REGEX')
364
365     # libxml++ requires glibmm and versions of glibmm 2.45.31 and later
366     # must be built with -std=c++11 as they use c++11
367     # features and c++11 is not (yet) the default in gcc.
368     glibmm_version = conf.cmd_and_log(['pkg-config', '--modversion', 'glibmm-2.4'], output=Context.STDOUT, quiet=Context.BOTH)
369     s = glibmm_version.split('.')
370     v = (int(s[0]) << 16) | (int(s[1]) << 8) | int(s[2])
371     if v >= 0x022D1F:
372         conf.env.append_value('CXXFLAGS', '-std=c++11')
373
374     # Other stuff
375
376     conf.find_program('msgfmt', var='MSGFMT')
377
378     datadir = conf.env.DATADIR
379     if not datadir:
380         datadir = os.path.join(conf.env.PREFIX, 'share')
381
382     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
383     conf.define('DATADIR', datadir)
384
385     conf.recurse('src')
386     if not conf.env.DISABLE_TESTS:
387         conf.recurse('test')
388
389     Logs.pprint('YELLOW', '')
390     if conf.env.TARGET_WINDOWS:
391         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Windows')
392     elif conf.env.TARGET_LINUX:
393         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Linux')
394     elif conf.env.TARGET_OSX:
395         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': OS X')
396
397     def report(name, variable):
398         linkage = ''
399         if variable:
400             linkage = 'static'
401         else:
402             linkage = 'dynamic'
403         Logs.pprint('YELLOW', '\t%s: %s' % (name.ljust(25), linkage))
404
405     report('DCP-o-matic libraries', conf.options.static_dcpomatic)
406     report('Boost', conf.options.static_boost)
407     report('wxWidgets', conf.options.static_wxwidgets)
408     report('FFmpeg', conf.options.static_ffmpeg)
409     report('libxml++', conf.options.static_xmlpp)
410     report('xmlsec', conf.options.static_xmlsec)
411     report('libssh', conf.options.static_ssh)
412     report('libcxml', conf.options.static_cxml)
413     report('libdcp', conf.options.static_dcp)
414     report('libcurl', conf.options.static_curl)
415
416     Logs.pprint('YELLOW', '')
417
418 def build(bld):
419     create_version_cc(VERSION, bld.env.CXXFLAGS)
420
421     bld.recurse('src')
422     bld.recurse('graphics')
423
424     if not bld.env.DISABLE_TESTS:
425         bld.recurse('test')
426     if bld.env.TARGET_WINDOWS:
427         bld.recurse('platform/windows')
428     if bld.env.TARGET_LINUX:
429         bld.recurse('platform/linux')
430     if bld.env.TARGET_OSX:
431         bld.recurse('platform/osx')
432
433     if not bld.env.TARGET_WINDOWS:
434         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Regular.ttf')
435         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Italic.ttf')
436         bld.install_files('${PREFIX}/share/dcpomatic2', 'fonts/LiberationSans-Bold.ttf')
437
438     bld.add_post_fun(post)
439
440 def git_revision():
441     if not os.path.exists('.git'):
442         return None
443
444     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
445     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
446     o = output[0].decode('utf-8')
447     return o.replace("commit ", "")[0:10]
448
449 def dist(ctx):
450     r = git_revision()
451     if r is not None:
452         f = open('.git_revision', 'w')
453         print >>f,r
454     f.close()
455
456     ctx.excl = """
457                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
458                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
459                GRSYMS GRTAGS GSYMS GTAGS
460                """
461
462 def create_version_cc(version, cxx_flags):
463     commit = git_revision()
464     if commit is None and os.path.exists('.git_revision'):
465         f = open('.git_revision', 'r')
466         commit = f.readline().strip()
467
468     if commit is None:
469         commit = 'release'
470
471     try:
472         text =  '#include "version.h"\n'
473         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
474         text += 'char const * dcpomatic_version = \"%s\";\n' % version
475
476         t = ''
477         for f in cxx_flags:
478             f = f.replace('"', '\\"')
479             t += f + ' '
480         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
481
482         print('Writing version information to src/lib/version.cc')
483         o = open('src/lib/version.cc', 'w')
484         o.write(text)
485         o.close()
486     except IOError:
487         print('Could not open src/lib/version.cc for writing\n')
488         sys.exit(-1)
489
490 def post(ctx):
491     if ctx.cmd == 'install':
492         ctx.exec_command('/sbin/ldconfig')
493
494 def pot(bld):
495     bld.recurse('src')
496
497 def pot_merge(bld):
498     bld.recurse('src')
499
500 def tags(bld):
501     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc')
502
503 def cppcheck(bld):
504     os.system('cppcheck --enable=all --quiet .')