Skip to content

Commit 176f68f

Browse files
author
jcf
committed
librcc: Warn version requirement rising to 0.2.10.
git-svn-id: svn://svn.daper.net/moc/trunk@2963 910807d9-36e0-0310-a014-e9ea483e2ba4
1 parent 469b3a1 commit 176f68f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

TODO

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,14 @@ Transitional Code Removal:
7272

7373
* Remove TagLib version 1.5 requirement warning.
7474
* Remove Musepack libmpc (instead of libmpcdec) requirement warning.
75+
* Remove librcc raised requirement warning.
7576

7677

7778
Pending 2.6 Changes:
7879

7980
* Require at least TagLib version 1.5.
8081
* Require Musepack libmpc (instead of libmpcdec).
82+
* Require at least librcc version 0.2.10.
8183

8284

8385
Pending 2.7 Changes:

configure.in

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,10 @@ AC_CHECK_HEADERS([librcc.h],
389389
AC_SUBST([RCC_LIBS])
390390
COMPILE_RCC=yes])
391391
])
392+
if ! $PKG_CONFIG --atleast-version 0.2.10 librcc
393+
then
394+
UPGRADE_LIBRCC="yes"
395+
fi
392396
fi
393397

394398
dnl curl
@@ -485,6 +489,13 @@ then
485489
echo
486490
fi
487491

492+
if test "x$UPGRADE_LIBRCC" = "xyes"
493+
then
494+
echo "WARNING: MOC will soon require librcc version 0.2.10 or later;"
495+
echo " plan to upgrade your RCC library soon."
496+
echo
497+
fi
498+
488499
if test "x$UPGRADE_LIBCURL" = "xyes"
489500
then
490501
echo "WARNING: MOC will soon require libcurl version 7.15.4 or later;"

0 commit comments

Comments
 (0)