Revision: 1953
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1953&view=rev
Author:   tmzullinger
Date:     2008-03-29 11:31:44 -0700 (Sat, 29 Mar 2008)

Log Message:
-----------
Handle the case where LEX is a path, from NetBSD via Klaus Heinz (fixes SF 
tracker #1920207)

Modified Paths:
--------------
    gtkpod/trunk/ChangeLog
    gtkpod/trunk/configure.in

Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog      2008-03-29 17:34:57 UTC (rev 1952)
+++ gtkpod/trunk/ChangeLog      2008-03-29 18:31:44 UTC (rev 1953)
@@ -1,3 +1,8 @@
+2008-03-29  Todd Zullinger  <tmzullinger at users.sourceforge.net>
+
+       * configure.in: Handle the case where LEX is a path, from
+         NetBSD via Klaus Heinz (fixes SF tracker #1920207)
+
 2008-03-17 P.G. Richardson <phantom_sf at users.sourceforge.net>
 
   * src/display_photo.c

Modified: gtkpod/trunk/configure.in
===================================================================
--- gtkpod/trunk/configure.in   2008-03-29 17:34:57 UTC (rev 1952)
+++ gtkpod/trunk/configure.in   2008-03-29 18:31:44 UTC (rev 1953)
@@ -52,11 +52,13 @@
 
 dnl we need 'flex'
 AM_PROG_LEX
-if ! test "y$LEX" = "yflex"; then
-    if ! test "y$LEX" = "ylex"; then
+case "$LEX" in
+flex|*/flex|lex|*/lex)
+       ;;
+*)
         AC_MSG_FAILURE([*** flex or lex required])
-    fi
-fi
+       ;;
+esac
 
 dnl Retrieve the path of mount and umount binaries
 AC_PATH_PROG(MOUNT, mount)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to