~ubuntu-branches/ubuntu/maverick/pango1.0/maverick-proposed

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-08-11 17:30:40 UTC
  • mfrom: (1.5.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090811173040-zozfegyjkb39sep2
Tags: 1.25.2-0ubuntu1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
dnl The triplet 
23
23
m4_define([pango_version_major], [1])
24
24
m4_define([pango_version_minor], [25])
25
 
m4_define([pango_version_micro], [1])
 
25
m4_define([pango_version_micro], [2])
26
26
m4_define([pango_version],
27
27
          [pango_version_major.pango_version_minor.pango_version_micro])
28
28
dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2.
29
29
m4_define([pango_api_version], [1.0])
30
30
dnl Number of releases since we've added interfaces
31
31
dnl XXX For 1.25 release simply remove it and make it automatic.
32
 
m4_define([pango_interface_age], [1])
 
32
m4_define([pango_interface_age], [2])
33
33
dnl Number of releases since we've broken binary compatibility.
34
34
m4_define([pango_binary_age],
35
35
          [m4_eval(100 * pango_version_minor + pango_version_micro)])
111
111
AM_CONDITIONAL(OS_WIN32, test "$pango_os_win32" = "yes")
112
112
 
113
113
AC_PROG_CC
114
 
        
115
 
dnl 
116
 
dnl Check for a working C++ compiler, but do not bail out, if none is found.
117
 
dnl We use this for an automated test for C++ header correctness.
118
 
dnl 
119
 
AC_CHECK_PROGS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc)
120
 
AC_LANG_SAVE
121
 
AC_LANG_CPLUSPLUS
122
 
AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)
 
114
AC_PROG_CXX
123
115
AM_CONDITIONAL(HAVE_CXX, test "$CXX" != "")
124
 
AC_LANG_RESTORE
125
116
 
126
117
AC_LIBTOOL_WIN32_DLL
127
118
AM_DISABLE_STATIC