GNOME Bugzilla – Bug 317190
[PATCH] Use intltool for translation management
Last modified: 2005-09-29 07:46:56 UTC
The attached patch adds support for intltool to libwnck. It also fixes a few other issues I found. AC_ARG_PROGRAM already gets called, so we don't need to explicitly call it. The AC_DEFINE calls need to have a description as the third argument. By doing this, we can remove acconfig.h which removes a warning from autoheader.
Created attachment 52643 [details] [review] Patch to add intltool support and fix other issues
Thanks, I committed most of your patch. From http://www.gnu.org/prep/standards/html_node/Standard-Targets.html: ‘maintainer-clean’ Delete almost everything that can be reconstructed with this Makefile. This typically includes everything deleted by distclean, plus more: C source files produced by Bison, tags tables, Info files, and so on. The reason we say “almost everything” is that running the command ‘make maintainer-clean’ should not delete configure even if configure can be remade using a rule in the Makefile. More generally, ‘make maintainer-clean’ should not delete anything that needs to exist in order to run configure and then begin to build the program. Also, there is no need to delete parent directories that were created with ‘mkdir -p’, since they could have existed anyway. These are the only exceptions; maintainer-clean should delete everything else that can be rebuilt.