summaryrefslogtreecommitdiffstats
path: root/src/tests/gss-threads
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/gss-threads')
-rw-r--r--src/tests/gss-threads/ChangeLog6
-rw-r--r--src/tests/gss-threads/Makefile.in4
2 files changed, 9 insertions, 1 deletions
diff --git a/src/tests/gss-threads/ChangeLog b/src/tests/gss-threads/ChangeLog
index 11e71b730e..5d6d0c7f93 100644
--- a/src/tests/gss-threads/ChangeLog
+++ b/src/tests/gss-threads/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-25 Ken Raeburn <raeburn@mit.edu>
+
+ * Makefile.in (all-unix): Use @THREAD_SUPPORT@ and helper targets
+ to build programs only if thread support is enabled.
+ (all-unix-0, all-unix-1): New helper targets.
+
2005-02-11 Ken Raeburn <raeburn@mit.edu>
* gss-misc.c: Include autoconf.h. If both time.h and sys/time.h
diff --git a/src/tests/gss-threads/Makefile.in b/src/tests/gss-threads/Makefile.in
index 1229081a32..679397af50 100644
--- a/src/tests/gss-threads/Makefile.in
+++ b/src/tests/gss-threads/Makefile.in
@@ -13,7 +13,9 @@ SRCS= $(srcdir)/gss-client.c $(srcdir)/gss-misc.c $(srcdir)/gss-server.c
OBJS= gss-client.o gss-misc.o gss-server.o
-all-unix:: gss-server gss-client
+all-unix:: all-unix-@THREAD_SUPPORT@
+all-unix-1:: gss-server gss-client
+all-unix-0::
all-windows:: $(OUTPRE)gss-server.exe $(OUTPRE)gss-client.exe
gss-server: gss-server.o gss-misc.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)