jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1002B

  1. #!/usr/bin/python3
  2. # encoding: utf-8
  3. #
  4. # Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com>
  5. #
  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.
  9. #
  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.
  14. #
  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.
  18. #
  19. from waflib import Errors
  20. def options(opt):
  21. pass
  22. def configure(conf):
  23. try:
  24. conf.check(header_name='alloca.h')
  25. except Errors.ConfigurationError:
  26. conf.env.append_unique('INCLUDES', conf.path.abspath())
  27. def build(bld):
  28. pass