2019-05-25 20:59:55 +00:00
|
|
|
#ifndef LIBPKGCONF_LIBPKGCONF_API_H
|
|
|
|
#define LIBPKGCONF_LIBPKGCONF_API_H
|
2017-06-05 21:00:02 +00:00
|
|
|
|
|
|
|
/* Makefile.am specifies visibility using the libtool option -export-symbols-regex '^pkgconf_'
|
|
|
|
* Unfortunately, that is not available when building with cmake, so use attributes instead,
|
|
|
|
* in a way that doesn't depend on any cmake magic.
|
|
|
|
*/
|
|
|
|
#if defined(PKGCONFIG_IS_STATIC)
|
|
|
|
# define PKGCONF_API
|
|
|
|
#elif defined(_WIN32) || defined(_WIN64)
|
2017-09-23 05:00:43 +00:00
|
|
|
# if defined(LIBPKGCONF_EXPORT) || defined(DLL_EXPORT)
|
2017-06-05 21:00:02 +00:00
|
|
|
# define PKGCONF_API __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define PKGCONF_API __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define PKGCONF_API __attribute__((visibility("default")))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|