Codebase list czmq / debian/4.0.2-8 acinclude.m4
debian/4.0.2-8

Tree @debian/4.0.2-8 (Download .tar.gz)

acinclude.m4 @debian/4.0.2-8raw · 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.])]
    )
])