m4/gnome-pthread-check.m4

Sun, 15 Jan 2006 23:10:17 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Sun, 15 Jan 2006 23:10:17 +0000
changeset 12888
6fedd1f47fe0
parent 2
62fbb00c531a
permissions
-rw-r--r--

[gaim-migrate @ 15241]
Sadrul fixed bug #1406201

dnl
dnl And better, use gthreads instead...
dnl

AC_DEFUN([GNOME_PTHREAD_CHECK],[
	PTHREAD_LIB=""
	AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread",
		[AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads",
		    [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r",
			[AC_CHECK_FUNC(pthread_create)]
		    )]
		)]
	)
	AC_SUBST(PTHREAD_LIB)
	AC_PROVIDE([GNOME_PTHREAD_CHECK])
])

mercurial