aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog11
-rw-r--r--camel/Makefile.am4
-rw-r--r--camel/providers/MH/Makefile.am3
-rw-r--r--camel/providers/maildir/Makefile.am3
-rw-r--r--camel/providers/mbox/Makefile.am3
-rw-r--r--camel/providers/nntp/Makefile.am3
-rw-r--r--camel/providers/pop3/Makefile.am3
-rw-r--r--camel/providers/sendmail/Makefile.am3
-rw-r--r--camel/providers/smtp/Makefile.am3
9 files changed, 27 insertions, 9 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index bcafb56e19..b1c128f973 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,14 @@
+2000-05-02 Matt Loper <matt@helixcode.com>
+
+ * Makefile.am: set G_LOG_DOMAIN.
+ * providers/MH/Makefile.am: same.
+ * providers/maildir/Makefile.am: same.
+ * providers/mbox/Makefile.am: same.
+ * providers/nntp/Makefile.am: same.
+ * providers/pop3/Makefile.am: same.
+ * providers/sendmail/Makefile.am: same.
+ * providers/smtp/Makefile.am: same.
+
2000-05-02 NotZed <NotZed@HelixCode.com>
* providers/mbox/camel-mbox-search.c
diff --git a/camel/Makefile.am b/camel/Makefile.am
index a53e3fd564..d8696a3f59 100644
--- a/camel/Makefile.am
+++ b/camel/Makefile.am
@@ -10,8 +10,8 @@ lib_LTLIBRARIES = libcamel.la
INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
-I$(top_srcdir)/intl \
$(GTK_INCLUDEDIR) \
- -DCAMEL_PROVIDERDIR=\""$(providerdir)"\"
-
+ -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \
+ -DG_LOG_DOMAIN=\"camel\"
if ENABLE_THREADS
diff --git a/camel/providers/MH/Makefile.am b/camel/providers/MH/Makefile.am
index dab6bec199..59662a07dd 100644
--- a/camel/providers/MH/Makefile.am
+++ b/camel/providers/MH/Makefile.am
@@ -9,7 +9,8 @@ lib_LTLIBRARIES = libcamelmh.la
INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
-I$(top_srcdir)/intl \
- $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel
+ $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \
+ -DG_LOG_DOMAIN=\"camel-mh-provider\"
libcamelmh_la_SOURCES = \
camel-mh-folder.c \
diff --git a/camel/providers/maildir/Makefile.am b/camel/providers/maildir/Makefile.am
index 51a0d7327b..07f05d443b 100644
--- a/camel/providers/maildir/Makefile.am
+++ b/camel/providers/maildir/Makefile.am
@@ -7,7 +7,8 @@ libcamelmaildirincludedir = $(includedir)/camel
lib_LTLIBRARIES = libcamelmaildir.la
INCLUDES = -I.. -I$(srcdir)/.. -I$(top_srcdir)/intl -I$(top_srcdir)/camel \
- $(GTK_INCLUDEDIR) -I$(includedir)
+ $(GTK_INCLUDEDIR) -I$(includedir) \
+ -DG_LOG_DOMAIN=\"camel-maildir-provider\"
libcamelmaildir_la_SOURCES = \
camel-maildir-folder.c \
diff --git a/camel/providers/mbox/Makefile.am b/camel/providers/mbox/Makefile.am
index 25a26e25db..0597a68a57 100644
--- a/camel/providers/mbox/Makefile.am
+++ b/camel/providers/mbox/Makefile.am
@@ -18,7 +18,8 @@ INCLUDES = -I.. \
-I$(top_srcdir)/e-util \
-I$(top_srcdir) \
-I$(includedir) \
- $(GTK_INCLUDEDIR)
+ $(GTK_INCLUDEDIR) \
+ -DG_LOG_DOMAIN=\"camel-mbox-provider\"
libcamelmbox_la_SOURCES = \
camel-mbox-folder.c \
diff --git a/camel/providers/nntp/Makefile.am b/camel/providers/nntp/Makefile.am
index ec393ea907..200011c4dc 100644
--- a/camel/providers/nntp/Makefile.am
+++ b/camel/providers/nntp/Makefile.am
@@ -12,7 +12,8 @@ provider_DATA = libcamelnntp.urls
INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
-I$(top_srcdir)/intl \
$(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \
- -I$(srcdir)/../mbox
+ -I$(srcdir)/../mbox \
+ -DG_LOG_DOMAIN=\"camel-nntp-provider\"
libcamelnntp_la_SOURCES = \
camel-nntp-folder.c \
diff --git a/camel/providers/pop3/Makefile.am b/camel/providers/pop3/Makefile.am
index 4775c866d1..49bb2fc254 100644
--- a/camel/providers/pop3/Makefile.am
+++ b/camel/providers/pop3/Makefile.am
@@ -17,7 +17,8 @@ INCLUDES = \
-I$(top_srcdir)/intl \
$(GTK_INCLUDEDIR) \
-I$(top_srcdir)/camel \
- -I$(srcdir)/../mbox
+ -I$(srcdir)/../mbox \
+ -DG_LOG_DOMAIN=\"camel-pop3-provider\"
libcamelpop3_la_SOURCES = \
camel-pop3-folder.c \
diff --git a/camel/providers/sendmail/Makefile.am b/camel/providers/sendmail/Makefile.am
index 0c12a6e23d..511c860315 100644
--- a/camel/providers/sendmail/Makefile.am
+++ b/camel/providers/sendmail/Makefile.am
@@ -16,7 +16,8 @@ INCLUDES = \
-I$(srcdir)/../../.. \
-I$(includedir) \
-I$(top_srcdir)/intl \
- $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel
+ $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \
+ -DG_LOG_DOMAIN=\"camel-sendmail-provider\"
libcamelsendmail_la_SOURCES = \
camel-sendmail-provider.c \
diff --git a/camel/providers/smtp/Makefile.am b/camel/providers/smtp/Makefile.am
index 8c49e8778b..b14375bfc0 100644
--- a/camel/providers/smtp/Makefile.am
+++ b/camel/providers/smtp/Makefile.am
@@ -16,7 +16,8 @@ INCLUDES = \
-I$(includedir) \
-I$(top_srcdir)/intl \
$(GTK_INCLUDEDIR) \
- -I$(top_srcdir)/camel
+ -I$(top_srcdir)/camel \
+ -DG_LOG_DOMAIN=\"camel-smtp-provider\"
libcamelsmtp_la_SOURCES = \
camel-smtp-provider.c \