Codebase list czmq / upstream/4.1.1 acinclude.m4
upstream/4.1.1

Tree @upstream/4.1.1 (Download .tar.gz)

acinclude.m4 @upstream/4.1.1raw · history · blame

1
2
3
4
5
6
7
AC_DEFUN([AX_PROJECT_LOCAL_HOOK], [
    AC_CHECK_HEADERS(pthread.h)
    AC_CHECK_LIB([pthread], [pthread_create],
        [CFLAGS="${CFLAGS} -pthread"],
        [AC_MSG_WARN([cannot link with -pthread.])]
    )
])