diff options
author | Saturneric <[email protected]> | 2022-05-07 21:26:38 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-07 21:27:32 +0000 |
commit | 9030c08ca5f1a084d26eac7b7b2bda47e34128f9 (patch) | |
tree | c69acfc690d7b01fa43941e0ad292fc600da45d5 | |
parent | fix: solve some issues (diff) | |
download | GpgFrontend-9030c08ca5f1a084d26eac7b7b2bda47e34128f9.tar.gz GpgFrontend-9030c08ca5f1a084d26eac7b7b2bda47e34128f9.zip |
fix: add GpgFrontendCoreExport.h into .gitignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | src/core/GpgFrontendCoreExport.h | 42 |
2 files changed, 1 insertions, 42 deletions
@@ -2,6 +2,7 @@ src/GpgFrontend.h src/GpgFrontendBuildInfo.h src/GpgFrontendBuildInstallInfo.h +src/core/GpgFrontendCoreExport.h docs/ # gettext diff --git a/src/core/GpgFrontendCoreExport.h b/src/core/GpgFrontendCoreExport.h deleted file mode 100644 index 1422bddb..00000000 --- a/src/core/GpgFrontendCoreExport.h +++ /dev/null @@ -1,42 +0,0 @@ - -#ifndef GPGFRONTEND_CORE_EXPORT_H -#define GPGFRONTEND_CORE_EXPORT_H - -#ifdef GPGFRONTEND_CORE_STATIC_DEFINE -# define GPGFRONTEND_CORE_EXPORT -# define GPGFRONTEND_CORE_NO_EXPORT -#else -# ifndef GPGFRONTEND_CORE_EXPORT -# ifdef gpgfrontend_core_EXPORTS - /* We are building this library */ -# define GPGFRONTEND_CORE_EXPORT __attribute__((visibility("default"))) -# else - /* We are using this library */ -# define GPGFRONTEND_CORE_EXPORT __attribute__((visibility("default"))) -# endif -# endif - -# ifndef GPGFRONTEND_CORE_NO_EXPORT -# define GPGFRONTEND_CORE_NO_EXPORT __attribute__((visibility("hidden"))) -# endif -#endif - -#ifndef GPGFRONTEND_CORE_DEPRECATED -# define GPGFRONTEND_CORE_DEPRECATED __attribute__ ((__deprecated__)) -#endif - -#ifndef GPGFRONTEND_CORE_DEPRECATED_EXPORT -# define GPGFRONTEND_CORE_DEPRECATED_EXPORT GPGFRONTEND_CORE_EXPORT GPGFRONTEND_CORE_DEPRECATED -#endif - -#ifndef GPGFRONTEND_CORE_DEPRECATED_NO_EXPORT -# define GPGFRONTEND_CORE_DEPRECATED_NO_EXPORT GPGFRONTEND_CORE_NO_EXPORT GPGFRONTEND_CORE_DEPRECATED -#endif - -#if 0 /* DEFINE_NO_DEPRECATED */ -# ifndef GPGFRONTEND_CORE_NO_DEPRECATED -# define GPGFRONTEND_CORE_NO_DEPRECATED -# endif -#endif - -#endif /* GPGFRONTEND_CORE_EXPORT_H */ |