1
1

Fix output of configure --help for the --with-threads option to be posix

instead of pthread.  The code expects posix.

This commit was SVN r8130.
Этот коммит содержится в:
Brian Barrett 2005-11-12 03:10:52 +00:00
родитель 5a4b1ebdd4
Коммит 1066518f3b

Просмотреть файл

@ -56,12 +56,12 @@ fi
export HAVE_SOLARIS_THREADS
#
# Ask what threading we want (allow solaris / pthread right now)
# Ask what threading we want (allow solaris / posix right now)
#
AC_MSG_CHECKING([for type of thread support])
AC_ARG_WITH(threads,
AC_HELP_STRING([--with-threads],
[Set thread type (solaris / pthread)]),
[Set thread type (solaris / posix)]),
[THREAD_TYPE=$withval])
if test "$THREAD_TYPE" = "solaris"; then