diff options
author | JP Rosevear <jpr@ximian.com> | 2001-07-21 04:55:53 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-07-21 04:55:53 +0800 |
commit | 8a644defbfa4fd7e357db469ca1c65dd1da154e5 (patch) | |
tree | 4b14449eeac8796851baa10fc8f323d7737d15c0 /camel/tests/smime | |
parent | 8ce52755799a11514f4c1f930b201eb42596e6b0 (diff) | |
download | gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar.gz gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar.bz2 gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar.lz gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar.xz gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.tar.zst gsoc2013-evolution-8a644defbfa4fd7e357db469ca1c65dd1da154e5.zip |
Pull up test fixes to get them building again
2001-07-20 JP Rosevear <jpr@ximian.com>
* Pull up test fixes to get them building again
svn path=/trunk/; revision=11270
Diffstat (limited to 'camel/tests/smime')
-rw-r--r-- | camel/tests/smime/Makefile.am | 3 | ||||
-rw-r--r-- | camel/tests/smime/pgp-mime.c | 2 | ||||
-rw-r--r-- | camel/tests/smime/pgp.c | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/camel/tests/smime/Makefile.am b/camel/tests/smime/Makefile.am index 4f86852a7c..0eafc46e36 100644 --- a/camel/tests/smime/Makefile.am +++ b/camel/tests/smime/Makefile.am @@ -10,8 +10,7 @@ LDADD = \ $(top_builddir)/libibex/libibex.la \ $(GNOME_LIBDIR) \ $(top_builddir)/camel/tests/lib/libcameltest.a \ - $(GNOMEUI_LIBS) $(INTLLIBS) $(EXTRA_GNOME_LIBS) \ - $(BONOBO_GNOME_LIBS) + $(GNOMEUI_LIBS) $(INTLLIBS) $(MAILER_LIBS) check_PROGRAMS = \ pgp \ diff --git a/camel/tests/smime/pgp-mime.c b/camel/tests/smime/pgp-mime.c index 2aba78232c..d2e243e084 100644 --- a/camel/tests/smime/pgp-mime.c +++ b/camel/tests/smime/pgp-mime.c @@ -109,7 +109,7 @@ int main (int argc, char **argv) session = camel_pgp_session_new ("/tmp/camel-test"); - ctx = camel_pgp_context_new (session, CAMEL_PGP_TYPE_GPG, "/usr/bin/gpg"); + ctx = camel_pgp_context_new (session, CAMEL_PGP_TYPE_GPG, "/usr/bin/gpg", FALSE); camel_test_start ("Test of PGP/MIME functions"); diff --git a/camel/tests/smime/pgp.c b/camel/tests/smime/pgp.c index ad9a0fa753..2d5ff7228c 100644 --- a/camel/tests/smime/pgp.c +++ b/camel/tests/smime/pgp.c @@ -106,7 +106,7 @@ int main (int argc, char **argv) session = camel_pgp_session_new ("/tmp/camel-test"); - ctx = camel_pgp_context_new (session, CAMEL_PGP_TYPE_GPG, "/usr/bin/gpg"); + ctx = camel_pgp_context_new (session, CAMEL_PGP_TYPE_GPG, "/usr/bin/gpg", FALSE); camel_test_start ("Test of PGP functions"); |