changeset 246:b024c25e0071

Check for pthread.h
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 21 Dec 2004 16:38:00 +0000
parents 8aea483e9016
children 98279d92a78b
files configure.in
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Tue Dec 21 16:37:03 2004 +0000
+++ b/configure.in	Tue Dec 21 16:38:00 2004 +0000
@@ -6,7 +6,7 @@
 AC_PREREQ(2.56)
 
 dnl Initialize
-AC_INIT([XMMS-SID], [0.8.0beta13], [ccr@tnsp.org])
+AC_INIT([XMMS-SID], [0.8.0beta14], [ccr@tnsp.org])
 AC_COPYRIGHT([[(C) 2003-2004 Matti 'ccr' Hämäläinen]])
 AC_CONFIG_SRCDIR([src/xmms-sid.h])
 AM_INIT_AUTOMAKE
@@ -46,6 +46,7 @@
 dnl ***
 dnl *** Checks for generic libraries
 dnl ***
+AC_CHECK_HEADER(pthread.h,,AC_MSG_ERROR([*** POSIX thread support not found. Strange, maybe you don't have some development packages installed?]))
 AM_PATH_GLIB([1.2.5],,AC_MSG_ERROR([*** GLib >= 1.2.5 not found. You either don't have GLib at all or your GLib is too old. Latest GLib can be found from Gtk+ homepages (http://www.gtk.org/)]))
 AM_PATH_GTK([1.2.5],,AC_MSG_ERROR([*** Gtk+ >= 1.2.5 not found. You either don't have Gtk+ at all or your Gtk+ is too old. Latest Gtk+ can be found from Gtk+ homepages (http://www.gtk.org/)]), gthread)