90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
CPPLAGS="$CPPFLAGS $PTHREAD_CFLAGS"
LIBS="$LIBS $PTHREAD_LIBS"
], [
AC_MSG_ERROR(No pthreads or other supported threads!)])
;;
esac
AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32")
AC_MSG_CHECKING(for getaddrinfo)
AC_TRY_COMPILE([
#include <stddef.h>
#ifndef _WIN32
#include <sys/types.h>
|
>
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
CPPLAGS="$CPPFLAGS $PTHREAD_CFLAGS"
LIBS="$LIBS $PTHREAD_LIBS"
], [
AC_MSG_ERROR(No pthreads or other supported threads!)])
;;
esac
AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32")
AC_MSG_CHECKING(for getaddrinfo)
AC_TRY_COMPILE([
#include <stddef.h>
#ifndef _WIN32
#include <sys/types.h>
|