summaryrefslogtreecommitdiffstats
path: root/configure.in.in
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-21 01:43:11 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-21 01:43:11 +0000
commitace145bd99b2d41deef8a0ecc825a1dab12e742b (patch)
treea27a0caf021d25b8e62f07f803269e00346f3a69 /configure.in.in
parentcdbd0571baaf836a247dd997a6c4ca3755506297 (diff)
downloadkmplayer-ace145bd.tar.gz
kmplayer-ace145bd.zip
Convert remaining references to kde3 (e.g. in paths) to trinity
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in.in')
-rw-r--r--configure.in.in22
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")