diff options
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | src/wdatutil.c | 1 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 14 insertions, 1 deletions
@@ -0,0 +1,12 @@ +blop-lv2 (1.0.1) unstable; + + * Add missing properties for options interface + * Fix compilation with default hidden visibility + + -- David Robillard <d@drobilla.net> Sat, 25 Jul 2015 11:00:11 -0400 + +blop-lv2 (1.0.0) stable; + + * Initial release + + -- David Robillard <d@drobilla.net> Sun, 05 Jan 2014 12:00:00 -0500 diff --git a/src/wdatutil.c b/src/wdatutil.c index a549c26..b3bf84e 100644 --- a/src/wdatutil.c +++ b/src/wdatutil.c @@ -245,6 +245,7 @@ static void wavedata_write_prototype(FILE* wdat_fp, const char* data_name) { + fprintf(wdat_fp, "__attribute__((visibility(\"default\")))\n"); fprintf(wdat_fp, "int\n"); fprintf( wdat_fp, @@ -164,6 +164,6 @@ def build(bld): env = penv, install_path = '${LV2DIR}/blop.lv2', uselib = ['LV2']) - + def lint(ctx): subprocess.call('cpplint.py --filter=+whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-readability/todo,-build/include src/* serd/*', shell=True) |