From: Christoph Hohmann Date: Tue, 3 Dec 2002 20:27:39 +0000 (+0000) Subject: 0.8.6claws56 X-Git-Tag: rel_0_8_7~92 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=5c438dc0e8b5b9392698e8fc36b1abadb5e05c89 0.8.6claws56 * src/Makefile.am * src/md5.[ch] ** REMOVE ** * srm/common/Makefile.am * src/common/md5.[ch] ** NEW ** move md5 files to common directory * src/gtkstext.c remove not required #include --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 0b3ec487c..7398210a6 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,14 @@ +2002-12-03 [christoph] 0.8.6claws56 + + * src/Makefile.am + * src/md5.[ch] ** REMOVE ** + * srm/common/Makefile.am + * src/common/md5.[ch] ** NEW ** + move md5 files to common directory + + * src/gtkstext.c + remove not required #include + 2002-12-03 [sergey] 0.8.6claws55 * src/gtkutils.c diff --git a/configure.in b/configure.in index 0336ea4a5..d5122d4e8 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=claws55 +EXTRA_VERSION=claws56 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/Makefile.am b/src/Makefile.am index 04e73d7ae..78ecb7f40 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -89,7 +89,6 @@ sylpheed_SOURCES = \ gtkutils.c gtkutils.h \ codeconv.c codeconv.h \ unmime.c unmime.h \ - md5.c md5.h \ ssl_certificate.c ssl_certificate.h \ ssl_manager.c ssl_manager.h \ automaton.c automaton.h \ diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 6601deeef..a8d41fdc6 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,13 +1,14 @@ noinst_LTLIBRARIES = libsylpheedcommon.la libsylpheedcommon_la_SOURCES = \ - utils.c utils.h \ - hooks.c hooks.h \ base64.c base64.h \ - uuencode.c uuencode.h \ + hooks.c hooks.h \ + log.c log.h \ + md5.c md5.h \ socket.c socket.h \ ssl.c ssl.h \ - log.c log.h + utils.c utils.h \ + uuencode.c uuencode.h INCLUDES = \ $(GLIB_CFLAGS) diff --git a/src/md5.c b/src/common/md5.c similarity index 99% rename from src/md5.c rename to src/common/md5.c index 465cbf0dd..f9eeff9cb 100644 --- a/src/md5.c +++ b/src/common/md5.c @@ -36,10 +36,8 @@ #include #include -#include "utils.h" #include "md5.h" - /**************** * Rotate a 32 bit integer by n bytes */ diff --git a/src/md5.h b/src/common/md5.h similarity index 100% rename from src/md5.h rename to src/common/md5.h diff --git a/src/gtkstext.c b/src/gtkstext.c index 70cde2676..d05a61f27 100644 --- a/src/gtkstext.c +++ b/src/gtkstext.c @@ -42,7 +42,7 @@ #include #include -#include "compose.h" +/* #include "compose.h" */ #include "gtkstext.h" #include "gtkutils.h"