~ubuntu-branches/ubuntu/natty/gst123/natty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy), Rogério Brito
  • Date: 2010-05-29 11:23:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100529112351-z1ffbyinvriludew
Tags: 0.1.0-1
* New upstream release.
* debian/control:
  + Added good & base plugins to Depends
  + Added ffmpeg, ugly & bad plugins to Recommends
  + Added libgtk2.0-dev, libgstreamer-plugins-base0.10-dev to Build-Deps
* debian/copyright:
  + Updated copyrights
  + Updated my email address

[ Rogério Brito ]
* Include a missing comma in the depends field

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT([gst123], [0.0.3])
2
 
AM_INIT_AUTOMAKE
 
1
AC_INIT([gst123], [0.1.0])
3
2
AC_CONFIG_SRCDIR([src/gst123.cc])
4
3
AC_CONFIG_HEADER([config.h])
 
4
AC_CONFIG_AUX_DIR([build-aux])
 
5
AM_INIT_AUTOMAKE
5
6
AC_PROG_CXX
6
7
AC_PROG_CC
7
8
 
17
18
])
18
19
 
19
20
dnl
 
21
dnl Define gstreamer interface
 
22
dnl
 
23
AC_DEFUN([AC_GSTREAMER_GTK_REQUIREMENTS],
 
24
[
 
25
    dnl We need GLib with friends
 
26
    PKG_CHECK_MODULES(GSTREAMER_GTK, gstreamer-base-0.10 gtk+-2.0 gstreamer-interfaces-0.10 gstreamer-video-0.10)
 
27
    AC_SUBST(GSTREAMER_GTK_CFLAGS)
 
28
    AC_SUBST(GSTREAMER_GTKLIBS)
 
29
])
 
30
 
 
31
dnl
20
32
dnl We need libncurses
21
33
dnl
22
34
AC_DEFUN([AC_NCURSES_REQUIREMENTS],
28
40
 
29
41
# Check requirement sets
30
42
AC_GSTREAMER_REQUIREMENTS
 
43
AC_GSTREAMER_GTK_REQUIREMENTS
31
44
AC_NCURSES_REQUIREMENTS
32
45
 
33
 
AC_CONFIG_FILES([Makefile src/Makefile])
 
46
AC_CONFIG_FILES([Makefile src/Makefile docs/Makefile])
34
47
AC_OUTPUT