Add jack_position_t::tick_double, and flags around it (#770)
[jack2.git] / compat / alloca / wscript
blob9e740f1cdb07cb4baf5c19fa55cbf80da69d67a2
1 #!/usr/bin/python3
2 # encoding: utf-8
4 # Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com>
6 # This program 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.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 from waflib import Errors
22 def options(opt):
23     pass
25 def configure(conf):
26     try:
27         conf.check(header_name='alloca.h')
28     except Errors.ConfigurationError:
29         conf.env.append_unique('INCLUDES', conf.path.abspath())
31 def build(bld):
32     pass