Commit 1a2ca86a authored by Jeremy Hylton's avatar Jeremy Hylton

Patch #101936: Auto-detect DEC threads (which need "-threads" argument)

by Thomas Wouters
parent 75f8101c
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -805,6 +805,15 @@ else
LIBS="$LIBS -lthread"
LIBOBJS="$LIBOBJS thread.o"
USE_THREAD_MODULE=""])
if test "$USE_THREAD_MODULE" != "#"
then
# If the above checks didn't disable threads, (at least) OSF1
# needs this '-threads' argument during linking.
case $ac_sys_system in
OSF1) LDLAST=-threads;;
esac
fi
fi
# Check for GC support
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment