From: Christoph Hohmann Date: Sat, 30 Nov 2002 20:00:26 +0000 (+0000) Subject: 0.8.6claws43 X-Git-Tag: rel_0_8_7~108 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9838169a98e1ca3991cb5deb690e8d36ffe4e1e7 0.8.6claws43 * src/Makefile.am * src/pgptext.c * src/procmime.c * src/rfc2015.c * src/uuencode.[ch] ** REMOVED ** * src/common/Makefile.am * src/common/uuencode.[ch] ** NEW ** move uuen/decoder to common directory --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 9c7b558f7..553498a6c 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,7 +1,18 @@ +2002-11-30 [christoph] 0.8.6claws43 + + * src/Makefile.am + * src/pgptext.c + * src/procmime.c + * src/rfc2015.c + * src/uuencode.[ch] ** REMOVED ** + * src/common/Makefile.am + * src/common/uuencode.[ch] ** NEW ** + move uuen/decoder to common directory + 2002-11-30 [christoph] 0.8.6claws42 * src/Makefile.am - * src/base64.[ch] + * src/base64.[ch] ** REMOVED ** * src/codeconv.c * src/compose.c * src/ldif.c @@ -11,7 +22,7 @@ * src/smtp.c * src/unmime.c * src/common/Makefile.am - * src/common/base64.[ch] + * src/common/base64.[ch] ** NEW ** move base64 en/decoder to common directory 2002-11-30 [christoph] 0.8.6claws41 diff --git a/configure.in b/configure.in index 57c19528f..69f871be1 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws42 +EXTRA_VERSION=claws43 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/Makefile.am b/src/Makefile.am index 552ce4675..fb864254b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -90,7 +90,6 @@ sylpheed_SOURCES = \ gtkutils.c gtkutils.h \ codeconv.c codeconv.h \ unmime.c unmime.h \ - uuencode.c uuencode.h \ md5.c md5.h \ socket.c socket.h \ ssl.c ssl.h \ diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 0b068181c..79276855f 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,7 +1,8 @@ noinst_LTLIBRARIES = libsylpheedcommon.la libsylpheedcommon_la_SOURCES = \ - base64.c base64.h + base64.c base64.h \ + uuencode.c uuencode.h INCLUDES = \ $(GLIB_CFLAGS) diff --git a/src/uuencode.c b/src/common/uuencode.c similarity index 100% rename from src/uuencode.c rename to src/common/uuencode.c diff --git a/src/uuencode.h b/src/common/uuencode.h similarity index 100% rename from src/uuencode.h rename to src/common/uuencode.h diff --git a/src/pgptext.c b/src/pgptext.c index a82139afa..952d3d710 100644 --- a/src/pgptext.c +++ b/src/pgptext.c @@ -37,7 +37,7 @@ #include "procmime.h" #include "procheader.h" #include "common/base64.h" -#include "uuencode.h" +#include "common/uuencode.h" #include "unmime.h" #include "codeconv.h" #include "utils.h" diff --git a/src/procmime.c b/src/procmime.c index 2ec1ded3d..0e98c97fc 100644 --- a/src/procmime.c +++ b/src/procmime.c @@ -33,7 +33,7 @@ #include "procmime.h" #include "procheader.h" #include "common/base64.h" -#include "uuencode.h" +#include "common/uuencode.h" #include "unmime.h" #include "html.h" #include "enriched.h" diff --git a/src/rfc2015.c b/src/rfc2015.c index 7074a5e43..7087dc0ab 100644 --- a/src/rfc2015.c +++ b/src/rfc2015.c @@ -37,7 +37,7 @@ #include "procmime.h" #include "procheader.h" #include "common/base64.h" -#include "uuencode.h" +#include "common/uuencode.h" #include "unmime.h" #include "codeconv.h" #include "utils.h"