aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-pthread-check.m4
diff options
context:
space:
mode:
authorgfarris <gfarris@src.gnome.org>2001-12-04 12:46:41 +0800
committergfarris <gfarris@src.gnome.org>2001-12-04 12:46:41 +0800
commitedd7c48be63e486f0c8c424fdc556c57503c4374 (patch)
treef2f245320b0bc90a72dd0ef4b3d977bc8a9bc051 /macros/gnome-pthread-check.m4
parent4afdf27f16d59449354dd3b5d71248b750c0a20b (diff)
downloadgsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar.gz
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar.bz2
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar.lz
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar.xz
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.tar.zst
gsoc2013-evolution-edd7c48be63e486f0c8c424fdc556c57503c4374.zip
*** empty log message ***
svn path=/trunk/; revision=14857
Diffstat (limited to 'macros/gnome-pthread-check.m4')
-rw-r--r--macros/gnome-pthread-check.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/macros/gnome-pthread-check.m4 b/macros/gnome-pthread-check.m4
deleted file mode 100644
index 5a1afee014..0000000000
--- a/macros/gnome-pthread-check.m4
+++ /dev/null
@@ -1,18 +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_LIB(pthread, __pthread_attr_init_system, PTHREAD_LIB="-lpthread",
- [AC_CHECK_FUNC(pthread_create)]
- )]
- )]
- )]
- )
- AC_SUBST(PTHREAD_LIB)
- AC_PROVIDE([GNOME_PTHREAD_CHECK])
-])