~ubuntu-branches/ubuntu/lucid/gco/lucid

« back to all changes in this revision

Viewing changes to macros/gnome-pthread-check.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2006-08-31 12:35:42 UTC
  • mfrom: (3.1.2 edgy)
  • Revision ID: james.westby@ubuntu.com-20060831123542-mc4q70vmhci7jkx7
Tags: 0.5.0-6
Update package to the last python policy, courtesy of Pierre Habouzit
(Closes: #380807).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl
2
 
dnl And better, use gthreads instead...
3
 
dnl
4
 
 
5
 
AC_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_FUNC(pthread_create)]
11
 
                    )]
12
 
                )]
13
 
        )
14
 
        AC_SUBST(PTHREAD_LIB)
15
 
        AC_PROVIDE([GNOME_PTHREAD_CHECK])
16
 
])