~ubuntu-branches/ubuntu/saucy/libavg/saucy-proposed

« back to all changes in this revision

Viewing changes to .pc/link-boost-system.patch/src/video/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-08-27 16:49:57 UTC
  • Revision ID: package-import@ubuntu.com-20130827164957-wi3xsg4calkbletv
Tags: 1.7.1-3ubuntu1
Link against boost-system for boost1.50+

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
INCLUDES = -I.. @PTHREAD_CFLAGS@ @FFMPEG_CFLAGS@
 
3
        
 
4
if APPLE
 
5
    X_LIBS = 
 
6
else
 
7
    X_LIBS = -lX11
 
8
endif
 
9
 
 
10
ALL_H = FFMpegDemuxer.h VideoDemuxerThread.h FFMpegDecoder.h VideoDecoder.h \
 
11
        VideoDecoderThread.h AudioDecoderThread.h VideoMsg.h \
 
12
        PacketVideoMsg.h AsyncVideoDecoder.h VideoDecoderThread.h \
 
13
        IDemuxer.h AsyncDemuxer.h VideoInfo.h WrapFFMpeg.h
 
14
 
 
15
if USE_VDPAU_SRC
 
16
        ALL_H += VDPAU.h AVCCOpaque.h FrameAge.h
 
17
endif
 
18
 
 
19
TESTS=testvideo
 
20
 
 
21
EXTRA_DIST = $(wildcard testfiles/*.mov) $(wildcard testfiles/*.mpg) \
 
22
        $(wildcard testfiles/*.avi) $(wildcard testfiles/*.h264) \
 
23
        $(wildcard testfiles/*.wav) $(wildcard testfiles/*.ogg) \
 
24
        $(wildcard testfiles/*.mp3) $(wildcard testfiles/*.aif) \
 
25
        $(wildcard testfiles/*.flv) $(wildcard baseline/*.png)
 
26
 
 
27
noinst_LTLIBRARIES = libvideo.la
 
28
noinst_PROGRAMS=testvideo
 
29
 
 
30
libvideo_la_SOURCES = FFMpegDemuxer.cpp VideoDemuxerThread.cpp FFMpegDecoder.cpp \
 
31
        VideoDecoderThread.cpp AudioDecoderThread.cpp VideoMsg.cpp VideoDecoder.cpp \
 
32
        PacketVideoMsg.cpp AsyncVideoDecoder.cpp AsyncDemuxer.cpp VideoInfo.cpp \
 
33
        $(ALL_H)
 
34
 
 
35
if USE_VDPAU_SRC
 
36
        libvideo_la_SOURCES += AVCCOpaque.cpp FrameAge.cpp VDPAU.cpp
 
37
endif
 
38
 
 
39
libvideo_la_LIBADD = @LIBVIDEO_LDADD@
 
40
 
 
41
testvideo_SOURCES = testvideo.cpp $(ALL_H)
 
42
testvideo_LDADD = ./libvideo.la ../audio/libaudio.la ../graphics/libgraphics.la \
 
43
        ../base/libbase.la \
 
44
        @XML2_LIBS@  -l@BOOST_THREAD_LIB@ @PTHREAD_LIBS@ \
 
45
        @LIBFFMPEG@ $(X_LIBS) \
 
46
        @GDK_PIXBUF_LIBS@
 
47