diff options
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.in.in b/configure.in.in index 9f08c4b..49b9228 100644 --- a/configure.in.in +++ b/configure.in.in @@ -217,9 +217,9 @@ AC_COMPILE_IFELSE([ #error KDE 3.3 #endif ], - need_kde33_compat="no" + need_trinity3_compat="no" , - need_kde33_compat="yes" + need_trinity3_compat="yes" ) AC_COMPILE_IFELSE([ @@ -228,9 +228,9 @@ AC_COMPILE_IFELSE([ #error KDE 3.2 #endif ], - need_kde32_compat="no" + need_trinity2_compat="no" , - need_kde32_compat="yes" + need_trinity2_compat="yes" ) AC_COMPILE_IFELSE([ @@ -239,24 +239,24 @@ AC_COMPILE_IFELSE([ #error KDE 3.1 #endif ], - need_kde31_compat="no" + need_trinity1_compat="no" , - need_kde31_compat="yes" + need_trinity1_compat="yes" ) CXXFLAGS="$kdeversion_save_CXXFLAGS" LIBS="$kdeversion_safe_LIBS" AC_LANG_RESTORE -if test "$need_kde32_compat" = "yes"; then +if test "$need_trinity2_compat" = "yes"; then AC_MSG_RESULT([KDE 3.2.x]) fi -if test "$need_kde31_compat" = "yes"; then +if test "$need_trinity1_compat" = "yes"; then AC_MSG_RESULT([KDE 3.1.x]) fi -AM_CONDITIONAL(need_kde33_compatibility, test "$need_kde33_compat" = "yes") -AM_CONDITIONAL(need_kde32_compatibility, test "$need_kde32_compat" = "yes") -AM_CONDITIONAL(need_kde31_compatibility, test "$need_kde31_compat" = "yes") +AM_CONDITIONAL(need_trinity3_compatibility, test "$need_trinity3_compat" = "yes") +AM_CONDITIONAL(need_trinity2_compatibility, test "$need_trinity2_compat" = "yes") +AM_CONDITIONAL(need_trinity1_compatibility, test "$need_trinity1_compat" = "yes") |