From: Christoph Hohmann Date: Sun, 26 Jan 2003 13:50:48 +0000 (+0000) Subject: 0.8.9claws14 X-Git-Tag: rel_0_8_10~50 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=32635e60238b1aaafda62549452d23fbc1f592e1 0.8.9claws14 * src/Makefile.am * src/mgutils.[ch] * src/xml.[ch] * src/xmlprops.[ch] * src/common/Makefile.am * src/common/mgutils.[ch] * src/common/xml.[ch] * src/common/xmlprops.[ch] move xml files to common directory --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 56e7b350f..8eff53420 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,15 @@ +2003-01-26 [christoph] 0.8.9claws14 + + * src/Makefile.am + * src/mgutils.[ch] + * src/xml.[ch] + * src/xmlprops.[ch] + * src/common/Makefile.am + * src/common/mgutils.[ch] + * src/common/xml.[ch] + * src/common/xmlprops.[ch] + move xml files to common directory + 2003-01-26 [christoph] 0.8.9claws13 * src/plugins/spamassassin/spamassassin_gtk.c diff --git a/configure.ac b/configure.ac index 6bb698f38..3df765865 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws13 +EXTRA_VERSION=claws14 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/Makefile.am b/src/Makefile.am index 99c592065..f0f75ecc9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -42,7 +42,6 @@ sylpheed_SOURCES = \ addrselect.c addrselect.h \ addrbook.c addrbook.h \ addrindex.c addrindex.h \ - mgutils.c mgutils.h \ vcard.c vcard.h \ ldif.c ldif.h \ importldif.c importldif.h \ @@ -64,7 +63,6 @@ sylpheed_SOURCES = \ addrgather.c addrgather.h \ exporthtml.c exporthtml.h \ exphtmldlg.c exphtmldlg.h \ - xmlprops.c xmlprops.h \ filesel.c filesel.h \ foldersel.c foldersel.h \ statusbar.c statusbar.h \ @@ -91,7 +89,6 @@ sylpheed_SOURCES = \ export.c export.h \ news.c news.h \ imap.c imap.h \ - xml.c xml.h \ html.c html.h \ enriched.c enriched.h \ procmime.c procmime.h \ diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 86b1a87ba..e9de206bf 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -7,6 +7,7 @@ libsylpheedcommon_la_SOURCES = \ intl.h \ log.c log.h \ md5.c md5.h \ + mgutils.c mgutils.h \ nntp.c nntp.h \ plugin.c plugin.h \ prefs.c prefs.h \ @@ -20,8 +21,10 @@ libsylpheedcommon_la_SOURCES = \ sylpheed.c sylpheed.h \ template.c template.h \ utils.c utils.h \ + uuencode.c uuencode.h \ version.h \ - uuencode.c uuencode.h + xml.c xml.h \ + xmlprops.c xmlprops.h CPPFLAGS = \ $(GLIB_CFLAGS) \ diff --git a/src/mgutils.c b/src/common/mgutils.c similarity index 100% rename from src/mgutils.c rename to src/common/mgutils.c diff --git a/src/mgutils.h b/src/common/mgutils.h similarity index 100% rename from src/mgutils.h rename to src/common/mgutils.h diff --git a/src/xml.c b/src/common/xml.c similarity index 100% rename from src/xml.c rename to src/common/xml.c diff --git a/src/xml.h b/src/common/xml.h similarity index 100% rename from src/xml.h rename to src/common/xml.h diff --git a/src/xmlprops.c b/src/common/xmlprops.c similarity index 99% rename from src/xmlprops.c rename to src/common/xmlprops.c index ac6be5c19..491d2239e 100644 --- a/src/xmlprops.c +++ b/src/common/xmlprops.c @@ -33,6 +33,8 @@ #include #include +#include +#include #include "prefs.h" #include "xml.h" diff --git a/src/xmlprops.h b/src/common/xmlprops.h similarity index 100% rename from src/xmlprops.h rename to src/common/xmlprops.h