aboutsummaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-12-28 05:06:21 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-12-28 06:12:14 +0800
commit4bd4e95a27dcecb2ec299ef5a2163831d47ea825 (patch)
tree9f08138e436cf34c468f4c4cd1aa58c22693a67c /m4
parent3804965c40f808fbd2dfde2ead05da239cf0ee35 (diff)
downloadgsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar.gz
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar.bz2
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar.lz
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar.xz
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.tar.zst
gsoc2013-evolution-4bd4e95a27dcecb2ec299ef5a2163831d47ea825.zip
Remove more unneeded gunk from configure.ac.
Diffstat (limited to 'm4')
-rw-r--r--m4/evo_pthread_check.m416
1 files changed, 0 insertions, 16 deletions
diff --git a/m4/evo_pthread_check.m4 b/m4/evo_pthread_check.m4
deleted file mode 100644
index 5a96fc53e2..0000000000
--- a/m4/evo_pthread_check.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-dnl EVO_PTHREAD_CHECK
-#serial 0.1
-AC_DEFUN([EVO_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([EVO_PTHREAD_CHECK])
-])