Bump libdcp.
[libsub.git] / wscript
1 #
2 #    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of libsub.
5 #
6 #    libsub is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    libsub is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with libsub.  If not, see <http://www.gnu.org/licenses/>.
18
19 import subprocess
20 import os
21 import shlex
22 from waflib import Context
23
24 APPNAME = 'libsub'
25 libdcp_version = '1.8.12'
26
27 this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
28 last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
29
30 if this_version == '':
31     VERSION = '%sdevel' % last_version[1:].strip()
32 else:
33     VERSION = this_version[1:].strip()
34
35 API_VERSION = '-1.0'
36
37 try:
38     from subprocess import STDOUT, check_output, CalledProcessError
39 except ImportError:
40     # python 2.6 (in Centos 6) doesn't include check_output
41     # monkey patch it in!
42     import subprocess
43     STDOUT = subprocess.STDOUT
44
45     def check_output(*popenargs, **kwargs):
46         if 'stdout' in kwargs:  # pragma: no cover
47             raise ValueError('stdout argument not allowed, '
48                              'it will be overridden.')
49         process = subprocess.Popen(stdout=subprocess.PIPE,
50                                    *popenargs, **kwargs)
51         output, _ = process.communicate()
52         retcode = process.poll()
53         if retcode:
54             cmd = kwargs.get("args")
55             if cmd is None:
56                 cmd = popenargs[0]
57             raise subprocess.CalledProcessError(retcode, cmd,
58                                                 output=output)
59         return output
60     subprocess.check_output = check_output
61
62     # overwrite CalledProcessError due to `output`
63     # keyword not being available (in 2.6)
64     class CalledProcessError(Exception):
65
66         def __init__(self, returncode, cmd, output=None):
67             self.returncode = returncode
68             self.cmd = cmd
69             self.output = output
70
71         def __str__(self):
72             return "Command '%s' returned non-zero exit status %d" % (
73                 self.cmd, self.returncode)
74     subprocess.CalledProcessError = CalledProcessError
75
76 def options(opt):
77     opt.load('compiler_cxx')
78     opt.add_option('--enable-debug', action='store_true', default=False, help='build with debugging information and without optimisation')
79     opt.add_option('--static', action='store_true', default=False, help='build libsub statically and link statically to dcp')
80     opt.add_option('--target-windows-64', action='store_true', default=False, help='set up to do a cross-compile to make a Windows package 64-bit')
81     opt.add_option('--target-windows-32', action='store_true', default=False, help='set up to do a cross-compile to make a Windows package 32-bit')
82     opt.add_option('--disable-tests', action='store_true', default=False, help='disable building of tests')
83
84 def configure(conf):
85     conf.load('compiler_cxx')
86     conf.load('clang_compilation_database', tooldir=['waf-tools'])
87     conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11', '-DBOOST_NO_CXX11_SCOPED_ENUMS'])
88     conf.env.append_value('CXXFLAGS', ['-DLIBSUB_VERSION="%s"' % VERSION])
89
90     conf.env.ENABLE_DEBUG = conf.options.enable_debug
91     conf.env.STATIC = conf.options.static
92     conf.env.TARGET_WINDOWS_64 = conf.options.target_windows_64
93     conf.env.TARGET_WINDOWS_32 = conf.options.target_windows_32
94     conf.env.DISABLE_TESTS = conf.options.disable_tests
95     conf.env.API_VERSION = API_VERSION
96
97     if conf.options.target_windows_64 or conf.options.target_windows_32:
98         conf.env.append_value('CXXFLAGS', '-DLIBSUB_WINDOWS')
99     else:
100         conf.env.append_value('CXXFLAGS', '-DLIBSUB_POSIX')
101
102     if conf.options.enable_debug:
103         conf.env.append_value('CXXFLAGS', '-g')
104     else:
105         conf.env.append_value('CXXFLAGS', '-O3')
106
107     if not conf.env.TARGET_WINDOWS_64 and not conf.env.TARGET_WINDOWS_32:
108         conf.env.append_value('LINKFLAGS', '-pthread')
109
110     # Disable libxml++ deprecation warnings for now
111     conf.env.append_value('CXXFLAGS', ['-Wno-deprecated-declarations'])
112
113     conf.check_cfg(package='openssl', args='--cflags --libs', uselib_store='OPENSSL', mandatory=True)
114
115     if conf.options.static:
116         conf.check_cfg(package='libdcp-1.0', atleast_version=libdcp_version, args='--cflags', uselib_store='DCP', mandatory=True)
117         conf.env.HAVE_DCP = 1
118         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-carl', 'kumu-carl', 'openjp2', 'cxml']
119         conf.env.LIB_DCP = ['ssl', 'crypto', 'xmlsec1-openssl', 'xmlsec1', 'glibmm-2.4', 'xml++-2.6', 'xml2', 'dl']
120     else:
121         conf.check_cfg(package='libdcp-1.0', atleast_version=libdcp_version, args='--cflags --libs', uselib_store='DCP', mandatory=True)
122
123     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
124
125     boost_lib_suffix = ''
126     if conf.env.TARGET_WINDOWS_64:
127         boost_lib_suffix = '-mt-x64'
128     elif conf.env.TARGET_WINDOWS_32:
129         boost_lib_suffix = '-mt-x32'
130
131     conf.check_cxx(fragment="""
132                             #include <boost/version.hpp>\n
133                             #if BOOST_VERSION < 104500\n
134                             #error boost too old\n
135                             #endif\n
136                             int main(void) { return 0; }\n
137                             """,
138                    mandatory=True,
139                    msg='Checking for boost library >= 1.45',
140                    okmsg='yes',
141                    errmsg='too old\nPlease install boost version 1.45 or higher.')
142
143     conf.check_cxx(fragment="""
144                             #include <boost/filesystem.hpp>\n
145                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
146                             """,
147                    msg='Checking for boost filesystem library',
148                    libpath='/usr/local/lib',
149                    lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
150                    uselib_store='BOOST_FILESYSTEM')
151
152     # Find the icu- libraries on the system as we need to link to them when we look for boost locale.
153     locale_libs = ['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix]
154     for pkg in subprocess.check_output(['pkg-config', '--list-all']).splitlines():
155         pkg = pkg.decode('utf-8')
156         if pkg.startswith("icu"):
157             for lib in subprocess.check_output(['pkg-config', '--libs-only-l', pkg.split()[0]]).split():
158                 name = lib[2:]
159                 if not name in locale_libs:
160                     locale_libs.append(name.decode('utf-8'))
161
162     conf.check_cxx(fragment="""
163                             #include <boost/locale.hpp>\n
164                             int main() { boost::locale::conv::to_utf<char> ("a", "cp850"); }\n
165                             """,
166                    msg='Checking for boost locale library',
167                    libpath='/usr/local/lib',
168                    lib=locale_libs,
169                    uselib_store='BOOST_LOCALE')
170
171     conf.check_cxx(fragment="""
172                             #include <boost/regex.hpp>\n
173                             int main() { boost::regex re ("foo"); }\n
174                             """,
175                    msg='Checking for boost regex library',
176                    libpath='/usr/local/lib',
177                    lib=['boost_regex%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
178                    uselib_store='BOOST_REGEX')
179
180     if not conf.env.DISABLE_TESTS:
181         conf.recurse('test')
182
183 def build(bld):
184     create_version_cc(bld, VERSION)
185
186     if bld.env.TARGET_WINDOWS_64:
187         boost_lib_suffix = '-mt-x64'
188     elif bld.env.TARGET_WINDOWS_32:
189         boost_lib_suffix = '-mt-x32'
190     else:
191         boost_lib_suffix = ''
192
193     bld(source='libsub%s.pc.in' % bld.env.API_VERSION,
194         version=VERSION,
195         includedir='%s/include/libsub%s' % (bld.env.PREFIX, bld.env.API_VERSION),
196         libs="-L${libdir} -lsub%s -lboost_system%s" % (bld.env.API_VERSION, boost_lib_suffix),
197         install_path='${LIBDIR}/pkgconfig')
198
199     bld.recurse('src')
200     if not bld.env.DISABLE_TESTS:
201         bld.recurse('test')
202     bld.recurse('tools')
203
204     bld.add_post_fun(post)
205
206 def dist(ctx):
207     ctx.excl = 'TODO core *~ .git build .waf* .lock* doc/*~ src/*~ test/ref/*~ __pycache__ GPATH GRTAGS GSYMS GTAGS'
208
209 def create_version_cc(bld, version):
210     if os.path.exists('.git'):
211         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
212         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
213         o = output[0].decode('utf-8')
214         commit = o.replace ("commit ", "")[0:10]
215     else:
216         commit = "release"
217
218     try:
219         text =  '#include "version.h"\n'
220         text += 'char const * sub::git_commit = \"%s\";\n' % commit
221         text += 'char const * sub::version = \"%s\";\n' % version
222         if bld.env.ENABLE_DEBUG:
223             debug_string = 'true'
224         else:
225             debug_string = 'false'
226         text += 'bool const built_with_debug = %s;\n' % debug_string
227         print('Writing version information to src/version.cc')
228         o = open('src/version.cc', 'w')
229         o.write(text)
230         o.close()
231     except IOError:
232         print('Could not open src/version.cc for writing\n')
233         sys.exit(-1)
234
235 def post(ctx):
236     if ctx.cmd == 'install':
237         ctx.exec_command('/sbin/ldconfig')
238
239 def tags(bld):
240     os.system('etags src/*.cc src/*.h')