diff options
author | Dan Winship <danw@src.gnome.org> | 2000-05-04 23:23:43 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-05-04 23:23:43 +0800 |
commit | ba6b73fe56390dc752b43443701073fff7289709 (patch) | |
tree | dbcb834a29a525587107981b0883f486b9141f8d /camel/providers/pop3/Makefile.am | |
parent | 929f89ce1c6fd86370839283e467127c2a1be3f6 (diff) | |
download | gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar.gz gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar.bz2 gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar.lz gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar.xz gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.tar.zst gsoc2013-evolution-ba6b73fe56390dc752b43443701073fff7289709.zip |
New function to replace camel_provider_scan. Returns a list of either (a)
* camel-session.c (camel_session_list_providers): New function to
replace camel_provider_scan. Returns a list of either (a) all
currently-loaded providers, or (b) all available providers.
* camel-url.[ch]: Add an "empty" flag to CamelURL (indicating that
it contains only a protocol).
* camel-service.c (camel_service_query_auth_types): Make this take
a CamelException (since it may have to try to connect to the
server, and it might not able to.)
* providers/pop3/camel-pop3-store.c: add KPOP (Kerberized POP)
support. This is mostly so I have two kinds of authmech to play
with instead of just one. (But it does actually work.)
* providers/smtp/camel-smtp-transport.c (query_auth_types): update
for prototype change, but disable the functionality, since it
doesn't really support any auth types yet.
(camel_smtp_transport_get_type): add an object init function to
set the service url_flags.
svn path=/trunk/; revision=2797
Diffstat (limited to 'camel/providers/pop3/Makefile.am')
-rw-r--r-- | camel/providers/pop3/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/pop3/Makefile.am b/camel/providers/pop3/Makefile.am index 49bb2fc254..f30d73e736 100644 --- a/camel/providers/pop3/Makefile.am +++ b/camel/providers/pop3/Makefile.am @@ -17,7 +17,7 @@ INCLUDES = \ -I$(top_srcdir)/intl \ $(GTK_INCLUDEDIR) \ -I$(top_srcdir)/camel \ - -I$(srcdir)/../mbox \ + $(KRB4_CFLAGS) \ -DG_LOG_DOMAIN=\"camel-pop3-provider\" libcamelpop3_la_SOURCES = \ @@ -30,6 +30,6 @@ libcamelpop3include_HEADERS = \ camel-pop3-store.h -libcamelpop3_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir) +libcamelpop3_la_LDFLAGS = $(KRB4_LDFLAGS) -version-info 0:0:0 -rpath $(libdir) EXTRA_DIST = libcamelpop3.urls |