CVS: sylpheedclaws/sylpheed-claws/src/plugins/pgpcore claws.def,NONE,1.1.4.1 Makefile.am,1.1.2.6.2.1,1.1.2.6.2.2 pgp_viewer.c,1.1.2.7.2.1,1.1.2.7.2.2 plugin.c,1.1.2.12.2.1,1.1.2.12.2.2 sylpheed.def,1.1.2.4.4.1,NONE
[email protected] Mon, 04 Dec 2006 14:22:29 +0000
Newsgroups
gmane.mail.sylpheed.claws.cvs
Message-ID
<[email protected] >
Update of /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/plugins/pgpcore
In directory sunsite.dk:/tmp/cvs-serv28725/src/plugins/pgpcore
Modified Files:
Tag: stable_2_6
Makefile.am pgp_viewer.c plugin.c
Added Files:
Tag: stable_2_6
claws.def
Removed Files:
Tag: stable_2_6
sylpheed.def
Log Message:
2006-12-04 [paul] 2.6.0cvs25-stable
* ChangeLog
* Makefile.am
* configure.ac
* m4/aclocal-include.m4
* m4/check-type.m4
* src/Makefile.am
* src/addr_compl.c
* src/compose.c
* src/crash.c
* src/export.c
* src/exporthtml.c
* src/exportldif.c
* src/imap.c
* src/import.c
* src/main.c
* src/main.h
* src/matcher.c
* src/mimeview.c
* src/procmsg.c
* src/common/Makefile.am
* src/common/claws.c
* src/common/claws.h
* src/common/ssl.c
* src/common/sylpheed.c
* src/common/sylpheed.h
* src/etpan/Makefile.am
* src/gtk/Makefile.am
* src/gtk/claws-marshal.list
* src/gtk/filesel.c
* src/gtk/gtksctree.c
* src/gtk/quicksearch.c
* src/gtk/sylpheed-marshal.list
* src/plugins/bogofilter/bogofilter.c
* src/plugins/bogofilter/bogofilter_gtk.c
* src/plugins/clamav/clamav_plugin.c
* src/plugins/clamav/clamav_plugin_gtk.c
* src/plugins/demo/demo.c
* src/plugins/dillo_viewer/dillo_viewer.c
* src/plugins/pgpcore/Makefile.am
* src/plugins/pgpcore/claws.def
* src/plugins/pgpcore/pgp_viewer.c
* src/plugins/pgpcore/plugin.c
* src/plugins/pgpcore/sylpheed.def
* src/plugins/pgpinline/Makefile.am
* src/plugins/pgpinline/claws.def
* src/plugins/pgpinline/plugin.c
* src/plugins/pgpinline/sylpheed.def
* src/plugins/pgpmime/Makefile.am
* src/plugins/pgpmime/claws.def
* src/plugins/pgpmime/plugin.c
* src/plugins/pgpmime/sylpheed.def
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin_gtk.c
* src/plugins/trayicon/trayicon.c
backport from 2.6.0cvs64:
yet more renaming
--- NEW FILE: claws.def ---
LIBRARY CLAWS-MAIL.EXE
EXPORTS
alertpanel
alertpanel_full
alertpanel_error
copy_file_part
debug_print_real
debug_srcname
get_rc_dir
get_tmp_file
gtkut_stock_button_set_create
input_dialog
mainwindow_get_mainwindow
manage_window_destroy
manage_window_focus_in
manage_window_focus_out
manage_window_set_transient
manage_window_unmap
prefs_account_get_privacy_prefs
prefs_account_register_page
prefs_account_set_privacy_prefs
prefs_account_unregister_page
prefs_button_toggled
prefs_file_close
prefs_file_close_revert
prefs_gtk_register_page
prefs_gtk_unregister_page
prefs_read_config
prefs_set_block_label
prefs_set_default
prefs_write_open
prefs_write_param
claws_get_version
privacy_set_error
privacy_get_error
Index: Makefile.am
===================================================================
RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/plugins/pgpcore/Attic/Makefile.am,v
retrieving revision 1.1.2.6.2.1
retrieving revision 1.1.2.6.2.2
diff -u -d -r1.1.2.6.2.1 -r1.1.2.6.2.2
--- Makefile.am 2006/11/24 13:13:59 1.1.2.6.2.1
+++ Makefile.am 2006/12/04 14:22:23 1.1.2.6.2.2
@@ -1,4 +1,4 @@
-EXTRA_DIST = version.rc plugin.def sylpheed.def
+EXTRA_DIST = version.rc plugin.def claws.def
if OS_WIN32
@@ -14,12 +14,12 @@
export_symbols = -export-symbols $(srcdir)/plugin.def
-plugin_deps = libsylpheed.a $(plugin_res) plugin.def
+plugin_deps = libclaws.a $(plugin_res) plugin.def
-libsylpheed.a: sylpheed.def
+libclaws.a: claws.def
$(DLLTOOL) --output-lib $@ --def $<
-plugin_ldadd = -L . -lsylpheed
+plugin_ldadd = -L . -lclaws
else
plugin_res =
@@ -81,5 +81,5 @@
-Wno-deprecated-declarations
clean-local:
- rm -f libsylpheed.a
+ rm -f libclaws.a
Index: pgp_viewer.c
===================================================================
RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/plugins/pgpcore/Attic/pgp_viewer.c,v
retrieving revision 1.1.2.7.2.1
retrieving revision 1.1.2.7.2.2
diff -u -d -r1.1.2.7.2.1 -r1.1.2.7.2.2
--- pgp_viewer.c 2006/11/24 13:14:00 1.1.2.7.2.1
+++ pgp_viewer.c 2006/12/04 14:22:23 1.1.2.7.2.2
@@ -32,7 +32,7 @@
#endif
#include "version.h"
-#include "common/sylpheed.h"
+#include "common/claws.h"
#include "mainwindow.h"
#include "mimeview.h"
#include "textview.h"
Index: plugin.c
===================================================================
RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/plugins/pgpcore/Attic/plugin.c,v
retrieving revision 1.1.2.12.2.1
retrieving revision 1.1.2.12.2.2
diff -u -d -r1.1.2.12.2.1 -r1.1.2.12.2.2
--- plugin.c 2006/11/24 13:14:01 1.1.2.12.2.1
+++ plugin.c 2006/12/04 14:22:23 1.1.2.12.2.2
@@ -26,7 +26,7 @@
#include <glib/gi18n.h>
#include "version.h"
-#include "common/sylpheed.h"
+#include "common/claws.h"
#include "sgpgme.h"
#include "prefs_gpg.h"
#include "pgp_viewer.h"
@@ -34,12 +34,12 @@
gint plugin_init(gchar **error)
{
- if ((sylpheed_get_version() > VERSION_NUMERIC)) {
+ if ((claws_get_version() > VERSION_NUMERIC)) {
*error = g_strdup(_("Your version of Claws Mail is newer than the version the PGP/Core plugin was built with"));
return -1;
}
- if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(2, 1, 0, 1))) {
+ if ((claws_get_version() < MAKE_NUMERIC_VERSION(2, 1, 0, 1))) {
*error = g_strdup(_("Your version of Claws Mail is too old for the PGP/Core plugin"));
return -1;
}
--- sylpheed.def DELETED ---