~ubuntu-branches/ubuntu/oneiric/mousetweaks/oneiric

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2010-08-17 09:36:13 UTC
  • mfrom: (1.1.43 upstream)
  • Revision ID: james.westby@ubuntu.com-20100817093613-oybbs4er3uanl4ys
Tags: 2.31.90-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
m4_ifndef([AC_AUTOCONF_VERSION],
15
15
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16
 
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
17
 
[m4_warning([this file was generated for autoconf 2.65.
 
16
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
 
17
[m4_warning([this file was generated for autoconf 2.67.
18
18
You have another version of autoconf.  It may work, but is not guaranteed to.
19
19
If you have problems, you may need to regenerate the build system entirely.
20
20
To do so, use the procedure documented by the package, typically `autoreconf'.])])
346
346
 
347
347
    dnl These rules are solely for the distribution goal.  While doing this
348
348
    dnl we only have to keep exactly one list of the available catalogs
349
 
    dnl in configure.in.
 
349
    dnl in configure.ac.
350
350
    for lang in $ALL_LINGUAS; do
351
351
      GMOFILES="$GMOFILES $lang.gmo"
352
352
      POFILES="$POFILES $lang.po"
475
475
dnl
476
476
dnl Now the definitions that aclocal will find
477
477
dnl
478
 
ifdef(glib_configure_in,[],[
 
478
ifdef(glib_configure_ac,[],[
479
479
AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
480
480
AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
481
481
])dnl
690
690
  AC_SUBST(WARN_CXXFLAGS)
691
691
])
692
692
 
693
 
# nls.m4 serial 3 (gettext-0.15)
694
 
dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
 
693
# nls.m4 serial 5 (gettext-0.18)
 
694
dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
 
695
dnl Inc.
695
696
dnl This file is free software; the Free Software Foundation
696
697
dnl gives unlimited permission to copy and/or distribute it,
697
698
dnl with or without modifications, as long as this notice is preserved.
709
710
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
710
711
dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
711
712
 
712
 
AC_PREREQ(2.50)
 
713
AC_PREREQ([2.50])
713
714
 
714
715
AC_DEFUN([AM_NLS],
715
716
[
716
717
  AC_MSG_CHECKING([whether NLS is requested])
717
718
  dnl Default is enabled NLS
718
 
  AC_ARG_ENABLE(nls,
 
719
  AC_ARG_ENABLE([nls],
719
720
    [  --disable-nls           do not use Native Language Support],
720
721
    USE_NLS=$enableval, USE_NLS=yes)
721
 
  AC_MSG_RESULT($USE_NLS)
722
 
  AC_SUBST(USE_NLS)
 
722
  AC_MSG_RESULT([$USE_NLS])
 
723
  AC_SUBST([USE_NLS])
723
724
])
724
725
 
725
726
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-