aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbertrand <bertrand@helixcode.com>2000-01-13 12:07:33 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-01-13 12:07:33 +0800
commit095c53bace7844fbdb0f2053f7facdc609a1bb57 (patch)
tree8e1243989905af8739de8dd37c6f02355b73d0c1
parent5571fc3e69a84a1b53da1ce768282b26d78b39f8 (diff)
downloadgsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar.gz
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar.bz2
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar.lz
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar.xz
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.tar.zst
gsoc2013-evolution-095c53bace7844fbdb0f2053f7facdc609a1bb57.zip
remove non updated tests from the build process.
2000-01-12 bertrand <bertrand@helixcode.com> * tests/Makefile.am (noinst_PROGRAMS): remove non updated tests from the build process. * camel/Makefile.am : remove the rfc2047 related files from the build process as for the moment, nothing has been decided concerning unicode. * Makefile.am (evolution_msg_composer_LDADD): use $(EXTRA_GNOME_LIBS_THREADS) to link with gthread svn path=/trunk/; revision=1564
-rw-r--r--ChangeLog25
-rw-r--r--camel/Makefile.am1
-rw-r--r--camel/camel-folder-summary.h14
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/Makefile.am4
-rw-r--r--tests/Makefile.am1
6 files changed, 45 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 27ff78781c..69b78f1086 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2000-01-12 bertrand <bertrand@helixcode.com>
+
+ * tests/Makefile.am (noinst_PROGRAMS):
+ remove non updated tests from the build
+ process.
+
+ * corrected a bunch of bugs
+
+ * camel/providers/mbox/camel-mbox-parser.c
+ (camel_mbox_parse_file):
+ parser the subject and date.
+
+
+ * camel/providers/mbox/camel-mbox-parser.c
+ (camel_mbox_parse_file): added the ability to
+ follow the parsing progression.
+
+ * camel/providers/mbox/camel-mbox-parser.h:
+ parse the x-evolution field.
+
+ * camel/Makefile.am (libcamel_la_SOURCES):
+ disabled gmime-rfc2047 as it depends on libunicode
+ and is not used for the moment.
+
+
2000-01-12 <clahey@galapagos.helixcode.com>
* widgets/e-minicard.c, widgets/e-minicard.h: Added a resize
diff --git a/camel/Makefile.am b/camel/Makefile.am
index b61bb5bef7..2fae06080d 100644
--- a/camel/Makefile.am
+++ b/camel/Makefile.am
@@ -61,7 +61,6 @@ libcamel_la_SOURCES = \
data-wrapper-repository.c \
gmime-base64.c \
gmime-content-field.c \
- gmime-rfc2047.c \
gmime-utils.c \
gstring-util.c \
hash-table-utils.c \
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h
index acb3ba5f01..0c8f26ed5c 100644
--- a/camel/camel-folder-summary.h
+++ b/camel/camel-folder-summary.h
@@ -43,6 +43,9 @@ extern "C" {
#define CAMEL_FOLDER_SUMMARY_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), CAMEL_FOLDER_SUMMARY_TYPE, CamelFolderSummaryClass))
#define CAMEL_IS_FOLDER_SUMMARY(o) (GTK_CHECK_TYPE((o), CAMEL_FOLDER_SUMMARY_TYPE))
+
+
+
typedef struct {
gchar *name;
gint nb_message;
@@ -52,6 +55,9 @@ typedef struct {
GHashTable *extended_fields;
} CamelFolderInfo;
+
+
+
typedef struct {
gchar *subject;
gchar *uid;
@@ -62,8 +68,9 @@ typedef struct {
} CamelMessageInfo;
-typedef struct
-{
+
+
+typedef struct {
GtkObject parent_object;
GList *subfolder_info_list; /* informations on subfolders */
@@ -73,6 +80,7 @@ typedef struct
+
typedef struct {
GtkObjectClass parent_class;
@@ -90,6 +98,8 @@ GtkType camel_folder_summary_get_type (void);
/* public methods */
CamelFolderSummary *camel_folder_summary_new ();
+
+/* get information about the messages and the subfolders in the directory */
const GList *camel_folder_summary_get_subfolder_info_list (CamelFolderSummary *summary);
const GList *camel_folder_summary_get_message_info_list (CamelFolderSummary *summary);
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 744d633eae..028b4060f3 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-12 bertrand <bertrand@helixcode.com>
+
+ * Makefile.am (evolution_msg_composer_LDADD):
+ use $(EXTRA_GNOME_LIBS_THREADS) to link with gthread
+
1999-11-17 Ettore Perazzoli <ettore@gnu.org>
* Makefile.am: New Makefile to compile the message composer
diff --git a/composer/Makefile.am b/composer/Makefile.am
index 4b2c3720dc..469fb14ecf 100644
--- a/composer/Makefile.am
+++ b/composer/Makefile.am
@@ -39,9 +39,11 @@ evolution_msg_composer_LDADD = \
$(GNOMEUI_LIBS) \
$(INTLLIBS) \
$(PTHREAD_LIB) \
- $(EXTRA_GNOME_LIBS)
+ $(EXTRA_GNOME_LIBS_THREADS)
EXTRA_DIST = \
$(glade_DATA) \
ChangeLog
+
+
diff --git a/tests/Makefile.am b/tests/Makefile.am
index c9aa1b7d68..432c39a953 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -22,6 +22,5 @@ noinst_PROGRAMS = \
test1 \
test2 \
test3 \
- test4 test5 test6 \
test7 \
test8