~ubuntu-branches/ubuntu/oneiric/xpad/oneiric

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Bart Martens
  • Date: 2007-12-10 22:52:37 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20071210225237-llvwje5iwbbi5adw
Tags: 2.13-1
* New upstream release.
* debian/patches/01_workspaces.diff: Removed.
* debian/menu: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Process this file with autoconf to produce a configure script.
2
2
 
3
3
# Sets up autoconf.
4
 
AC_INIT([Xpad],[2.12],[xpad-devel@lists.sourceforge.net])
 
4
AC_INIT([Xpad],[2.13],[xpad-devel@lists.sourceforge.net])
5
5
AC_CONFIG_SRCDIR(src/xpad-app.c)
6
6
AC_CONFIG_HEADERS([config.h:config.h.in])
7
7
 
17
17
 
18
18
# Checks for libraries.
19
19
AC_PATH_XTRA
20
 
AM_PATH_GTK_2_0(2.6.0,,AC_MSG_ERROR([
21
 
  *** GTK+ 2.6 is required to build Xpad; please make sure you have the GTK+
 
20
AM_PATH_GTK_2_0(2.12.0,,AC_MSG_ERROR([
 
21
  *** GTK+ 2.12 is required to build Xpad; please make sure you have the GTK+
22
22
  *** development headers installed. The latest version of GTK+ is
23
23
  *** always available at http://gtk.org/.]))
24
24
 
26
26
AC_C_CONST
27
27
AC_TYPE_SIZE_T
28
28
 
29
 
# Sets up marshaling (copied from Evolution).
30
 
# We use AC_SUBST_FILE because AC_SUBST won't deal with newlines
31
 
AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
32
 
XPAD_MARSHAL_RULE=$srcdir/marshal.mk
33
 
AC_SUBST_FILE(XPAD_MARSHAL_RULE)
34
 
 
35
29
# Sets up gettext.
36
30
GETTEXT_PACKAGE="$PACKAGE"
37
31
AC_SUBST(GETTEXT_PACKAGE)
38
32
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [gettext domain])
39
 
ALL_LINGUAS="af bg da es fr ga hu it ms nl ro ru rw sk sl sv vi zh_CN zh_TW"
40
33
AM_GLIB_GNU_GETTEXT
41
34
 
42
35
# Determines if we're debugging.
54
47
# Sets up output files.
55
48
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile images/Makefile po/Makefile.in autopackage/Makefile autopackage/default.apspec])
56
49
AC_OUTPUT
 
50