~ubuntu-branches/ubuntu/lucid/gnome-subtitles/lucid

« back to all changes in this revision

Viewing changes to gstreamer-playbin-0.2.1/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Tiago Bortoletto Vaz
  • Date: 2007-12-03 20:52:52 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071203205252-2y6uuv4gcw9mi9n5
Tags: 0.7-1
* New upstream release;
* Add libxml-parser-perl to Build-Depends-Indep. Thanks to Lucas Nussbaum.
  (Closes: #445799);
* Fixes manpage issue with dpatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#                                               -*- Autoconf -*-
 
2
# Process this file with autoconf to produce a configure script.
 
3
 
 
4
 
 
5
AC_INIT(README)
 
6
AM_INIT_AUTOMAKE(gstreamer-playbin, 0.2.1)
 
7
AM_MAINTAINER_MODE
 
8
 
 
9
# Checks for programs.
 
10
AC_PROG_CC
 
11
AM_PROG_LIBTOOL
 
12
 
 
13
 
 
14
 
 
15
 
 
16
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
 
17
if test "x$PKG_CONFIG" = "xno"; then
 
18
        AC_MSG_ERROR([You need to install pkg-config])
 
19
fi
 
20
 
 
21
 
 
22
 
 
23
AC_PATH_PROG(CSC, csc, no)
 
24
AC_PATH_PROG(MCS, mcs, no)
 
25
 
 
26
 
 
27
CS="C#"
 
28
if test "x$CSC" = "xno" -a "x$MCS" = "xno"  ; then
 
29
        dnl AC_MSG_ERROR([You need to install a C# compiler])
 
30
        AC_MSG_ERROR([No $CS compiler found])
 
31
fi
 
32
 
 
33
if test "x$MCS" = "xno" ; then
 
34
        MCS=$CSC
 
35
fi
 
36
 
 
37
 
 
38
 
 
39
PKG_CHECK_MODULES(gstreamer, [gstreamer-0.10 >= 0.10])
 
40
 
 
41
AC_SUBST(gstreamer_CFLAGS)
 
42
AC_SUBST(gstreamer_LIBS)
 
43
 
 
44
 
 
45
 
 
46
AC_OUTPUT([
 
47
./Makefile
 
48
./src/Makefile
 
49
./src/gstreamerplaybinwrapper.pc
 
50
])