diff options
author | David Robillard <d@drobilla.net> | 2015-07-25 15:11:10 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-07-25 15:11:10 +0000 |
commit | ef7f18e35a08b8a7a24cbef71a1b7bf4325ac2c4 (patch) | |
tree | f13df2a5891313686fcdd000a5f87d11d8c26519 | |
parent | fb5ec6b6db15e9718956ee96c637226400aa95a1 (diff) | |
download | blop.lv2-ef7f18e35a08b8a7a24cbef71a1b7bf4325ac2c4.tar.gz blop.lv2-ef7f18e35a08b8a7a24cbef71a1b7bf4325ac2c4.tar.bz2 blop.lv2-ef7f18e35a08b8a7a24cbef71a1b7bf4325ac2c4.zip |
Fix compilation with default hidden visibility.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blop.lv2@5696 a436a847-0d15-0410-975c-d299462d15a1
-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) |