diff options
author | Ted Gould <ted@canonical.com> | 2008-10-30 12:31:31 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2008-10-30 12:31:31 -0500 |
commit | 237fca7aaef00e5d25c8be74d802ea84416fe80f (patch) | |
tree | 77ab305f7d94c53a23cf979c09b7d7dc68dc13bb /configure.ac | |
parent | 9b4a5fb6e1df828104779dc189f80b92fdcbf4ff (diff) | |
download | libayatana-indicator-237fca7aaef00e5d25c8be74d802ea84416fe80f.tar.gz libayatana-indicator-237fca7aaef00e5d25c8be74d802ea84416fe80f.tar.bz2 libayatana-indicator-237fca7aaef00e5d25c8be74d802ea84416fe80f.zip |
Setting up the data directories and getting everything to translate nicely
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4cae40e..03de92c 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,19 @@ PKG_CHECK_MODULES(APPLET, gtk+-2.0 >= $GTK_REQUIRED_VERSION AC_SUBST(APPLET_CFLAGS) AC_SUBST(APPLET_LIBS) +AC_PATH_PROG(GCONFTOOL, gconftool-2) +AM_GCONF_SOURCE_2 + +########################### +# Internationalization +########################### + +GETTEXT_PACKAGE=indicator-applet +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Name of the default gettext domain]) + +AM_GLIB_GNU_GETTEXT + ########################### # Files ########################### @@ -37,6 +50,7 @@ AC_SUBST(APPLET_LIBS) AC_OUTPUT([ Makefile src/Makefile +data/Makefile po/Makefile.in ]) |