~ubuntu-branches/ubuntu/jaunty/gnome-common/jaunty

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach
  • Date: 2004-11-14 01:01:18 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041114010118-cm3q525sf2y56kdh
Tags: 2.8.0-3
debian/patches/01_autogen_copy_files.patch: use --force only
if $REQUIRED_AUTOMAKE_VERSION != 1.4 (closes: #281063).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(macros2/gnome-pkgconfig.m4)
2
 
 
3
 
AM_INIT_AUTOMAKE(gnome-common, 1.2.4)
4
 
 
 
1
AC_PREREQ(2.54)
 
2
AC_INIT([gnome-common], [2.8.0],
 
3
        [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-common])
 
4
 
 
5
AC_CONFIG_SRCDIR([macros2/gnome-autogen.sh])
 
6
AM_INIT_AUTOMAKE
5
7
AM_MAINTAINER_MODE
6
8
 
7
 
AM_CONDITIONAL(INSIDE_GNOME_COMMON, true)
8
 
 
9
 
AC_DEFUN([AC_FYI], [echo "FYI: " $1])
10
 
 
11
 
AC_ISC_POSIX
12
 
AC_PROG_CC
13
 
AC_PROG_CPP
14
 
AC_STDC_HEADERS
15
 
AM_PROG_LIBTOOL
16
 
 
17
 
AC_PROG_AWK
18
 
 
19
 
AC_PATH_PROG(PKG_CONFIG, pkg-config)
20
 
if ! test -x "$PKG_CONFIG" ; then
21
 
   AC_MSG_ERROR([
22
 
*** You need the latest pkg-config.
23
 
*** Get the latest version of pkg-config from
24
 
*** <http://www.freedesktop.org/software/pkgconfig/>.])
25
 
fi
26
 
AC_SUBST(PKG_CONFIG)
27
 
 
28
 
AC_OUTPUT([
 
9
AC_CONFIG_FILES([
29
10
Makefile
30
11
gnome-common.spec
31
 
macros/Makefile
32
12
macros2/Makefile
33
 
bin/Makefile
34
 
doc/Makefile])
 
13
doc-build/Makefile
 
14
doc-build/gnome-doc-common
 
15
])
35
16
 
 
17
AC_OUTPUT