aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-09-22 04:40:27 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-09-22 04:40:27 +0800
commita8ccf540137ec5fa18a00a0a8f4819ab43806a30 (patch)
tree253a0be3c01088df224156cb56e8d5033cce207f /tests
parent9da28b316177dad8cbc788906e6c8357cc3a3082 (diff)
downloadgsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar
gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.gz
gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.bz2
gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.lz
gsoc2013-evolution-a8ccf540137ec5fa18a00a0a8f4819ab43806a30.tar.xz
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')
-rw-r--r--tests/Makefile.am7
-rw-r--r--tests/ui-tests/Makefile.am2
2 files changed, 4 insertions, 5 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
diff --git a/tests/ui-tests/Makefile.am b/tests/ui-tests/Makefile.am
index 8ed5393e8a..c4849e7c3c 100644
--- a/tests/ui-tests/Makefile.am
+++ b/tests/ui-tests/Makefile.am
@@ -7,7 +7,7 @@ INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir)/camel \
LDADD = \
$(top_builddir)/camel/libcamel.la \
$(top_builddir)/camel/providers/MH/libcamelmh.la \
- $(INTLLIBS) $(EXTRA_GNOME_LIBS)
+ $(INTLLIBS) $(EXTRA_GNOME_LIBS) $(PTHREAD_LIB)