~ubuntu-branches/ubuntu/wily/brasero/wily

« back to all changes in this revision

Viewing changes to nautilus/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-11-18 11:30:50 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20081118113050-hoy0pi04uv7ww9d8
Tags: 0.8.3-0ubuntu1
* New upstream release (LP: #299411)
  - allow use of remote files
  - drives are now probed asynchronously and may not popup immediatly
    but brasero starts faster
  - some parts of GUI were revisited (in particular the burn
    option dialogs)
  - command line option for video projects (LP: #273140)
  - brasero crashed with SIGSEGV in g_main_context_dispatch()
    (LP: #281599)
  - Brasero main GUI appears after closing the dialog
    when opening an ISO file using Nautilus (LP: #242022)
  - brasero delete original files in VIDEO_TS folder (LP: #280835)
  - brasero crashed with SIGSEGV in 
    brasero_mkisofs_base_write_to_files() (LP: #275312)
  - brasero crashed with SIGSEGV in 
    brasero_project_save_project_as() (LP: #275086)
  - brasero crashed with SIGSEGV in 
    IA__g_sequence_iter_get_sequence() (LP: #282622)
  - brasero crashed with SIGSEGV in brasero_medium_get_drive()
    (LP: #283197)
  - Dialog contains a lot of empty space (LP: #190192)
 * debian/patches/008-add-gettext-domain-to-desktop-file.patch:
   - Dropped, we don't need this anymore
 * debian/control:
  - Add Build-deps on libeel2-dev and libnautilus-extension-dev
 * debian/brasero.install:
  - Install nautilus extension

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
module_flags = -avoid-version -module
 
2
 
 
3
INCLUDES =                                      \
 
4
        $(NAUTILUS_EXTENSION_CFLAGS)            \
 
5
        $(WERROR)                               \
 
6
        -D_FILE_OFFSET_BITS=64                  \
 
7
        -D_GNU_SOURCE                           \
 
8
        -D_LARGEFILE64_SOURCE                   \
 
9
        -D_REENTRANT                            \
 
10
        -D_POSIX_PTHREAD_SEMANTICS              \
 
11
        -DPREFIX=\"$(prefix)\"                  \
 
12
        -DBINDIR=\""$(bindir)"\"        \
 
13
        -DLIBEXECDIR=\""$(libexecdir)"\"        \
 
14
        -DSHAREDIR=\""$(datadir)"\"             \
 
15
        -DDATADIR=\""$(datadir)/brasero"\"
 
16
 
 
17
CLEANFILES =                    \
 
18
        $(NULL)
 
19
 
 
20
DISTCLEANFILES =                \
 
21
        $(NULL)
 
22
 
 
23
### Nautilus Extension
 
24
nautilus_extensiondir = $(NAUTILUSDIR)
 
25
nautilus_extension_LTLIBRARIES = libnautilus-brasero-extension.la
 
26
 
 
27
libnautilus_brasero_extension_la_SOURCES =      \
 
28
        nautilus-burn-bar.c                     \
 
29
        nautilus-burn-bar.h                     \
 
30
        nautilus-burn-extension.c                       \
 
31
        $(NULL)
 
32
 
 
33
libnautilus_brasero_extension_la_LIBADD = $(NAUTILUS_EXTENSION_LIBS)
 
34
libnautilus_brasero_extension_la_LDFLAGS = $(module_flags)