~ubuntu-branches/ubuntu/quantal/gecko-mediaplayer/quantal

« back to all changes in this revision

Viewing changes to src/libgmlib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2011-07-17 22:24:37 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20110717222437-f0skmzay316o4rve
Tags: 1.0.4-0ubuntu1
* New upstream release.
* debian/patches:
 - 90_svn420_fix_null.patch: Remove, merged upstream.
 - 91_svn421_disable_npp_initialize.patch: Remove, merged upstream.
 - dont_use_libxul.patch: Remove, fixed upstream.
 - autotools.patch: Remove, not needed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
libgmlib_a_SOURCES = \
8
8
        gmlib.h \
 
9
        gm_audio.h \
 
10
        gm_audio.c \
9
11
        gm_file.h \
10
12
        gm_file.c \
11
13
        gm_parse.h \
20
22
        $(GCONF_CFLAGS) \
21
23
        $(GIO_CFLAGS) \
22
24
        $(GCONF_DEFINES) \
23
 
        $(GIO_DEFINES)
 
25
        $(GIO_DEFINES) \
 
26
        $(GLIB2_26_DEFINES) \
 
27
        $(ALSA_CFLAGS) \
 
28
        $(PULSE_CFLAGS)
 
29
 
 
30
indent:
 
31
        indent -kr -l120 -i4 -nut *.c
 
32
        indent -kr -l120 -i4 -nut *.h
 
33
        rm *~
 
34
        
 
35
cppcheck:
 
36
        cppcheck -q -a -v -f -j3 .
 
37