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

« back to all changes in this revision

Viewing changes to build/configure.ac.tools

  • 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:
 
1
 
 
2
AC_PATH_PROG(FIND, find)
 
3
AC_PATH_PROG(XARGS, xargs)
 
4
 
 
5
AC_PROG_CC
 
6
AC_PROG_CPP
 
7
AC_PROG_CXX dnl required for BeOS (and cannot be a conditional dependency)
 
8
AM_PROG_CC_C_O
 
9
AC_C_INLINE
 
10
 
 
11
dnl ===========================================================================
 
12
 
 
13
PKG_PROG_PKG_CONFIG()
 
14
if test "x$PKG_CONFIG" = x; then
 
15
        AC_MSG_ERROR([pkg-config >= $PKGCONFIG_REQUIRED required but not found (http://pkgconfig.freedesktop.org/)])
 
16
fi
 
17
 
 
18
dnl Check for recent pkg-config which supports Requires.private
 
19
case `$PKG_CONFIG --version` in
 
20
[0.?|0.?.?|0.1[0-7]|0.1[0-7].?]) PKGCONFIG_REQUIRES="Requires"; ;;
 
21
*) PKGCONFIG_REQUIRES="Requires.private"; ;;
 
22
esac
 
23
 
 
24
AC_SUBST(PKGCONFIG_REQUIRES)
 
25