diff options
author | phintuka <phintuka> | 2010-09-20 12:21:36 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-09-20 12:21:36 +0000 |
commit | c1d3fdf80461e2a01e9a156c317f060139ba2c60 (patch) | |
tree | 8a1effb715a35a6d43cc57b9104341d4a28cc214 | |
parent | fb8857069817b5f1b1d791e97561d3593741ec60 (diff) | |
download | xineliboutput-c1d3fdf80461e2a01e9a156c317f060139ba2c60.tar.gz xineliboutput-c1d3fdf80461e2a01e9a156c317f060139ba2c60.tar.bz2 |
Changed PCM and SPU plugins xine-lib version checks to use real release numbers
-rw-r--r-- | xine/BluRay/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xine/BluRay/Makefile b/xine/BluRay/Makefile index e3fb4bb8..008b6985 100644 --- a/xine/BluRay/Makefile +++ b/xine/BluRay/Makefile @@ -18,18 +18,18 @@ else $(warning libbluray not found) endif -ifeq ($(shell pkg-config libxine --atleast-version=1.1.18.2 || echo "yes"), yes) +ifeq ($(shell pkg-config libxine --atleast-version=1.1.19 || echo "yes"), yes) ENABLE_SPU_PLUGIN ?= yes else ENABLE_SPU_PLUGIN ?= no - $(warning SPU plugin is included in xine-lib 1.1.17+) + $(warning SPU plugin is included in xine-lib 1.1.19+) endif -ifeq ($(shell pkg-config libxine --atleast-version=1.1.17.1 || echo "yes"), yes) +ifeq ($(shell pkg-config libxine --atleast-version=1.1.18 || echo "yes"), yes) ENABLE_PCM_PLUGIN ?= yes else ENABLE_PCM_PLUGIN ?= no - $(warning PCM plugin is included in xine-lib 1.1.17.1+) + $(warning PCM plugin is included in xine-lib 1.1.18+) endif # |