From b31d5eb2223e303efd7c039881287d0d43f53cb5 Mon Sep 17 00:00:00 2001
From: Per Hedbor <ph@opera.com>
Date: Sun, 24 Nov 1996 15:37:07 +0100
Subject: [PATCH] =?UTF-8?q?Ordningen=20mellan=20pthreads=20och=20threads?=
 =?UTF-8?q?=20=C3=A4ndrad?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Rev: src/modules/spider/configure.in:1.5
---
 src/modules/spider/configure.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/spider/configure.in b/src/modules/spider/configure.in
index 784f0c2a72..67002d6dd0 100644
--- a/src/modules/spider/configure.in
+++ b/src/modules/spider/configure.in
@@ -3,12 +3,12 @@ AC_INIT(spider.c)
 AC_PROG_CC
 AC_PROG_RANLIB
 
-AC_CHECK_LIB(thread, mutex_unlock)
+AC_CHECK_LIB(pthread, pthread_mutex_unlock)
 AC_CHECK_LIB(socket, socket)
 AC_CHECK_LIB(nsl, gethostbyname)
 
-if test x$ac_cv_lib_thread_mutex_unlock = xno ;  then
-  AC_CHECK_LIB(pthread, pthread_mutex_unlock)
+if test x$ac_cv_lib_pthread_pthread_mutex_unlock = xno ;  then
+  AC_CHECK_LIB(thread, mutex_unlock)
 fi
 
 AC_HAVE_HEADERS(syslog.h sys/syslog.h arpa/inet.h sys/socketvar.h \
-- 
GitLab