summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-19 11:50:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-19 11:50:24 +0900
commit35b683a741ce46cb59ef380b2e3fffd567bec5ec (patch)
tree8e921bfe2b8a421853216bfb9553b093d44c4d4c
parent014348eb159b833fa05f7f53a33b9028124c0f75 (diff)
downloadtde-ebook-reader-35b683a741ce46cb59ef380b2e3fffd567bec5ec.tar.gz
tde-ebook-reader-35b683a741ce46cb59ef380b2e3fffd567bec5ec.zip
Use __TDE_HAVE_GCC_VISIBILITY
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--config.h.cmake2
-rw-r--r--zlibrary/core/include/core_export.h.cmake4
-rw-r--r--zlibrary/text/include/text_export.h.cmake4
3 files changed, 5 insertions, 5 deletions
diff --git a/config.h.cmake b/config.h.cmake
index 2fce79f..1a76fff 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -1,7 +1,7 @@
#define VERSION "@PACKAGE_VERSION@"
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
-#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
// Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
// significant byte first (like Motorola and SPARC, unlike Intel).
diff --git a/zlibrary/core/include/core_export.h.cmake b/zlibrary/core/include/core_export.h.cmake
index 95b1efb..2606b50 100644
--- a/zlibrary/core/include/core_export.h.cmake
+++ b/zlibrary/core/include/core_export.h.cmake
@@ -2,9 +2,9 @@
#define _CORE_EXPORT_H_
// Set by configure
-#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
-#ifdef __KDE_HAVE_GCC_VISIBILITY
+#ifdef __TDE_HAVE_GCC_VISIBILITY
#define ZLCORE_EXPORT __attribute__ ((visibility("default")))
#else
#define ZLCORE_EXPORT
diff --git a/zlibrary/text/include/text_export.h.cmake b/zlibrary/text/include/text_export.h.cmake
index fdca8ee..4363dd7 100644
--- a/zlibrary/text/include/text_export.h.cmake
+++ b/zlibrary/text/include/text_export.h.cmake
@@ -2,9 +2,9 @@
#define _TEXT_EXPORT_H_
// Set by configure
-#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
-#ifdef __KDE_HAVE_GCC_VISIBILITY
+#ifdef __TDE_HAVE_GCC_VISIBILITY
#define ZLTEXT_EXPORT __attribute__ ((visibility("default")))
#else
#define ZLTEXT_EXPORT