~ubuntu-branches/ubuntu/lucid/brasero/lucid-updates

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-06-24 11:22:46 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100624112246-s5ubbf8tafqkir0m
Tags: 2.30.2-0ubuntu1
* New upstream release
  - Lot's of memleak fixes
  - Fixed a runtime warning related to cancelling tracker searches
  - Crash in brasero_data_project_node_removed at
    brasero-data-project.c:1163
  - brasero crashed with SIGSEGV in brasero_data_project_remove_node()
    (LP: #561319)
  - Fix a few runtime warnings with the Cover Editor
  - Text in cover editor does not show up automatically (LP: #469459)
  - Removed use of deprecated flags
  - Use accessor functions instead direct access (use GSEAL GnomeGoal)
  - Fix a bug in the layout on first start (side pane was hidden and
    remained so until the user moved it)
  - Save printer settings for cover printing
  - Write the contents of the GtkTextBuffer displayed line by displayed
    line which should improve the layout
  - "Write to Disc" button sensitivity regression
  - Fix flaw in mask that led libburn plugin not to work (not to be picked
    up actually) in some circumstances
  - Fails to burn ANY audio project
  - Move columns doesn't work (LP: #581759)
  - Brasero does not correctly handle double clicking on column separators
    (LP: #581885)
  - Bad info when burning, high CPU usage and slow burn
  - Change the priority for cdrdao and raised the one of cdda2wav plugin
  - brasero crashed with SIGSEGV in
    brasero_mmc3_get_performa nce_wrt_spd_desc() (LP: #564766)
  - brasero crashed with SIGSEGV in brasero_scsi_command_issue_sync()
    (LP: #444832)
  - Do not check for symlinks on cdda2wav so the plugin can use icedax.
  - Brasero's failure with some file names (LP: #380643)
  - Pressing create audio cd does nothing
  - Empty project not available
  - can't actually save error logs
  - doesn't handle incorrect temp dirs properly
  - Fix multi DND in GtkFileChooser
  - Displays "starting to record" during whole burn process
  - Fix wrong report of speed with both cdrecord and wodim
  - Disk project doesn't save the disk title (LP: #587924)
  - Brasero reports outdated cdrtools on cdrtools-3.00 (LP: #592075)
  - misc bug fixes
  - Updated Translations
* Removed upstream patches:
  - debian/patches/90_git_audio_project_creation.patch,
    debian/patches/91_git_audio_project_creation.patch,
    debian/patches/92_git_audio_cd_recording.patch,
    debian/patches/93_git_new_caps_function_definition.patch
* debian/patches/99_autoconf.patch:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
278
278
PACKAGE_NAME = @PACKAGE_NAME@
279
279
PACKAGE_STRING = @PACKAGE_STRING@
280
280
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
281
PACKAGE_URL = @PACKAGE_URL@
281
282
PACKAGE_VERSION = @PACKAGE_VERSION@
282
283
PATH_SEPARATOR = @PATH_SEPARATOR@
283
284
PKG_CONFIG = @PKG_CONFIG@
 
285
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
286
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
284
287
POFILES = @POFILES@
285
288
POSUB = @POSUB@
286
289
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
331
334
libexecdir = @libexecdir@
332
335
localedir = @localedir@
333
336
localstatedir = @localstatedir@
334
 
lt_ECHO = @lt_ECHO@
335
337
mandir = @mandir@
336
338
mkdir_p = @mkdir_p@
337
339
oldincludedir = @oldincludedir@
475
477
#     (which will cause the Makefiles to be regenerated when you run `make');
476
478
# (2) otherwise, pass the desired values on the `make' command line.
477
479
$(RECURSIVE_TARGETS):
478
 
        @failcom='exit 1'; \
 
480
        @fail= failcom='exit 1'; \
479
481
        for f in x $$MAKEFLAGS; do \
480
482
          case $$f in \
481
483
            *=* | --[!k]*);; \
500
502
        fi; test -z "$$fail"
501
503
 
502
504
$(RECURSIVE_CLEAN_TARGETS):
503
 
        @failcom='exit 1'; \
 
505
        @fail= failcom='exit 1'; \
504
506
        for f in x $$MAKEFLAGS; do \
505
507
          case $$f in \
506
508
            *=* | --[!k]*);; \
667
669
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
668
670
          dist-hook
669
671
        -test -n "$(am__skip_mode_fix)" \
670
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
672
        || find "$(distdir)" -type d ! -perm -755 \
 
673
                -exec chmod u+rwx,go+rx {} \; -o \
671
674
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
672
675
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
673
676
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
711
714
distcheck: dist
712
715
        case '$(DIST_ARCHIVES)' in \
713
716
        *.tar.gz*) \
714
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
717
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
715
718
        *.tar.bz2*) \
716
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
719
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
717
720
        *.tar.lzma*) \
718
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
721
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
719
722
        *.tar.xz*) \
720
723
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
721
724
        *.tar.Z*) \
722
725
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
723
726
        *.shar.gz*) \
724
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
727
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
725
728
        *.zip*) \
726
729
          unzip $(distdir).zip ;;\
727
730
        esac