2013-02-20 [colin] 3.9.0cvs96
* src/plugins/att_remover/Makefile.am * src/plugins/fetchinfo/Makefile.am * src/plugins/spam_report/Makefile.am Fix missed parts for w32
This commit is contained in:
parent
495d321cdd
commit
a6a56347e4
6 changed files with 26 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2013-02-20 [colin] 3.9.0cvs96
|
||||
|
||||
* src/plugins/att_remover/Makefile.am
|
||||
* src/plugins/fetchinfo/Makefile.am
|
||||
* src/plugins/spam_report/Makefile.am
|
||||
Fix missed parts for w32
|
||||
|
||||
2013-02-20 [colin] 3.9.0cvs95
|
||||
|
||||
* src/prefs_common.h
|
||||
|
|
|
@ -4593,3 +4593,4 @@
|
|||
( cvs diff -u -r 1.13.2.48 -r 1.13.2.49 src/common/plugin.c; ) > 3.9.0cvs93.patchset
|
||||
( cvs diff -u -r 1.654.2.4670 -r 1.654.2.4671 configure.ac; ) > 3.9.0cvs94.patchset
|
||||
( cvs diff -u -r 1.103.2.144 -r 1.103.2.145 src/prefs_common.h; cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/plugins/address_keeper/claws.def; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 src/plugins/att_remover/Makefile.am; diff -u /dev/null src/plugins/att_remover/claws.def; diff -u /dev/null src/plugins/att_remover/plugin.def; diff -u /dev/null src/plugins/att_remover/version.rc; cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/plugins/clamd/libclamd/Makefile.am; cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/plugins/fetchinfo/Makefile.am; diff -u /dev/null src/plugins/fetchinfo/claws.def; diff -u /dev/null src/plugins/fetchinfo/plugin.def; diff -u /dev/null src/plugins/fetchinfo/version.rc; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/plugins/mailmbox/Makefile.am; diff -u /dev/null src/plugins/mailmbox/claws.def; diff -u /dev/null src/plugins/mailmbox/plugin.def; diff -u /dev/null src/plugins/mailmbox/version.rc; cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/plugins/notification/gtkhotkey/Makefile.am; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/plugins/spam_report/Makefile.am; diff -u /dev/null src/plugins/spam_report/claws.def; diff -u /dev/null src/plugins/spam_report/plugin.def; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 src/plugins/spam_report/spam_report.c; diff -u /dev/null src/plugins/spam_report/version.rc; ) > 3.9.0cvs95.patchset
|
||||
( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/plugins/att_remover/Makefile.am; cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/plugins/fetchinfo/Makefile.am; cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/plugins/spam_report/Makefile.am; ) > 3.9.0cvs96.patchset
|
||||
|
|
|
@ -12,7 +12,7 @@ MINOR_VERSION=9
|
|||
MICRO_VERSION=0
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=95
|
||||
EXTRA_VERSION=96
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
|
@ -51,11 +51,15 @@ att_remover_la_SOURCES = \
|
|||
att_remover.c
|
||||
|
||||
att_remover_la_LDFLAGS = \
|
||||
-avoid-version -module
|
||||
|
||||
att_remover_la_LIBADD = \
|
||||
$(plugin_res_ldflag) $(no_undefined) $(export_symbols) \
|
||||
-avoid-version -module \
|
||||
$(GTK_LIBS)
|
||||
|
||||
att_remover_la_LIBADD = $(plugin_ldadd) $(cygwin_export_lib) \
|
||||
$(GTK_LIBS)
|
||||
|
||||
att_remover_la_DEPENDENCIES = $(plugin_deps)
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(CLAWS_MAIL_CFLAGS) \
|
||||
$(GLIB_CFLAGS) \
|
||||
|
|
|
@ -50,9 +50,15 @@ fetchinfo_la_SOURCES = \
|
|||
fetchinfo_plugin_gtk.c
|
||||
|
||||
fetchinfo_la_LDFLAGS = \
|
||||
$(plugin_res_ldflag) $(no_undefined) $(export_symbols) \
|
||||
-avoid-version -module \
|
||||
$(GTK_LIBS)
|
||||
|
||||
fetchinfo_la_LIBADD = $(plugin_ldadd) $(cygwin_export_lib) \
|
||||
$(GTK_LIBS)
|
||||
|
||||
fetchinfo_la_DEPENDENCIES = $(plugin_deps)
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(CLAWS_MAIL_CFLAGS) \
|
||||
$(GLIB_CFLAGS) \
|
||||
|
|
|
@ -53,13 +53,16 @@ spamreport_la_SOURCES = \
|
|||
spam_report_prefs.h
|
||||
|
||||
spamreport_la_LDFLAGS = \
|
||||
$(plugin_res_ldflag) $(no_undefined) $(export_symbols) \
|
||||
-avoid-version -module \
|
||||
$(GTK_LIBS)
|
||||
|
||||
spamreport_la_LIBADD = \
|
||||
spamreport_la_LIBADD = $(plugin_ldadd) $(cygwin_export_lib) \
|
||||
$(CURL_LIBS) \
|
||||
$(GTK_LIBS)
|
||||
|
||||
spamreport_la_DEPENDENCIES = $(plugin_deps)
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir)/src \
|
||||
-I$(top_srcdir)/src/common \
|
||||
|
|
Loading…
Reference in a new issue