diff options
author | Luca Ferretti <elle.uca@libero.it> | 2007-12-18 15:40:44 +0000 |
---|---|---|
committer | Luca Ferretti <lferrett@src.gnome.org> | 2007-12-18 15:40:44 +0000 |
commit | cb5c86a46ce371035ab4c5078fa69be389ed7f06 (patch) | |
tree | 1d715f23b2dd5394f39a63fd79edce6238660989 /configure.ac | |
parent | ac3ac918cb81cda8db32672a9044bf849dfc4aa3 (diff) | |
download | gvfs-cb5c86a46ce371035ab4c5078fa69be389ed7f06.tar.gz |
Add ALL_LINGUAS and definition for GVFS_LOCALEDIR; the second one is
2007-12-18 Luca Ferretti <elle.uca@libero.it>
* configure.ac: Add ALL_LINGUAS and definition for GVFS_LOCALEDIR;
the second one is unused by now, but could be needed, so all
l10n stuff in this file should be OK.
* po/POTFILES.in: revert previous commit: gvfs is not using
intltool. The question is: should it???
svn path=/trunk/; revision=1051
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ed9165d8..ab879555 100644 --- a/configure.ac +++ b/configure.ac @@ -51,13 +51,27 @@ AC_SUBST(DBUS_LIBS) AC_ARG_WITH(dbus_service_dir, [ --with-dbus-service-dir=PATH choose directory for dbus service files, [default=PREFIX/share/dbus-1/services]], with_dbus_service_dir="$withval", with_dbus_service_dir=$datadir/dbus-1/services) DBUS_SERVICE_DIR=$with_dbus_service_dir AC_SUBST(DBUS_SERVICE_DIR) - + +dnl **************************** +dnl *** Checks for gettext *** +dnl **************************** + GETTEXT_PACKAGE=gvfs AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext domain name]) AC_SUBST(GETTEXT_PACKAGE) +ALL_LINGUAS="it" + AM_GLIB_GNU_GETTEXT +LIBS="$LIBS $INTLLIBS" + +AM_GLIB_DEFINE_LOCALEDIR(GVFS_LOCALEDIR) + +dnl **************************** +dnl *** Checks for ssh stuff *** +dnl **************************** + AC_PATH_PROG(SSH_PROGRAM, ssh, "ssh") dnl **************************** |