unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* configure.in: Look for flex
@ 2005-06-15 11:47 Ludovic Courtès
  2005-06-15 21:40 ` Kevin Ryde
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2005-06-15 11:47 UTC (permalink / raw)


Hi,

The following change updates `README' and `configure.in' so that they
mention flex.

Thanks,
Ludovic.


2005-06-16  Ludovic Courtès  <ludovic.courtes@laas.fr>

	* configure.in:  Look for `flex'.

	* README:  Mention flex as a requirement.


Index: README
===================================================================
RCS file: /cvsroot/guile/guile/guile-core/README,v
retrieving revision 1.98
diff -u -B -b -r1.98 README
--- README	8 Mar 2005 00:54:46 -0000	1.98
+++ README	15 Jun 2005 11:40:03 -0000
@@ -61,6 +61,8 @@
     libltdl is used for loading extensions at run-time.  It is
     available from http://www.gnu.org/software/libtool/
 
+  - flex, a fast lexical analyzer generator, available from
+    http://www.gnu.org/software/flex/
 
 Special Instructions For Some Systems =====================================
 
Index: configure.in
===================================================================
RCS file: /cvsroot/guile/guile/guile-core/configure.in,v
retrieving revision 1.267
diff -u -B -b -r1.267 configure.in
--- configure.in	5 Jun 2005 18:15:21 -0000	1.267
+++ configure.in	15 Jun 2005 11:40:03 -0000
@@ -77,6 +77,11 @@
 AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
 AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
 
+AC_CHECK_PROG([have_flex], [flex], [yes], [no])
+if test "x$have_flex" = "xno"; then
+  AC_MSG_ERROR([flex not found.  See README.])
+fi
+
 AM_PATH_LISPDIR
 


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-09-04 23:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-15 11:47 configure.in: Look for flex Ludovic Courtès
2005-06-15 21:40 ` Kevin Ryde
2005-06-15 22:28   ` Rob Browning
2005-06-15 23:21     ` Kevin Ryde
2005-06-16  7:56   ` Ludovic Courtès
2005-06-16 23:53     ` Kevin Ryde
2005-06-17  7:19       ` Ludovic Courtès
2005-09-04 23:16         ` Marius Vollmer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).