~ubuntu-branches/ubuntu/karmic/exo/karmic

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2009-08-21 14:28:56 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20090821142856-xp7o7hl7x9xa2213
Tags: 0.3.102-1ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  - debian/rules:
    + Removed mangling of helpers.rc
    + Add --enable-gtk-doc switch to configure
  - debian/control:
    + Add build-dep on gtk-doc-tools
    + Update Vcs-* fields
  - debian/patches:
    + 04_update_helpers.patch: patched libexo's firefox helper desktop file
      to use firefox-3.0 icon instead of firefox icon
    + xubuntu-default-mount-options.patch: change default mount options for
      vfat, iso9660, ntfs
    + series: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl $Id: configure.in.in 29784 2009-04-12 21:33:01Z stephan $
 
1
dnl $Id$
2
2
dnl
3
3
dnl Copyright (c) 2004-2009 os-cillation.
4
4
dnl All rights reserved.
12
12
m4_define([libexo_verinfo], [5:0:5])
13
13
m4_define([libexo_version_major], [0])
14
14
m4_define([libexo_version_minor], [3])
15
 
m4_define([libexo_version_micro], [101])
 
15
m4_define([libexo_version_micro], [102])
16
16
m4_define([libexo_version_nano], [])
17
 
m4_define([libexo_version_build], [r29783])
 
17
m4_define([libexo_version_build], [raf777c1])
18
18
m4_define([libexo_version_tag], [])
19
19
m4_define([libexo_version], [libexo_version_major().libexo_version_minor().libexo_version_micro()ifelse(libexo_version_nano(), [], [], [.libexo_version_nano()])ifelse(libexo_version_tag(), [svn], [libexo_version_tag()-libexo_version_build()], [libexo_version_tag()])])
20
20
 
32
32
Written by Benedikt Meurer <benny@xfce.org>.])
33
33
AC_INIT([exo], [libexo_version], [http://bugzilla.xfce.org/])
34
34
AC_PREREQ([2.50])
35
 
AC_REVISION([$Id: configure.in.in 29784 2009-04-12 21:33:01Z stephan $])
 
35
AC_REVISION([$Id$])
36
36
AC_CANONICAL_TARGET()
37
37
 
38
38
dnl ***************************
93
93
AC_PROG_LIBTOOL()
94
94
AC_CHECK_PROGS([PERL], [perl5 perl])
95
95
 
 
96
dnl ************************************************
 
97
dnl *** Loopup hardcoded paths we use internally ***
 
98
dnl ************************************************
 
99
AC_PATH_PROG([PATH_MOUNT], [mount], [/bin/mount])
 
100
AC_PATH_PROG([PATH_UMOUNT], [umount], [/bin/umount])
 
101
AC_SUBST([PATH_MOUNT])
 
102
AC_SUBST([PATH_UMOUNT])
 
103
 
96
104
dnl ***************************************
97
105
dnl *** Check for required Perl modules ***
98
106
dnl ***************************************
141
149
dnl ******************************
142
150
dnl *** Check for i18n support ***
143
151
dnl ******************************
144
 
XDT_I18N([ar be ca cs cy da de dz el en_GB es et eu fi fr gl he hu id it ja ka ku lt lv mk nb nl pa pl pt_BR pt ro ru sq sv tr uk ur zh_CN zh_TW], [libexo-libexo_version_major().libexo_version_minor()])
 
152
XDT_I18N([ar ast be ca cs cy da de dz el en_GB es et eu fi fr gl he hu id it ja ka kk ku lt lv mk nb nl pa pl pt pt_BR ro ru sq sv tr uk ur ur_PK zh_CN zh_TW ], [libexo-libexo_version_major().libexo_version_minor()])
145
153
 
146
154
dnl ***********************************
147
155
dnl *** Check for required packages ***
198
206
have_python=no
199
207
if test x"$enable_python" != x"no"; then
200
208
  AC_MSG_NOTICE([Checking to see if we can build Python bindings])
201
 
  AM_PATH_PYTHON([2.2])
 
209
  AM_PATH_PYTHON([2.2],, [:])
202
210
 
203
 
  if test -z "$PYTHON"; then
 
211
  if test x"$PYTHON" = x":"; then
204
212
    AC_MSG_WARN([Python not found])
205
213
  else
206
214
    XDT_CHECK_PYTHON_HEADERS([have_python_headers=yes],[have_python_headers=no])