diff options
author | Timothy Pearson <[email protected]> | 2012-02-14 21:12:23 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-14 21:12:23 -0600 |
commit | 081a7ad27b46aa43ae2947c484c83c1eade483fd (patch) | |
tree | 692addb9c7004c71c724388132f290914da97db8 | |
parent | 373bb34d1e1bab6835cdd8af4c51b0bc00e7bbe1 (diff) | |
download | tellico-081a7ad27b46aa43ae2947c484c83c1eade483fd.tar.gz tellico-081a7ad27b46aa43ae2947c484c83c1eade483fd.zip |
Update various qt function definitions and static methods for tqt3
-rw-r--r-- | acinclude.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 664be12..7bb61f7 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1108,7 +1108,7 @@ EOF if test $kde_qtsubver -gt 0; then cat >> conftest.$ac_ext <<EOF -#if QT_VERSION < 210 +#if TQT_VERSION < 210 #error 1 #endif EOF @@ -1205,22 +1205,22 @@ fi if test -z "$3"; then if test $kde_qtver = 3; then if test $kde_qtsubver -gt 0; then - kde_qt_verstring="QT_VERSION >= 0x03@VER@00 && QT_VERSION < 0x040000" + kde_qt_verstring="TQT_VERSION >= 0x03@VER@00 && TQT_VERSION < 0x040000" qtsubver=`echo "00$kde_qtsubver" | sed -e 's,.*\(..\)$,\1,'` kde_qt_verstring=`echo $kde_qt_verstring | sed -e "s,@VER@,$qtsubver,"` else - kde_qt_verstring="QT_VERSION >= 300 && QT_VERSION < 0x040000" + kde_qt_verstring="TQT_VERSION >= 300 && TQT_VERSION < 0x040000" fi fi if test $kde_qtver = 2; then if test $kde_qtsubver -gt 0; then - kde_qt_verstring="QT_VERSION >= 222" + kde_qt_verstring="TQT_VERSION >= 222" else - kde_qt_verstring="QT_VERSION >= 200" + kde_qt_verstring="TQT_VERSION >= 200" fi fi if test $kde_qtver = 1; then - kde_qt_verstring="QT_VERSION >= 142 && QT_VERSION < 200" + kde_qt_verstring="TQT_VERSION >= 142 && TQT_VERSION < 200" fi else kde_qt_verstring="$3" |