diff options
author | Ray-V <ray-v@inbox.lv> | 2023-10-23 11:36:24 +0100 |
---|---|---|
committer | Ray-V <ray-v@inbox.lv> | 2023-10-23 11:36:24 +0100 |
commit | 80a742849d872788877a90b91becb696b170d73c (patch) | |
tree | 472ccf98cf36ecf524affee6471389161087d74f | |
parent | 9eb3dfbe43eb57993befe98533f2e686a30da2f9 (diff) | |
download | admin-80a742849d872788877a90b91becb696b170d73c.tar.gz admin-80a742849d872788877a90b91becb696b170d73c.zip |
Fix visibility support check
Signed-off-by: Ray-V <ray-v@inbox.lv>
-rw-r--r-- | acinclude.m4.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4.in b/acinclude.m4.in index 73434e5..6a34780 100644 --- a/acinclude.m4.in +++ b/acinclude.m4.in @@ -3369,9 +3369,9 @@ if $PKG_CONFIG --exists tqt-mt ; then AC_TRY_COMPILE( [ #include <tqglobal.h> -#if Q_EXPORT - 0 != 0 -/* if this compiles, then Q_EXPORT is undefined */ -/* if Q_EXPORT is nonempty, this will break compilation */ +#if TQ_EXPORT - 0 != 0 +/* if this compiles, then TQ_EXPORT is undefined */ +/* if TQ_EXPORT is nonempty, this will break compilation */ #endif ], [/* Elvis is not dead, he just went home! (Men In Black, 1997) */], kde_cv_val_tqt_gcc_visibility_patched=no, kde_cv_val_tqt_gcc_visibility_patched=yes) |