diff options
author | David Robillard <d@drobilla.net> | 2016-08-01 01:16:15 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-08-01 03:43:56 -0400 |
commit | ff6d8a87f9569a42c7827428f2329280c9b633b9 (patch) | |
tree | d7ccbeaac5381e8cfd07c4ad5efd0872de65fd45 /wscript | |
parent | 7eb24a2761deb9604f1c6b813e6de69876088f9e (diff) | |
download | ingen-ff6d8a87f9569a42c7827428f2329280c9b633b9.tar.gz ingen-ff6d8a87f9569a42c7827428f2329280c9b633b9.tar.bz2 ingen-ff6d8a87f9569a42c7827428f2329280c9b633b9.zip |
Implement LV2 log extension as host
Only print color logs if output is a terminal.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -86,6 +86,12 @@ def configure(conf): define_name = 'HAVE_POSIX_MEMALIGN', mandatory = False) + conf.check(function_name = 'isatty', + header_name = 'unistd.h', + defines = '_POSIX_SOURCE=1', + define_name = 'HAVE_ISATTY', + mandatory = False) + if not Options.options.no_socket: conf.check(function_name = 'socket', header_name = 'sys/socket.h', |