From f993b377b573cd1efca22fb3d57a38820605f641 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Wed, 30 Apr 2003 11:54:52 +0000 Subject: [PATCH] configure.ac: arrange the plugins in reverse alphabetical order; clamav_plugin.[ch], clamav_plugin_gtk.c: rename some params, resize max_size window, re-arrange the order of some gui elements, improve descriptions; image_viewer/plugin.c, mathml_viewer/mathml_viewer.c: add descriptions; spamassassin_gtk.c: resize max_size window, re-arrange the order of some gui elements; messageview.c, mimeview.c: correct typos --- ChangeLog.claws | 24 ++++++++++++++++++++++++ configure.ac | 46 +++++++++++++++++++++++----------------------- 2 files changed, 47 insertions(+), 23 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 16b65bbbd..694d3edab 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,27 @@ +2003-04-30 [paul] 0.8.11claws125 + + * configure.ac + arrange the plugins in reverse alphabetical order + + * src/plugins/clamav/clamav_plugin.[ch] + src/plugins/clamav/clamav_plugin_gtk.c + rename some params + resize max_size window + re-arrange the order of some gui elements + improve descriptions + + * src/plugins/image_viewer/plugin.c + src/plugins/mathml_viewer/mathml_viewer.c + add descriptions + + * src/plugins/spamassassin/spamassassin_gtk.c + resize max_size window + re-arrange the order of some gui elements + + * src/messageview.c + src/mimeview.c + correct typos + 2003-04-30 [alfons] 0.8.11claws124 * src/imap.c diff --git a/configure.ac b/configure.ac index 256f77c71..36c17e179 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws124 +EXTRA_VERSION=claws125 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target @@ -355,16 +355,16 @@ dnl ************************* PLUGINS="" -AC_ARG_ENABLE(demo-plugin, - [ --enable-demo-plugin Build demo plugin [default=no]], - [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no]) -AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes) -if test x"$ac_cv_enable_demo_plugin" = xyes; then - PLUGINS="demo $PLUGINS" +AC_ARG_ENABLE(trayicon-plugin, + [ --enable-trayicon-plugin System Tray Icon [default=no]], + [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=no]) +AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes) +if test x"$ac_cv_enable_trayicon_plugin" = xyes; then + PLUGINS="trayicon $PLUGINS" fi AC_ARG_ENABLE(spamassassin-plugin, - [ --enable-spamassassin-plugin Build spamassassin plugin [default=no]], + [ --enable-spamassassin-plugin Build SpamAssassin plugin [default=no]], [ac_cv_enable_spamassassin_plugin=$enableval], [ac_cv_enable_spamassassin_plugin=no]) AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes) if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then @@ -385,14 +385,6 @@ if test x"$ac_cv_enable_mathml_viewer_plugin" = xyes; then PLUGINS="mathml-viewer $PLUGINS" fi -AC_ARG_ENABLE(dillo-viewer-plugin, - [ --enable-dillo-viewer-plugin Build Dillo plugin for html mail rendering [default=no]], - [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=no]) -AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes) -if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then - PLUGINS="dillo-viewer $PLUGINS" -fi - AC_ARG_ENABLE(image-viewer-plugin, [ --disable-image-viewer-plugin Do not build image viewer plugin], [ac_cv_enable_image_viewer_plugin=$enableval], [ac_cv_enable_image_viewer_plugin=yes]) @@ -423,16 +415,24 @@ if test x"$ac_cv_enable_image_viewer_plugin" = xyes; then PLUGINS="image $PLUGINS" fi -AC_ARG_ENABLE(trayicon-plugin, - [ --enable-trayicon-plugin System Tray Icon [default=no]], - [ac_cv_enable_trayicon_plugin=$enableval], [ac_cv_enable_trayicon_plugin=no]) -AM_CONDITIONAL(BUILD_TRAYICON_PLUGIN, test x"$ac_cv_enable_trayicon_plugin" = xyes) -if test x"$ac_cv_enable_trayicon_plugin" = xyes; then - PLUGINS="trayicon $PLUGINS" +AC_ARG_ENABLE(dillo-viewer-plugin, + [ --enable-dillo-viewer-plugin Build Dillo plugin for html mail rendering [default=no]], + [ac_cv_enable_dillo_viewer_plugin=$enableval], [ac_cv_enable_dillo_viewer_plugin=no]) +AM_CONDITIONAL(BUILD_DILLO_VIEWER_PLUGIN, test x"$ac_cv_enable_dillo_viewer_plugin" = xyes) +if test x"$ac_cv_enable_dillo_viewer_plugin" = xyes; then + PLUGINS="dillo-viewer $PLUGINS" +fi + +AC_ARG_ENABLE(demo-plugin, + [ --enable-demo-plugin Build demo plugin [default=no]], + [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no]) +AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes) +if test x"$ac_cv_enable_demo_plugin" = xyes; then + PLUGINS="demo $PLUGINS" fi AC_ARG_ENABLE(clamav-plugin, - [ --enable-clamav-plugin Build clamav plugin [default=no]], + [ --enable-clamav-plugin Build Clam AntiVirus plugin [default=no]], [ac_cv_enable_clamav_plugin=$enableval], [ac_cv_enable_clamav_plugin=no]) AM_CONDITIONAL(BUILD_CLAMAV_PLUGIN, test x"$ac_cv_enable_clamav_plugin" = xyes) if test x"$ac_cv_enable_clamav_plugin" = xyes; then -- 2.25.1