~ubuntu-branches/debian/stretch/cheese/stretch

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2010-05-04 17:37:18 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100504173718-k2rx3nryi4vd0xyx
Tags: 2.30.1-1
* New upstream release.
  - HAL dependency has been dropped. Use (g)udev for v4l capability probing
    on Linux. Closes: #573774
  - Split code into separate libraries.
* debian/control.in
  - Drop Build-Depends on libhal-dev.
  - Drop Build-Depends on libebook1.2-dev.
  - Bump Build-Depends on libgtk2.0-dev to (>= 2.19.1).
  - Bump Build-Depends on libgstreamer*-dev to (>= 0.10.23).
  - Add Build-Depends on libcanberra-gtk-dev.
  - Add Build-Depends on libxtst-dev.
  - Add Build-Depends on libgudev-1.0-dev on Linux.
  - Bump Standards-Version to 3.8.4. No further changes.
* Switch to source format 3.0 (quilt)
  - Add debian/source/format.
* debian/rules
  - Drop lpia specific configure flags, lpia is dead.
* Update package layout (based on work by Ubuntu)
  - Move data files into new cheese-common package.
  - Keep binary along with its desktop and dbus service file in the cheese
    package.
  - Add libcheese-gtk18 and libcheese-gtk-dev package for the new
    libcheese-gtk library. Use a symbols file for improved shlibs
    dependencies.
  - Add Conflicts/Replaces to cheese-common to ensure proper upgrades from
    previous versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.11 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
2
2
 
3
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
4
# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
13
13
 
14
14
m4_ifndef([AC_AUTOCONF_VERSION],
15
15
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16
 
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],,
17
 
[m4_warning([this file was generated for autoconf 2.64.
 
16
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
 
17
[m4_warning([this file was generated for autoconf 2.65.
18
18
You have another version of autoconf.  It may work, but is not guaranteed to.
19
19
If you have problems, you may need to regenerate the build system entirely.
20
20
To do so, use the procedure documented by the package, typically `autoreconf'.])])
747
747
GNOME_DOC_DEFINES
748
748
])
749
749
 
 
750
dnl -*- mode: autoconf -*-
 
751
 
 
752
# serial 1
 
753
 
 
754
dnl Usage:
 
755
dnl   GTK_DOC_CHECK([minimum-gtk-doc-version])
 
756
AC_DEFUN([GTK_DOC_CHECK],
 
757
[
 
758
  AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
 
759
  AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
 
760
 
 
761
  dnl check for tools we added during development
 
762
  AC_PATH_PROG([GTKDOC_CHECK],[gtkdoc-check])
 
763
  AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true])
 
764
  AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf])
 
765
 
 
766
  dnl for overriding the documentation installation directory
 
767
  AC_ARG_WITH([html-dir],
 
768
    AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
 
769
    [with_html_dir='${datadir}/gtk-doc/html'])
 
770
  HTML_DIR="$with_html_dir"
 
771
  AC_SUBST([HTML_DIR])
 
772
 
 
773
  dnl enable/disable documentation building
 
774
  AC_ARG_ENABLE([gtk-doc],
 
775
    AS_HELP_STRING([--enable-gtk-doc],
 
776
                   [use gtk-doc to build documentation [[default=no]]]),,
 
777
    [enable_gtk_doc=no])
 
778
 
 
779
  if test x$enable_gtk_doc = xyes; then
 
780
    ifelse([$1],[],
 
781
      [PKG_CHECK_EXISTS([gtk-doc],,
 
782
                        AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))],
 
783
      [PKG_CHECK_EXISTS([gtk-doc >= $1],,
 
784
                        AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build $PACKAGE_NAME]))])
 
785
  fi
 
786
 
 
787
  AC_MSG_CHECKING([whether to build gtk-doc documentation])
 
788
  AC_MSG_RESULT($enable_gtk_doc)
 
789
 
 
790
  dnl enable/disable output formats
 
791
  AC_ARG_ENABLE([gtk-doc-html],
 
792
    AS_HELP_STRING([--enable-gtk-doc-html],
 
793
                   [build documentation in html format [[default=yes]]]),,
 
794
    [enable_gtk_doc_html=yes])
 
795
    AC_ARG_ENABLE([gtk-doc-pdf],
 
796
      AS_HELP_STRING([--enable-gtk-doc-pdf],
 
797
                     [build documentation in pdf format [[default=no]]]),,
 
798
      [enable_gtk_doc_pdf=no])
 
799
 
 
800
  if test -z "$GTKDOC_MKPDF"; then
 
801
    enable_gtk_doc_pdf=no
 
802
  fi
 
803
 
 
804
 
 
805
  AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
 
806
  AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes])
 
807
  AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes])
 
808
  AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
 
809
  AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"])
 
810
])
 
811
 
750
812
 
751
813
dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
752
814
# serial 40 IT_PROG_INTLTOOL
898
960
AC_DEFUN([IT_PO_SUBDIR],
899
961
[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
900
962
dnl
901
 
dnl The following CONFIG_COMMANDS should be exetuted at the very end
 
963
dnl The following CONFIG_COMMANDS should be executed at the very end
902
964
dnl of config.status.
903
965
AC_CONFIG_COMMANDS_PRE([
904
966
  AC_CONFIG_COMMANDS([$1/stamp-it], [
3407
3469
  # before this can be enabled.
3408
3470
  hardcode_into_libs=yes
3409
3471
 
 
3472
  # Add ABI-specific directories to the system library path.
 
3473
  sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib"
 
3474
 
3410
3475
  # Append ld.so.conf contents to the search path
3411
3476
  if test -f /etc/ld.so.conf; then
3412
3477
    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[   ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
3413
 
    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
3478
    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
3414
3479
  fi
3415
3480
 
3416
3481
  # We used to test for /lib/ld.so.1 and disable shared libraries on
8781
8846
 
8782
8847
# Generated from ltversion.in.
8783
8848
 
8784
 
# serial 3012 ltversion.m4
 
8849
# serial 3017 ltversion.m4
8785
8850
# This file is part of GNU Libtool
8786
8851
 
8787
 
m4_define([LT_PACKAGE_VERSION], [2.2.6])
8788
 
m4_define([LT_PACKAGE_REVISION], [1.3012])
 
8852
m4_define([LT_PACKAGE_VERSION], [2.2.6b])
 
8853
m4_define([LT_PACKAGE_REVISION], [1.3017])
8789
8854
 
8790
8855
AC_DEFUN([LTVERSION_VERSION],
8791
 
[macro_version='2.2.6'
8792
 
macro_revision='1.3012'
 
8856
[macro_version='2.2.6b'
 
8857
macro_revision='1.3017'
8793
8858
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
8794
8859
_LT_DECL(, macro_revision, 0)
8795
8860
])
9090
9155
[am__api_version='1.11'
9091
9156
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
9092
9157
dnl require some minimum version.  Point them to the right macro.
9093
 
m4_if([$1], [1.11], [],
 
9158
m4_if([$1], [1.11.1], [],
9094
9159
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
9095
9160
])
9096
9161
 
9106
9171
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
9107
9172
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
9108
9173
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
9109
 
[AM_AUTOMAKE_VERSION([1.11])dnl
 
9174
[AM_AUTOMAKE_VERSION([1.11.1])dnl
9110
9175
m4_ifndef([AC_AUTOCONF_VERSION],
9111
9176
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
9112
9177
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])