# HG changeset patch # User Matti Hamalainen # Date 1103648045 0 # Node ID 98279d92a78b0e9ee48a2f52e9f2dbc0e03e7cf5 # Parent b024c25e0071155ac6aed4eda4cc00fedc7172ab Fix M4 macro quotations. diff -r b024c25e0071 -r 98279d92a78b configure.in --- a/configure.in Tue Dec 21 16:38:00 2004 +0000 +++ b/configure.in Tue Dec 21 16:54:05 2004 +0000 @@ -46,9 +46,9 @@ 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) +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) dnl ***