Changeset 33
- Timestamp:
- 11/02/07 18:30:16
- Files:
-
- trunk (modified) (1 prop)
- trunk/.svnignore (modified) (1 diff)
- trunk/ChangeLog (modified) (1 diff)
- trunk/Makefile.am (modified) (1 diff)
- trunk/configure.ac (modified) (2 diffs)
- trunk/po (added)
- trunk/po/.svnignore (added)
- trunk/po/Makefile.in.in (added)
- trunk/po/POTFILES.in (added)
- trunk/src (modified) (1 prop)
- trunk/src/.svnignore (modified) (1 diff)
- trunk/src/tmut-main.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:ignore changed from configure Makefile.in config.log depcomp config.guess config.h config.sub ltmain.sh Makefile config.status stamp-h1 config.h.in libtool autom4te.cache missing aclocal.m4 install-sh TODO.tasks .tm_project2.cache tmut.anjuta to mkinstalldirs configure Makefile.in config.log depcomp config.guess config.h config.sub ltmain.sh Makefile config.status stamp-h1 config.h.in libtool autom4te.cache missing aclocal.m4 install-sh TODO.tasks .tm_project2.cache tmut.anjuta
trunk/.svnignore
r3 r33 1 mkinstalldirs 1 2 configure 2 3 Makefile.in trunk/ChangeLog
r32 r33 3 3 * Bugfix with error handling in the callback handlers 4 4 * Implemented deleting a message 5 * Added support for translations 5 6 6 7 2007-11-01 Philip Van Hoof <pvanhoof@gnome.org> trunk/Makefile.am
r1 r33 1 SUBDIRS = src 1 SUBDIRS = src po trunk/configure.ac
r15 r33 1 1 AC_INIT([tmut],[0.0.1],[http://tinymail.org]) 2 AC_CONFIG_HEADERS([ config.h])2 AC_CONFIG_HEADERS([src/config.h]) 3 3 4 4 AC_CONFIG_SRCDIR(src/tmut-main.c) … … 27 27 AC_SUBST(TMUT_LIBS) 28 28 29 GETTEXT_PACKAGE=tmut 30 AC_SUBST(GETTEXT_PACKAGE) 31 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext]) 32 AM_GLIB_DEFINE_LOCALEDIR([TMUT_LOCALE_DIR]) 33 ALL_LINGUAS="" 34 AM_GLIB_GNU_GETTEXT 35 36 29 37 AC_OUTPUT([ 30 38 Makefile 39 po/Makefile.in 31 40 src/Makefile 32 41 ]) trunk/src
- Property svn:ignore changed from core .libs .deps tmut Makefile Makefile.in to core .libs .deps tmut Makefile Makefile.in config.h stamp-h1 config.h.in
trunk/src/.svnignore
r12 r33 5 5 Makefile 6 6 Makefile.in 7 config.h 8 stamp-h1 9 config.h.in trunk/src/tmut-main.c
r16 r33 23 23 #include <tny-account-store-view.h> 24 24 25 #include <libintl.h> 26 27 #include "config.h" 25 28 #include "tmut-platform-factory.h" 26 29 #include "tmut-menu-view.h" … … 42 45 gdk_threads_enter (); 43 46 gtk_init (&argc, &argv); 47 48 bindtextdomain(GETTEXT_PACKAGE, TMUT_LOCALE_DIR); 44 49 45 50 window = GTK_WIDGET (tmut_shell_window_new ());
