~ubuntu-branches/ubuntu/oneiric/sflphone/oneiric

« back to all changes in this revision

Viewing changes to sflphone-common/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2011-01-16 17:48:24 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110116174824-blwd2zw5w7ap22w1
Tags: 0.9.12-1
* New upstream release:
  - refactoring of the RTP session allowing dynamic update of audio codecs
  - updated synchronization between transport layer and audio layer
  - better implementation of SIP Early media playback
  - fixed memory leaks in configuration serialization engine
  - Evolution addressbook: default addressbook & authentication support
  - improved Gnome client initialization error handling
  - updated dbus-c++ binding

* Remove all Debian patches since they were applied upstream
* New build-dependencies on libedataserverui1.2-dev and astyle

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        install-sh ltmain.sh missing
46
46
subdir = .
47
47
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
48
 
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 
48
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
 
49
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
50
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
51
        $(top_srcdir)/configure.ac
49
52
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
50
53
        $(ACLOCAL_M4)
51
54
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
845
848
indent:
846
849
        @echo "Indenting code:"
847
850
        if [ -f $(ASTYLERC) ] ; then \
848
 
                find $(top_srcdir)/src/ -regex ".*\.\(h\|cpp\)" -exec $(indent) --options=$(ASTYLERC) {} \; ; \
 
851
                find $(top_srcdir)/src/ -name \*.cpp -o -name \*.h | xargs $(indent) --options=$(ASTYLERC) ; \
849
852
        fi
850
853
@BUILD_TEST_TRUE@unittest:
851
854
@BUILD_TEST_TRUE@       @(cd test; make)