# HG changeset patch # User Matti Hamalainen # Date 1103647080 0 # Node ID b024c25e0071155ac6aed4eda4cc00fedc7172ab # Parent 8aea483e901640a5c36ae86c633100dd5f49a906 Check for pthread.h diff -r 8aea483e9016 -r b024c25e0071 configure.in --- 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)