--enable-thread was broken and this should cure it
Kevin Fisk reported.
This commit is contained in:
10
configure.ac
10
configure.ac
@@ -737,9 +737,17 @@ printf("just fine");
|
|||||||
)
|
)
|
||||||
|
|
||||||
AC_ARG_ENABLE(thread,dnl
|
AC_ARG_ENABLE(thread,dnl
|
||||||
AC_HELP_STRING([--disable-thread],[don't look for thread-safe functions]),
|
AC_HELP_STRING([--disable-thread],[don't look for thread-safe functions])
|
||||||
|
AC_HELP_STRING([--enable-thread],[look for thread-safe functions]),
|
||||||
|
[ case "$enableval" in
|
||||||
|
no)
|
||||||
OPT_THREAD=off
|
OPT_THREAD=off
|
||||||
AC_MSG_WARN(libcurl will not get built using thread-safe functions)
|
AC_MSG_WARN(libcurl will not get built using thread-safe functions)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
if test X"$OPT_THREAD" = Xoff
|
if test X"$OPT_THREAD" = Xoff
|
||||||
|
|||||||
Reference in New Issue
Block a user