diff options
author | Michele Calgaro <[email protected]> | 2024-10-11 22:45:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-11 22:45:55 +0900 |
commit | e9976e36f6fd5f3f646442b2ef9d29ef42e7a0a6 (patch) | |
tree | b561c512cdfe283efc44d4ea3516fa894c85c04f | |
parent | e45962e5cb7db8ad4566669fa6a2125b166f8b0a (diff) | |
download | admin-e9976e36f6fd5f3f646442b2ef9d29ef42e7a0a6.tar.gz admin-e9976e36f6fd5f3f646442b2ef9d29ef42e7a0a6.zip |
Use tquic directly instead of uic
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | acinclude.m4.in | 6 | ||||
-rw-r--r-- | am_edit | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/acinclude.m4.in b/acinclude.m4.in index 1271be4..41da757 100644 --- a/acinclude.m4.in +++ b/acinclude.m4.in @@ -270,7 +270,7 @@ AC_DEFUN([KDE_UIC_ERROR_MESSAGE], [ AC_MSG_WARN([No TQt ui compiler (tquic) found! Please check whether you installed TQt correctly. -You need to have a running uic binary. +You need to have a running tquic binary. configure tried to run $ac_cv_path_uic and the test didn't succeed. If configure shouldn't have tried this one, set the environment variable UIC to the right one before running @@ -281,7 +281,7 @@ configure. AC_DEFUN([KDE_CHECK_UIC_FLAG], [ - AC_MSG_CHECKING([whether uic supports -$1 ]) + AC_MSG_CHECKING([whether tquic supports -$1 ]) kde_cache=`echo $1 | sed 'y% .=/+-%____p_%'` AC_CACHE_VAL(kde_cv_prog_uic_$kde_cache, [ @@ -354,7 +354,7 @@ AC_DEFUN([AC_PATH_TQT_MOC_UIC], fi fi else - UIC="echo uic not available: " + UIC="echo tquic not available: " fi AC_SUBST(MOC) @@ -229,7 +229,7 @@ sub processMakefile ($) local $allidls = ""; local $idl_output = "";# lists all idl generated files for cleantarget - local $ui_output = "";# lists all uic generated files for cleantarget + local $ui_output = "";# lists all tquic generated files for cleantarget local $kcfg_output = "";# lists all kcfg generated files for cleantarget local %dependmocs = (); |