~ubuntu-branches/ubuntu/intrepid/cairo/intrepid-updates

« back to all changes in this revision

Viewing changes to doc/public/check-doc-coverage.sh

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-09-25 16:22:33 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080925162233-btx61ymk181i7mcc
Tags: 1.7.6-0ubuntu1
* New upstream version. Most noticable changes are:
  - some API changes with especially the removal of
    cairo_font_options_set_lcd_filter and cairo_font_options_get_lcd_filter
  - xlib: Faster bookkeeping
  - PS: Fix gradients with non-constant alpha
  - Fix deadlock in user-font code
* debian/patches/00list: Remove 03_from_git_fix_lcd_filter_default.dpatch,
  add debian/patches/03_fix_ftbfs_withing_xcb.dpatch
* debian/libcairo2.symbols, debian/libcairo-directfb2.symbols: update
  list of symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        fi
12
12
fi
13
13
 
 
14
if test -n "$REPORT_FILES"; then
 
15
        $MAKE $REPORT_FILES || exit 1
 
16
fi
14
17
 
15
18
test -z "$srcdir" && srcdir=.
16
19
stat=0
17
20
 
18
 
if test -f "$DOC_MODULE-undocumented.txt" -a -f "$DOC_MODULE-unused.txt"; then
19
 
        :
20
 
else
21
 
        echo At least one of "$DOC_MODULE-undocumented.txt" and "$DOC_MODULE-unused.txt" not found.
22
 
        echo Skipping test.
23
 
        exit 0
 
21
if test -f "$DOC_MODULE-undeclared.txt"; then
 
22
        undeclared=`cat "$DOC_MODULE-undeclared.txt"`
 
23
        if test -n "$undeclared"; then
 
24
                echo Undeclared documentation symbols: 1>&2
 
25
                cat "$DOC_MODULE-undeclared.txt" 1>&2
 
26
                stat=1
 
27
        fi
24
28
fi
25
 
 
26
29
if test -f "$DOC_MODULE-unused.txt"; then
27
30
        unused=`cat "$DOC_MODULE-unused.txt"`
28
31
        if test -n "$unused"; then