summaryrefslogtreecommitdiff
path: root/macros2/gnome-pthread-check.m4
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-10-02 19:20:02 +0000
committernobody <nobody@localhost>2001-10-02 19:20:02 +0000
commit0d74e298558864151356bc29a8e1485755efdc52 (patch)
tree8f5f9b7cbb8614876e1daeaccef93d7ded95ca3f /macros2/gnome-pthread-check.m4
parent7842363032dd621ce3485a0059da7ddab20d36da (diff)
downloadgnome-common-0d74e298558864151356bc29a8e1485755efdc52.tar.gz
This commit was manufactured by cvs2svn to create tag 'GDM_2_2_4_2'.GDM_2_2_4_2
svn path=/tags/GDM_2_2_4_2/; revision=2023
Diffstat (limited to 'macros2/gnome-pthread-check.m4')
-rw-r--r--macros2/gnome-pthread-check.m416
1 files changed, 0 insertions, 16 deletions
diff --git a/macros2/gnome-pthread-check.m4 b/macros2/gnome-pthread-check.m4
deleted file mode 100644
index a4eb3b4..0000000
--- a/macros2/gnome-pthread-check.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-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])
-])