diff options
author | Ray-V <[email protected]> | 2023-10-23 11:36:24 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-10-30 11:37:46 +0100 |
commit | 02e3ce6281bd1fd1bed8da7ef6d0a2dc2acc90f0 (patch) | |
tree | 472ccf98cf36ecf524affee6471389161087d74f | |
parent | 91592413f01f6daeb739ff63a9c2891702485e51 (diff) | |
download | admin-02e3ce6281bd1fd1bed8da7ef6d0a2dc2acc90f0.tar.gz admin-02e3ce6281bd1fd1bed8da7ef6d0a2dc2acc90f0.zip |
Fix visibility support check
Signed-off-by: Ray-V <[email protected]>
(cherry picked from commit 80a742849d872788877a90b91becb696b170d73c)
-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) |