External, Non-PPA KXStudio Repository
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.

22 lines
630B

  1. diff --git a/include/lilv/lilv.h b/include/lilv/lilv.h
  2. index 5fd7a9f..368df82 100644
  3. --- a/include/lilv/lilv.h
  4. +++ b/include/lilv/lilv.h
  5. @@ -27,15 +27,7 @@
  6. #include <stdint.h>
  7. #include <stdio.h>
  8. -#if defined(_WIN32) && !defined(LILV_STATIC) && defined(LILV_INTERNAL)
  9. -# define LILV_API __declspec(dllexport)
  10. -#elif defined(_WIN32) && !defined(LILV_STATIC)
  11. -# define LILV_API __declspec(dllimport)
  12. -#elif defined(__GNUC__)
  13. -# define LILV_API __attribute__((visibility("default")))
  14. -#else
  15. -# define LILV_API
  16. -#endif
  17. +#define LILV_API
  18. #if defined(__GNUC__) && \
  19. (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))