Skip to content
Snippets Groups Projects
Commit b31d5eb2 authored by Per Hedbor's avatar Per Hedbor
Browse files

Ordningen mellan pthreads och threads ändrad

Rev: src/modules/spider/configure.in:1.5
parent e6aee5b7
No related branches found
No related tags found
No related merge requests found
...@@ -3,12 +3,12 @@ AC_INIT(spider.c) ...@@ -3,12 +3,12 @@ AC_INIT(spider.c)
AC_PROG_CC AC_PROG_CC
AC_PROG_RANLIB AC_PROG_RANLIB
AC_CHECK_LIB(thread, mutex_unlock) AC_CHECK_LIB(pthread, pthread_mutex_unlock)
AC_CHECK_LIB(socket, socket) AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(nsl, gethostbyname) AC_CHECK_LIB(nsl, gethostbyname)
if test x$ac_cv_lib_thread_mutex_unlock = xno ; then if test x$ac_cv_lib_pthread_pthread_mutex_unlock = xno ; then
AC_CHECK_LIB(pthread, pthread_mutex_unlock) AC_CHECK_LIB(thread, mutex_unlock)
fi fi
AC_HAVE_HEADERS(syslog.h sys/syslog.h arpa/inet.h sys/socketvar.h \ AC_HAVE_HEADERS(syslog.h sys/syslog.h arpa/inet.h sys/socketvar.h \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment