~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to m4/shamrock/i18n.m4

  • Committer: Christopher James Halse Rogers
  • Date: 2008-07-25 06:31:03 UTC
  • Revision ID: raof@cowboylaputopu.cooperteam.net-20080725063103-r77k514l0z7kfw03
Start making autotools work again; all the plugins that currently have autofoo should be working

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([SHAMROCK_CONFIGURE_I18N],
 
2
[
 
3
        #IT_PROG_INTLTOOL([0.35.0])
 
4
        #AC_PROG_INTLTOOL([0.21])
 
5
 
 
6
        ALL_LINGUAS=`grep -v '^#' $srcdir/po/LINGUAS | sed -r ':a;N;$!ba;s/\n/ /g; s/[ ]+/ /g'`
 
7
        GETTEXT_PACKAGE=$1
 
8
        AC_SUBST(GETTEXT_PACKAGE)
 
9
        AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext Package])
 
10
        AM_GLIB_GNU_GETTEXT
 
11
        AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
 
12
])
 
13