fix a typo in the autoconf script that comes with 3.22.27 and 3.22.29,

ptread_attr_setscope -> pthread_attr_setscope
From: MySQL mailing list via Peter Strömberg <peter.stromberg@commentor.se>
This commit is contained in:
brad 2000-01-04 18:27:58 +00:00
parent 713b891944
commit 60e62032b0

View File

@ -1,5 +1,5 @@
--- configure.orig Sat Jan 1 11:33:47 2000
+++ configure Mon Jan 3 14:24:18 2000
+++ configure Tue Jan 4 12:42:57 2000
@@ -2740,7 +2740,7 @@
;;
esac
@ -79,3 +79,12 @@
# Check whether --with-debug or --without-debug was given.
if test "${with_debug+set}" = set; then
withval="$with_debug"
@@ -7964,7 +7917,7 @@
#include <pthread.h>
int main() {
pthread_attr_t thr_attr;
-ptread_attr_setscope(&thr_attr,0);
+pthread_attr_setscope(&thr_attr,0);
; return 0; }
EOF
if { (eval echo configure:7971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then