~ubuntu-branches/ubuntu/wily/freerdp/wily-proposed

« back to all changes in this revision

Viewing changes to channels/drdynvc/audin/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Jeremy Bicha, Jean-Louis Dupond, Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120131100214-jaok3uwvni7sqxth
Tags: 1.0.0-0git1
Upload current Debian packaging git to get this rolling for precise.

[ Jeremy Bicha ]
* New upstream release. Closes: #647498.
* Updated symbols and bumped soname
* debian/control:
  - Added new build dependencies
  - Bump Standards-Version to 3.9.2
* debian/source/format: Set to 3.0 (quilt)
* debian/rules: Turn on strict symbols checking
* debian/watch: Watch github

[ Jean-Louis Dupond ]
* debian/control: Updated homepage
* debian/copyright: Reflect upstream switch to the Apache license

[ Martin Pitt ]
* debian/libfreerdp0.symbols: Fix version number, should
  be 1.0~beta5, not 1.0-beta5.
* debian/control: Add libavcodec-dev build dependency, upstream build system
  checks for that. Thanks Jean-Louis Dupond!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
# audin
4
 
audindir = $(PLUGIN_PATH)
5
 
 
6
 
audin_LTLIBRARIES = audin.la
7
 
 
8
 
audin_la_SOURCES = \
9
 
        audin_main.c audin_main.h
10
 
 
11
 
audin_la_CFLAGS = -I$(top_srcdir)/include -I$(srcdir)/../../common \
12
 
        -I$(srcdir)/.. -DPLUGIN_PATH=\"$(PLUGIN_PATH)\"
13
 
 
14
 
audin_la_LDFLAGS = -avoid-version -module
15
 
 
16
 
audin_la_LIBADD = ../../common/libcommon.la
17
 
 
18
 
if RDPSND_ALSA
19
 
audin_la_SOURCES += audin_alsa.c
20
 
audin_la_CFLAGS += @ALSA_CFLAGS@
21
 
audin_la_LIBADD += @ALSA_LIBS@
22
 
endif
23
 
 
24
 
# extra
25
 
EXTRA_DIST =
26
 
 
27
 
DISTCLEANFILES = 
28