0.8.9claws14
authorChristoph Hohmann <reboot@gmx.ch>
Sun, 26 Jan 2003 13:50:48 +0000 (13:50 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Sun, 26 Jan 2003 13:50:48 +0000 (13:50 +0000)
* 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

ChangeLog.claws
configure.ac
src/Makefile.am
src/common/Makefile.am
src/common/mgutils.c [moved from src/mgutils.c with 100% similarity]
src/common/mgutils.h [moved from src/mgutils.h with 100% similarity]
src/common/xml.c [moved from src/xml.c with 100% similarity]
src/common/xml.h [moved from src/xml.h with 100% similarity]
src/common/xmlprops.c [moved from src/xmlprops.c with 99% similarity]
src/common/xmlprops.h [moved from src/xmlprops.h with 100% similarity]

index 56e7b350f6903e2b7a46b55f3f032d4890417059..8eff534200ddcbc5608b1a1026454a9e5b0d5ba8 100644 (file)
@@ -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
index 6bb698f3806695073c69e3375dc5ea0109ffd219..3df765865d308e3aa9d9703d93a1e77d31093210 100644 (file)
@@ -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
index 99c592065713822afdbe48edd4a68a5027fea719..f0f75ecc97b3a104d5500d195fffa714ee8b9d0a 100644 (file)
@@ -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 \
index 86b1a87ba6c2ab4dcfdecd7ab2b76d983db567ab..e9de206bf17880bdeea59d363b04cd3c7fafe808 100644 (file)
@@ -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) \
similarity index 100%
rename from src/mgutils.c
rename to src/common/mgutils.c
similarity index 100%
rename from src/mgutils.h
rename to src/common/mgutils.h
similarity index 100%
rename from src/xml.c
rename to src/common/xml.c
similarity index 100%
rename from src/xml.h
rename to src/common/xml.h
similarity index 99%
rename from src/xmlprops.c
rename to src/common/xmlprops.c
index ac6be5c19b6dd93eefe99f7d99c9b68a5da7594a..491d2239e3f00aba6fdca850b2c59b8f97aa89ed 100644 (file)
@@ -33,6 +33,8 @@
 
 #include <glib.h>
 #include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
 
 #include "prefs.h"
 #include "xml.h"
similarity index 100%
rename from src/xmlprops.h
rename to src/common/xmlprops.h