~ubuntu-branches/ubuntu/trusty/vdr-plugin-xineliboutput/trusty-proposed

« back to all changes in this revision

Viewing changes to xine/BluRay/Makefile

  • Committer: Package Import Robot
  • Author(s): Tobias Grimm
  • Date: 2012-01-29 01:51:20 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20120129015120-4444i6d8eb6awkcz
Tags: 1.0.7+cvs20120130.2334-1
* New Upstream Snapshot (Closes: #657063, #656732)
* Build-depend on vdr-dev (>= 1.7.23)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# select plugins
3
3
#
4
4
 
5
 
ENABLE_DEMUX_PLUGIN ?= yes
 
5
ifeq ($(shell pkg-config libxine --atleast-version=1.1.21 || echo "yes"), yes)
 
6
    ENABLE_DEMUX_PLUGIN ?= yes
 
7
else
 
8
    ENABLE_DEMUX_PLUGIN ?= no
 
9
    $(warning demux plugin is included in xine-lib 1.1.21+)
 
10
endif
6
11
 
7
12
ifeq ($(shell pkg-config libbluray && echo yes), yes)
8
 
    ENABLE_INPUT_PLUGIN ?= yes
9
 
    CFLAGS_BD ?= $(shell pkg-config libbluray --cflags)
10
 
    LIBS_BD   ?= $(shell pkg-config libbluray --libs)
 
13
    ifeq ($(shell pkg-config libxine --atleast-version=1.1.21 || echo "yes"), yes)
 
14
        ENABLE_INPUT_PLUGIN ?= yes
 
15
        CFLAGS_BD ?= $(shell pkg-config libbluray --cflags)
 
16
        LIBS_BD   ?= $(shell pkg-config libbluray --libs)
 
17
    else
 
18
        ENABLE_DEMUX_PLUGIN ?= no
 
19
        $(warning input plugin is included in xine-lib 1.1.21+)
 
20
    endif
11
21
else
12
22
    ENABLE_INPUT_PLUGIN ?= no
13
23
    $(warning libbluray not found)