~ubuntu-branches/ubuntu/quantal/desktop-file-utils/quantal

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-03-30 15:25:44 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330152544-p8n6eg4zvucfz9rb
Tags: 0.16-0ubuntu1
* New upstream release:
 - do not unlink the destination file if it's the same as the source file in
   desktop-file-install
 - check that a main category is included in the Categories
 - check that categories required by another one are present
 - do not always show warnings about KDE specific uses
 - check that the Comment does not look like the Name and the GenericName
 - display error about multiple keys with the same name earlier
 - improve MIME type check to make sure that the MIME types are valid
 - add LXDE in the list of registered OnlyShowIn values
 - add "warning" to error strings to make them easily greppable
 - handle AutostartCondition key, as proposed for the autostart specification
   and used in GNOME
 - accept empty Categories key as valid
 - make new errors non-fatal to give some time to maintainers to fix their
   .desktop file after a release of desktop-file-utils
 - plug leak
 - code cleanups
 - improve MIME type check to make sure that the MIME types are valid
 - improve error messages (Erik Hovland, Vincent)
 - fix format string vulnerability warning
 - use AM_SILENT_RULES
 - improve build system
* debian/patches/01-add-lxde.patch:
  - Applied upstream
* debian/control:
  - Add Vcs-Bzr link
  - Use Standards-Version 3.8.4
* debian/watch:
  - Releases now in bzip2 format

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
desktop_file_validate_SOURCES=                  \
13
13
        keyfileutils.c                          \
14
14
        keyfileutils.h                          \
 
15
        mimeutils.c                             \
 
16
        mimeutils.h                             \
15
17
        validate.c                              \
16
18
        validate.h                              \
17
19
        validator.c
19
21
desktop_file_install_SOURCES=                   \
20
22
        keyfileutils.c                          \
21
23
        keyfileutils.h                          \
 
24
        mimeutils.c                             \
 
25
        mimeutils.h                             \
22
26
        validate.c                              \
23
27
        validate.h                              \
24
28
        install.c
25
29
 
26
30
update_desktop_database_SOURCES =               \
 
31
        mimeutils.c                             \
 
32
        mimeutils.h                             \
27
33
        update-desktop-database.c
28
34
 
29
35
desktop_file_validate_LDADD = $(DESKTOP_FILE_UTILS_LIBS)
30
36
desktop_file_install_LDADD = $(DESKTOP_FILE_UTILS_LIBS)
31
37
update_desktop_database_LDADD = $(DESKTOP_FILE_UTILS_LIBS)
 
38
 
 
39
-include $(top_srcdir)/git.mk