~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to libs/srtp/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-09-17 21:56:14 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917215614-tj0vx8xzd57e52t8
Tags: 0.9.2-1ubuntu1
* New Upstream Release, exception granted by
    - dktrkranz, norsetto, Hobbsee (via irc). LP: #270404

Changes done in ubuntu:

* add libxul-dev to build-depends
* make sure that vlc is build against libxul in configure. This doesn't
  change anything in the package, but makes it more robust if building
  in an 'unclean' chroot or when modifying the package.
* debian/control: make Vcs-* fields point to the motumedia branch
* add libx264-dev and libass-dev to build-depends
  LP: #210354, #199870
* actually enable libass support by passing --enable-libass to configure
* enable libdca: add libdca-dev to build depends and --enable-libdca
* install the x264 plugin.

Changes already in the pkg-multimedia branch in debian:

* don't install usr/share/vlc/mozilla in debian/mozilla-plugin-vlc.install  
* new upstream .desktop file now registers flash video mimetype LP: #261567
* add Xb-Npp-Applications to mozilla-plugin-vlc
* remove duplicate entries in debian/vlc-nox.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Secure RTP with libgcrypt
 
2
# Copyright (C) 2007  Rémi Denis-Courmont <rdenis # simphalempin , com>
 
3
#
 
4
# This library is free software; you can redistribute it and/or
 
5
# modify it under the terms of the GNU Lesser General Public
 
6
# License as published by the Free Software Foundation; either
 
7
# version 2.1 of the License, or (at your option) any later version.
 
8
#
 
9
# This library is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
# Lesser General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Lesser General Public
 
15
# License along with this library; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
AM_CPPFLAGS = @LIBGCRYPT_CFLAGS@
 
19
 
 
20
noinst_HEADERS = srtp.h
 
21
 
 
22
EXTRA_PROGRAMS = srtp
 
23
noinst_LTLIBRARIES = libvlc_srtp.la
 
24
check_PROGRAMS = test-aes test-recv
 
25
TESTS = $(check_PROGRAMS)
 
26
 
 
27
libvlc_srtp_la_SOURCES = srtp.c
 
28
libvlc_srtp_la_LIBADD = @LIBGCRYPT_LIBS@
 
29
 
 
30
srtp_SOURCES = recv.c
 
31
srtp_LDADD = libvlc_srtp.la
 
32
test_recv_LDADD = libvlc_srtp.la
 
33
test_aes_LDADD = @LIBGCRYPT_LIBS@
 
34
 
 
35
if !HAVE_WIN32
 
36
libvlc_srtp_la_LIBADD += -lpthread
 
37
test_aes_LDADD += -lpthread
 
38
endif
 
39
 
 
40
lcov-run:
 
41
        rm -Rf *.gcda lcov
 
42
        $(MAKE) $(AM_MAKEFLAGS) check
 
43
 
 
44
lcov-pre.out:
 
45
        lcov -c -d . -o lcov.tmp
 
46
 
 
47
lcov.out: lcov-pre.out
 
48
        lcov -r lcov.tmp '*test*' > lcov.out
 
49
 
 
50
lcov: lcov.out
 
51
        genhtml lcov.out -o lcov
 
52
 
 
53
.PHONY: lcov-run