diff options
author | David Robillard <d@drobilla.net> | 2021-01-02 13:23:00 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-02 14:13:19 +0100 |
commit | 2f0a55007f9dda3371b7aa42b54b4786740ac0c0 (patch) | |
tree | a7a31e5edfc4e51447a26a0aeca12c73aa4c8709 | |
parent | 4a54d784af0bec03fdc1f9889157a8c653969db9 (diff) | |
download | serd-2f0a55007f9dda3371b7aa42b54b4786740ac0c0.tar.gz serd-2f0a55007f9dda3371b7aa42b54b4786740ac0c0.tar.bz2 serd-2f0a55007f9dda3371b7aa42b54b4786740ac0c0.zip |
Use SERD_STATIC instead of SERD_SHARED to control visibility
For consistency, this seems to be the most common convention.
-rw-r--r-- | include/serd/serd.h | 6 | ||||
-rw-r--r-- | wscript | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h index 32a60f29..88cd659a 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -25,11 +25,11 @@ #include <stdint.h> #include <stdio.h> -#if defined(SERD_SHARED) && defined(SERD_INTERNAL) && defined(_WIN32) +#if defined(_WIN32) && !defined(SERD_STATIC) && defined(SERD_INTERNAL) # define SERD_API __declspec(dllexport) -#elif defined(SERD_SHARED) && defined(_WIN32) +#elif defined(_WIN32) && !defined(SERD_STATIC) # define SERD_API __declspec(dllimport) -#elif defined(SERD_SHARED) && defined(__GNUC__) +#elif defined(__GNUC__) # define SERD_API __attribute__((visibility("default"))) #else # define SERD_API @@ -206,7 +206,7 @@ def build(bld): source = lib_source, name = 'libserd', target = 'serd-%s' % SERD_MAJOR_VERSION, - defines = defines + ['SERD_SHARED', 'SERD_INTERNAL'], + defines = defines + ['SERD_INTERNAL'], **lib_args) # Static library @@ -215,7 +215,7 @@ def build(bld): source = lib_source, name = 'libserd_static', target = 'serd-%s' % SERD_MAJOR_VERSION, - defines = defines + ['SERD_INTERNAL'], + defines = defines + ['SERD_STATIC', 'SERD_INTERNAL'], **lib_args) if bld.env.BUILD_TESTS: @@ -231,7 +231,7 @@ def build(bld): source = lib_source, name = 'libserd_profiled', target = 'serd_profiled', - defines = defines + ['SERD_INTERNAL'], + defines = defines + ['SERD_STATIC', 'SERD_INTERNAL'], **test_args) # Test programs @@ -247,7 +247,7 @@ def build(bld): source = prog[1], use = 'libserd_profiled', target = prog[0], - defines = defines, + defines = defines + ['SERD_STATIC'], **test_args) # Utilities |