diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-09-26 01:14:31 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-09-26 01:14:31 +0200 |
commit | 9ed7679113e81d7ae29200c20f1e5049af238e6a (patch) | |
tree | 9faa1b0646cf213481184f42a602a0964dd0bee7 /acinclude.m4 | |
parent | 77f781eecdd48fedea35d147c192afac805c6a5f (diff) | |
download | ksystemlog-9ed7679113e81d7ae29200c20f1e5049af238e6a.tar.gz ksystemlog-9ed7679113e81d7ae29200c20f1e5049af238e6a.zip |
QT_INCLUDES => TQT_INCLUDES conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 21ce9cf..7c3b9dc 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1262,7 +1262,7 @@ fi dnl ------------------------------------------------------------------------ dnl Try to find the Qt headers and libraries. dnl $(QT_LDFLAGS) will be -Lqtliblocation (if needed) -dnl and $(QT_INCLUDES) will be -Iqthdrlocation (if needed) +dnl and $(TQT_INCLUDES) will be -Iqthdrlocation (if needed) dnl ------------------------------------------------------------------------ dnl AC_DEFUN([AC_PATH_TQT_1_3], @@ -1532,10 +1532,10 @@ AC_SUBST(qt_libraries) AC_SUBST(qt_includes) if test "$qt_includes" = "$x_includes" || test -z "$qt_includes"; then - QT_INCLUDES="" + TQT_INCLUDES="" else - QT_INCLUDES="-I$qt_includes" - all_includes="$QT_INCLUDES $all_includes" + TQT_INCLUDES="-I$qt_includes" + all_includes="$TQT_INCLUDES $all_includes" fi if test "$qt_libraries" = "$x_libraries" || test -z "$qt_libraries"; then @@ -1546,7 +1546,7 @@ else fi test -z "$KDE_MT_LDFLAGS" || all_libraries="$all_libraries $KDE_MT_LDFLAGS" -AC_SUBST(QT_INCLUDES) +AC_SUBST(TQT_INCLUDES) AC_SUBST(QT_LDFLAGS) AC_PATH_TQT_MOC_UIC |