comparison configure.in @ 246:b024c25e0071

Check for pthread.h
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 21 Dec 2004 16:38:00 +0000
parents 5c76fec807c1
children 98279d92a78b
comparison
equal deleted inserted replaced
245:8aea483e9016 246:b024c25e0071
4 4
5 dnl Require autoconf 2.56 or later 5 dnl Require autoconf 2.56 or later
6 AC_PREREQ(2.56) 6 AC_PREREQ(2.56)
7 7
8 dnl Initialize 8 dnl Initialize
9 AC_INIT([XMMS-SID], [0.8.0beta13], [ccr@tnsp.org]) 9 AC_INIT([XMMS-SID], [0.8.0beta14], [ccr@tnsp.org])
10 AC_COPYRIGHT([[(C) 2003-2004 Matti 'ccr' Hämäläinen]]) 10 AC_COPYRIGHT([[(C) 2003-2004 Matti 'ccr' Hämäläinen]])
11 AC_CONFIG_SRCDIR([src/xmms-sid.h]) 11 AC_CONFIG_SRCDIR([src/xmms-sid.h])
12 AM_INIT_AUTOMAKE 12 AM_INIT_AUTOMAKE
13 AC_CONFIG_HEADERS([src/config.h]) 13 AC_CONFIG_HEADERS([src/config.h])
14 14
44 44
45 45
46 dnl *** 46 dnl ***
47 dnl *** Checks for generic libraries 47 dnl *** Checks for generic libraries
48 dnl *** 48 dnl ***
49 AC_CHECK_HEADER(pthread.h,,AC_MSG_ERROR([*** POSIX thread support not found. Strange, maybe you don't have some development packages installed?]))
49 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/)])) 50 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/)]))
50 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) 51 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)
51 52
52 53
53 dnl *** 54 dnl ***