~ubuntu-desktop/unity-lens-files/precise

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2012-03-23 15:05:24 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20120323150524-c21y3llquexksyfm
Tags: 5.8.0-0ubuntu1
* New upstream release.
  - clicking on folders in the file lens does not open nautilus
    (LP: #921665)
  - Dash - No message displayed when no results are returned in the
    Dash (LP: #711199)
  - Privacy Delete history is not deleting download history (LP: #947856)
  - Locate scope doesn't respect privacy settings (LP: #955229)
  - \\192.168.1.x opens http:\\192.168.1.x in firefox as opposed to
    smb://192.168.1.x in nautilus (LP: #773841)
  - Web url regexp matches non url (LP: #948086)
* debian/control:
  - build-dep on newer zeitgeist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
check_PROGRAMS = test-url-checker
 
2
 
 
3
TESTS = $(check_PROGRAMS)
 
4
 
 
5
AM_CPPFLAGS = \
 
6
  -w \
 
7
  $(LENS_DAEMON_CFLAGS) \
 
8
  $(NULL)
 
9
 
 
10
AM_VALAFLAGS = \
 
11
  --pkg gio-2.0 \
 
12
  $(srcdir)/assertions.vapi \
 
13
  $(NULL)
 
14
 
 
15
test_libs = \
 
16
  $(LENS_DAEMON_LIBS) \
 
17
  $(NULL)
 
18
 
 
19
test_url_checker_LDADD = $(test_libs)
 
20
 
 
21
test_url_checker_SOURCES = \
 
22
  test-url-checker.vala \
 
23
  $(top_srcdir)/src/url-checker.vala \
 
24
  $(NULL)
 
25
 
 
26
CLEANFILES = *.stamp
 
27