~ubuntu-branches/ubuntu/intrepid/libgtkada2/intrepid

« back to all changes in this revision

Viewing changes to contrib/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-08-11 09:46:51 UTC
  • mfrom: (6.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080811094651-9mjd6acwa98ffw5c
Tags: 2.12.0-2ubuntu1
Add lpia to supported architectures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_REVISION($Revision: 104436 $)
 
2
AC_INIT(src/glib.ads)
 
3
 
 
4
# Current release settings
 
5
GTKADA_MAJOR_VERSION=1
 
6
GTKADA_MINOR_VERSION=2
 
7
GTKADA_MICRO_VERSION=12
 
8
GTKADA_VERSION=$GTKADA_MAJOR_VERSION.$GTKADA_MINOR_VERSION.$GTKADA_MICRO_VERSION
 
9
 
 
10
AC_CANONICAL_SYSTEM
 
11
AM_ADD_OS_SPECIFIC_FLAGS
 
12
 
 
13
# checking for local tools
 
14
AM_PATH_MERGE
 
15
AM_PATH_DIFF_AND_PATCH
 
16
AC_PROG_CC
 
17
AM_PATH_GNAT
 
18
AM_PATH_PERL
 
19
AC_PROG_MAKE_SET
 
20
AC_PROG_INSTALL
 
21
AC_PROG_RANLIB
 
22
 
 
23
# checking for gtk
 
24
AM_PATH_GTK(1.2.2,,AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
 
25
 
 
26
# Gettext stuff
 
27
ALL_LINGUAS="fr"
 
28
AM_GNU_GETTEXT
 
29
 
 
30
# try to find OpenGL if present
 
31
AM_CHECK_OPENGL
 
32
 
 
33
# try to find libart & gdk-pixbuf if present
 
34
AM_CHECK_PIXBUF
 
35
 
 
36
# try to find libglade if present
 
37
AM_CHECK_LIBGLADE
 
38
 
 
39
# try to find gnome if present
 
40
AM_CHECK_GNOME
 
41
 
 
42
# Set the version number of GtkAda
 
43
AC_SUBST(GTKADA_VERSION)
 
44
AC_SUBST(GTKADA_MAJOR_VERSION)
 
45
AC_SUBST(GTKADA_MINOR_VERSION)
 
46
AC_SUBST(GTKADA_MICRO_VERSION)
 
47
 
 
48
EXEC_PREFIX="$prefix"
 
49
AC_SUBST(EXEC_PREFIX)
 
50
 
 
51
AC_OUTPUT(Makefile src/Makefile.common src/Makefile src/gtkada-config src/gate testgtk/Makefile src/gtkextra/Makefile src/opengl/Makefile src/pixbuf/Makefile src/glade/Makefile src/gnome/Makefile docs/gtkada_ug/Makefile docs/gtkada_rm/Makefile)