m4/gnome-pthread-check.m4

Wed, 31 May 2000 23:08:22 +0000

author
Rob Flynn <gaim@robflynn.com>
date
Wed, 31 May 2000 23:08:22 +0000
changeset 294
ceea77c74f58
parent 2
62fbb00c531a
permissions
-rw-r--r--

[gaim-migrate @ 304]
We dont need gaim to automatically check for new versions by default :)

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