<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Changing MySQL parser code on Windows &#8211; Build breaks due to Bison</title>
	<atom:link href="http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/feed/" rel="self" type="application/rss+xml" />
	<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/</link>
	<description>Everything In Life Is Random! (Personal and Work)</description>
	<lastBuildDate>Fri, 23 Mar 2012 03:45:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Chris Calender</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-13283</link>
		<dc:creator>Chris Calender</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-13283</guid>
		<description>Thanks Venu!  This has been a very helpful work-around. :)

However, I did recently get to the bottom of this, at least on my system.  So if you&#039;ve installed it to a location with &quot;no&quot; spaces, and still encounter this error, then this is likely to help:

http://www.chriscalender.com/?p=798

(It&#039;s a bit lengthy, so I&#039;ve just posted the url.)</description>
		<content:encoded><![CDATA[<p>Thanks Venu!  This has been a very helpful work-around. <img src='http://venublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>However, I did recently get to the bottom of this, at least on my system.  So if you&#8217;ve installed it to a location with &#8220;no&#8221; spaces, and still encounter this error, then this is likely to help:</p>
<p><a href="http://www.chriscalender.com/?p=798" rel="nofollow">http://www.chriscalender.com/?p=798</a></p>
<p>(It&#8217;s a bit lengthy, so I&#8217;ve just posted the url.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Mariotti</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-13198</link>
		<dc:creator>Steve Mariotti</dc:creator>
		<pubDate>Tue, 28 Jun 2011 19:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-13198</guid>
		<description>I had to put m4.exe in the same directory as my .y grammar to get bison to work.  It wasn&#039;t working in the bin directory with Bison.  Don&#039;t know why.</description>
		<content:encoded><![CDATA[<p>I had to put m4.exe in the same directory as my .y grammar to get bison to work.  It wasn&#8217;t working in the bin directory with Bison.  Don&#8217;t know why.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-9726</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Mon, 29 Mar 2010 12:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-9726</guid>
		<description>Installing Bison&#039;s PATH entry as C:\Progra~1\GnuWin32\bin seems to work for me and removes the need to copy m4.exe locally. Installing bison to c:\gnuwin32 should also work.  The problem as wlad noted is the space in the path to m4.exe.  Oh, and I also had to hunt down an older version of Bison that I&#039;d installed elsewhere and didn&#039;t support the --defines parameter.  Running which m4.exe in a cmd prompt to check you are getting what you expect is a good idea.</description>
		<content:encoded><![CDATA[<p>Installing Bison&#8217;s PATH entry as C:\Progra~1\GnuWin32\bin seems to work for me and removes the need to copy m4.exe locally. Installing bison to c:\gnuwin32 should also work.  The problem as wlad noted is the space in the path to m4.exe.  Oh, and I also had to hunt down an older version of Bison that I&#8217;d installed elsewhere and didn&#8217;t support the &#8211;defines parameter.  Running which m4.exe in a cmd prompt to check you are getting what you expect is a good idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlad</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-9538</link>
		<dc:creator>wlad</dc:creator>
		<pubDate>Mon, 08 Feb 2010 00:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-9538</guid>
		<description>just for completeness, having bison.exe and m4.exe in C:\Gnuwin32\bin (and nowhere else in PATH) works for me.</description>
		<content:encoded><![CDATA[<p>just for completeness, having bison.exe and m4.exe in C:\Gnuwin32\bin (and nowhere else in PATH) works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlad</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-9537</link>
		<dc:creator>wlad</dc:creator>
		<pubDate>Mon, 08 Feb 2010 00:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-9537</guid>
		<description>I&#039;ve seen that with bison installed into default path (with spaces C:\Program Files\...). The bug was apparent in bison 2.4. I filed a bug some half year ago, still no reply). Also QT folks document it here http://trac.webkit.org/wiki/BuildingQtOnWindows. Meanwhile you might want to check which m4.exe bison is looking for, using procmon.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve seen that with bison installed into default path (with spaces C:\Program Files\&#8230;). The bug was apparent in bison 2.4. I filed a bug some half year ago, still no reply). Also QT folks document it here <a href="http://trac.webkit.org/wiki/BuildingQtOnWindows" rel="nofollow">http://trac.webkit.org/wiki/BuildingQtOnWindows</a>. Meanwhile you might want to check which m4.exe bison is looking for, using procmon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nek Melson</title>
		<link>http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/comment-page-1/#comment-9535</link>
		<dc:creator>Nek Melson</dc:creator>
		<pubDate>Sun, 07 Feb 2010 23:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://venublog.com/2010/02/07/changing-mysql-parser-code-on-windows-build-breaks-due-to-bison/#comment-9535</guid>
		<description>Thanks Venu; since an year+ and to build and extend our storage engine, we used to build yacc on Linux and copy the files to Windows; it&#039;s a painful process

I just tried this on Windows 7 and it works</description>
		<content:encoded><![CDATA[<p>Thanks Venu; since an year+ and to build and extend our storage engine, we used to build yacc on Linux and copy the files to Windows; it&#8217;s a painful process</p>
<p>I just tried this on Windows 7 and it works</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.516 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-03-24 06:46:16 -->
<!-- Compression = gzip -->
