diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-09-22 04:40:27 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-09-22 04:40:27 +0800 |
commit | a8ccf540137ec5fa18a00a0a8f4819ab43806a30 (patch) | |
tree | 253a0be3c01088df224156cb56e8d5033cce207f /tests/Makefile.am | |
parent | 9da28b316177dad8cbc788906e6c8357cc3a3082 (diff) | |
download | gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.gz gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.zst gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.zip |
Check pthreads.
1999-09-21 bertrand <Bertrand.Guiheneuf@aful.org>
* configure.in:
Check pthreads.
* camel/Makefile.am:
camel-folder-pt-proxy.c is only compiled
when pthreads are available.
svn path=/trunk/; revision=1247
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 94657fef63..e781124e3b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,7 @@ INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir)/camel \ LDADD = \ $(top_builddir)/camel/libcamel.la \ $(GNOME_LIBDIR) \ - $(GNOMEUI_LIBS) $(INTLLIBS) + $(GNOMEUI_LIBS) $(INTLLIBS) $(PTHREAD_LIB) # $(BONOBO_LIBS) @@ -15,7 +15,7 @@ test4_LDADD = \ $(top_builddir)/camel/libcamel.la \ $(top_builddir)/camel/providers/MH/libcamelmh.la \ $(GNOME_LIBDIR) \ - $(GNOMEUI_LIBS) $(INTLLIBS) + $(GNOMEUI_LIBS) $(INTLLIBS) $(PTHREAD_LIB) noinst_PROGRAMS = \ @@ -23,5 +23,4 @@ noinst_PROGRAMS = \ test2 \ test3 \ test4 \ - test7 \ - test8 + test7 |