source: trunk/third/gtkhtml/macros/gnome-pthread-check.m4 @ 16767

Revision 16767, 491 bytes checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16766, which included commits to RCS files with non-trunk default branches.
Line 
1dnl
2dnl And better, use gthreads instead...
3dnl
4
5AC_DEFUN([GNOME_PTHREAD_CHECK],[
6        PTHREAD_LIB=""
7        AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread",
8                [AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads",
9                    [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r",
10                        [AC_CHECK_LIB(pthread, __pthread_attr_init_system, PTHREAD_LIB="-lpthread",
11                                [AC_CHECK_FUNC(pthread_create)]
12                        )]
13                    )]
14                )]
15        )
16        AC_SUBST(PTHREAD_LIB)
17        AC_PROVIDE([GNOME_PTHREAD_CHECK])
18])
Note: See TracBrowser for help on using the repository browser.