<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1796</id>
	<title>Nabble - Gnu - Source Highlight</title>
	<updated>2009-11-19T13:41:11Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Gnu---Source-Highlight-f1796.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Gnu---Source-Highlight-f1796.html" />
	<subtitle type="html">Gnu Source Highlight produces a document with syntax highlighting. Gnu - Source Highlight home is &lt;a href=&quot;http://www.gnu.org/software/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26434616</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-19T13:41:11Z</published>
	<updated>2009-11-19T13:41:11Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">so the test.cpp example which is in the same directory of the pro file 
&lt;br&gt;seems to work right?
&lt;br&gt;&lt;br&gt;Forgive me if I say something obvious, but do you run qmake with 
&lt;br&gt;-recursive? &amp;nbsp;And, most of all, these
&lt;br&gt;&lt;br&gt;debug: LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;-llibboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&lt;br&gt;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;-llibboost_regex-mgw34-mt-1_40
&lt;br&gt;&lt;br&gt;INCLUDEPATH += 
&lt;br&gt;H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&lt;br&gt;should be visible in the subdirectories' pro files, and this does not 
&lt;br&gt;happen automatic;
&lt;br&gt;&lt;br&gt;thus, either you add these specifications in the defines.pri (which is 
&lt;br&gt;automatically included in the subdirectories' pro files), or you specify 
&lt;br&gt;this values on the command line when running qmake (and you also specify 
&lt;br&gt;-recursive).
&lt;br&gt;&lt;br&gt;is this your case?
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; If I compile your library with this code inserted in the main .pro file 
&lt;br&gt;&amp;gt; it does not include the boost path during compilation:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; debug: LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt; -llibboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt; -llibboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; INCLUDEPATH += 
&lt;br&gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; which means it fails as before.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; However I can compile and link the boost example successfully using this 
&lt;br&gt;&amp;gt; qmake code:
&lt;br&gt;&amp;gt; (which is the same as above, just more code for the destination of files)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; CONFIG += release
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; CONFIG -= debug
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; CONFIG -= qt
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; CONFIG += thread warn_on
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; TEMPLATE = app
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; TARGET = test
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Define Variables
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; BUILD_DIR = build
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; BIN_DIR = bin
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Target Directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; debug:DESTDIR = $${BIN_DIR}/mingw/debug/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; release:DESTDIR = $${BIN_DIR}/mingw/release/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Objects Directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; debug{
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/debug/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; release{
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/release/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Include directories
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; INCLUDEPATH += 
&lt;br&gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Libaries
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; debug: LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt; -llibboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt; -llibboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # Sources
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; # -------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; SOURCES += test.cpp
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; so somewhere in the qmake code of your library the INCLUDEPATH is 
&lt;br&gt;&amp;gt; overwritten is assume.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt; Matthias
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26434616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26434191</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-19T13:11:33Z</published>
	<updated>2009-11-19T13:11:33Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">If I compile your library with this code inserted in the main .pro file 
&lt;br&gt;it does not include the boost path during compilation:
&lt;br&gt;&lt;br&gt;debug: LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;-llibboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&lt;br&gt;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;-llibboost_regex-mgw34-mt-1_40
&lt;br&gt;&lt;br&gt;INCLUDEPATH += 
&lt;br&gt;H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&lt;br&gt;&lt;br&gt;which means it fails as before.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;However I can compile and link the boost example successfully using this 
&lt;br&gt;qmake code:
&lt;br&gt;(which is the same as above, just more code for the destination of files)
&lt;br&gt;&lt;br&gt;CONFIG += release
&lt;br&gt;&lt;br&gt;CONFIG -= debug
&lt;br&gt;&lt;br&gt;CONFIG -= qt
&lt;br&gt;&lt;br&gt;CONFIG += thread warn_on
&lt;br&gt;&lt;br&gt;TEMPLATE = app
&lt;br&gt;&lt;br&gt;TARGET = test
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Define Variables
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;BUILD_DIR = build
&lt;br&gt;&lt;br&gt;BIN_DIR = bin
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Target Directory
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;debug:DESTDIR = $${BIN_DIR}/mingw/debug/
&lt;br&gt;&lt;br&gt;release:DESTDIR = $${BIN_DIR}/mingw/release/
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Objects Directory
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;debug{
&lt;br&gt;&lt;br&gt;OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/debug/
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;release{
&lt;br&gt;&lt;br&gt;OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/release/
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Include directories
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;INCLUDEPATH += 
&lt;br&gt;H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Libaries
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;debug: LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;-llibboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&lt;br&gt;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;-llibboost_regex-mgw34-mt-1_40
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;# Sources
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;SOURCES += test.cpp
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;so somewhere in the qmake code of your library the INCLUDEPATH is 
&lt;br&gt;overwritten is assume.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434191&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26434191.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26431623</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-19T10:34:52Z</published>
	<updated>2009-11-19T10:34:52Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Lorenzo Bettini wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini wrote:
&lt;br&gt;&amp;gt;&amp;gt; Here you find the version I've been working on this evening under 
&lt;br&gt;&amp;gt;&amp;gt; mingw/windows
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; and it solves the errors with mkdir and other things.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; For the moment, use CONFIG+=static and do not build dll (since they 
&lt;br&gt;&amp;gt;&amp;gt; use a different naming and it still has to be tweaked a little bit, 
&lt;br&gt;&amp;gt;&amp;gt; not to mention that I know exceptions across dlls do not work well...).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; oh, and I forgot:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; make sure to run qmake passing USE_MINGW=1 so that it solves the problem 
&lt;br&gt;&amp;gt; with mkdir.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;Another thing: use this modified version of defines.pri (which sets 
&lt;br&gt;CONFIG += console), otherwise no output is shown on stdout on windows (I 
&lt;br&gt;was about to go mad about that, since I couldn't really figure out what 
&lt;br&gt;was happening ;)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br /&gt;VERSION = 3.0.1
&lt;br&gt;&lt;br&gt;CONFIG -= qt
&lt;br&gt;CONFIG += console
&lt;br&gt;&lt;br&gt;DEFINES += ABSOLUTEDATADIR=\\\&amp;quot;/usr/local/share/source-highlight/\\\&amp;quot; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; VERSION=\\\&amp;quot;3.1.2\\\&amp;quot; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; LIBRARY_VERSION=\\\&amp;quot;3.0.0\\\&amp;quot; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; PACKAGE=\\\&amp;quot;source-highlight\\\&amp;quot; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; RELATIVEDATADIR=\\\&amp;quot;../share/source-highlight\\\&amp;quot;
&lt;br&gt;&lt;br&gt;LIBRARY_NAME = source-highlight
&lt;br&gt;&lt;br&gt;ADDITIONAL_LIBRARIES = -lboost_regex
&lt;br&gt;&lt;br&gt;#!isEmpty(USE_MINGW) {
&lt;br&gt;#LIBRARY_LIB = $${LIBRARY_NAME}3
&lt;br&gt;#} else {
&lt;br&gt;LIBRARY_LIB = $${LIBRARY_NAME}
&lt;br&gt;#}
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26431623&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26431623.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26418130</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T16:01:45Z</published>
	<updated>2009-11-18T16:01:45Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Lorenzo Bettini wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Here you find the version I've been working on this evening under 
&lt;br&gt;&amp;gt; mingw/windows
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and it solves the errors with mkdir and other things.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; For the moment, use CONFIG+=static and do not build dll (since they use 
&lt;br&gt;&amp;gt; a different naming and it still has to be tweaked a little bit, not to 
&lt;br&gt;&amp;gt; mention that I know exceptions across dlls do not work well...).
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;oh, and I forgot:
&lt;br&gt;&lt;br&gt;make sure to run qmake passing USE_MINGW=1 so that it solves the problem 
&lt;br&gt;with mkdir.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26418130&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26418130.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26417828</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T15:35:38Z</published>
	<updated>2009-11-18T15:35:38Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Here you find the version I've been working on this evening under 
&lt;br&gt;mingw/windows
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&lt;br&gt;&lt;br&gt;and it solves the errors with mkdir and other things.
&lt;br&gt;&lt;br&gt;For the moment, use CONFIG+=static and do not build dll (since they use 
&lt;br&gt;a different naming and it still has to be tweaked a little bit, not to 
&lt;br&gt;mention that I know exceptions across dlls do not work well...).
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26417828&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26417828.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26417770</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T15:30:00Z</published>
	<updated>2009-11-18T15:30:00Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Lorenzo Bettini wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; where the include files are, since it does not find them.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you should pass to qmake these options
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am not using linux, so it reads
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;debug: &amp;nbsp;LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; yes, it's the same, I just meant that instead of polluting the .pro 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; file you can pass these options to qmake at the command line :)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; note that I copy the library file to a new location, because the 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; compilation destination path of boost is very strange.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; The include is added via
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; INCLUDEPATH += &amp;nbsp;../boost_1_40_0
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; or the full path. However during compilation the boost library 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; headers are not found.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; you have to put in the INCLUDEPATH (which I usually write as INCPATH, 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; are you sure it's the same?) the path where the boost subdirectory is.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For instance, if regex.hpp is in
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; /my/path/boost_1_40_0/include/boost
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; then you need to specify as include path
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; /my/path/boost_1_40_0/include/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; since boost header files are included as follows
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; #include &amp;lt;boost/regex.hpp&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; As for the compilation and installation of boost you can still refer 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to that blog post since those flags are for bootstrap and bjam anyway.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I understand the path-thing. In my case the file regex.hpp is in
&lt;br&gt;&amp;gt;&amp;gt; H:\matthias\Documents\Dev\CPP\SVN\library\source\boost_1_40_0\boost
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; which is why have set up
&lt;br&gt;&amp;gt;&amp;gt; INCLUDEPATH += 
&lt;br&gt;&amp;gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; but that does not work. The error in qtcreator is:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/source-highlight-3.1.2/lib/srchilite/substfun.h:13: 
&lt;br&gt;&amp;gt;&amp;gt; boost/regex.hpp: No such file or directory
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The compilation output however does not include this path, which I do 
&lt;br&gt;&amp;gt;&amp;gt; not understand:
&lt;br&gt;&amp;gt;&amp;gt; g++ -c -g -frtti -fexceptions -mthreads -Wall 
&lt;br&gt;&amp;gt;&amp;gt; -DABSOLUTEDATADIR=\&amp;quot;/usr/local/share/source-highlight/\&amp;quot; 
&lt;br&gt;&amp;gt;&amp;gt; -DVERSION=\&amp;quot;3.1.2\&amp;quot; -DLIBRARY_VERSION=\&amp;quot;3.0.0\&amp;quot; 
&lt;br&gt;&amp;gt;&amp;gt; -DPACKAGE=\&amp;quot;source-highlight\&amp;quot; 
&lt;br&gt;&amp;gt;&amp;gt; -DRELATIVEDATADIR=\&amp;quot;../share/source-highlight\&amp;quot; -DQT_DLL -DQT_GUI_LIB 
&lt;br&gt;&amp;gt;&amp;gt; -DQT_CORE_LIB -DQT_THREAD_SUPPORT 
&lt;br&gt;&amp;gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/QtCore' 
&lt;br&gt;&amp;gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/QtGui' 
&lt;br&gt;&amp;gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include' 
&lt;br&gt;&amp;gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/ActiveQt' -I'debug' 
&lt;br&gt;&amp;gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/mkspecs/win32-g++' -o 
&lt;br&gt;&amp;gt;&amp;gt; debug/substfun.o substfun.cpp
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;and sorry if I insist on this, but you should try with the simple 
&lt;br&gt;example of regexp
&lt;br&gt;&lt;br&gt;#include &amp;lt;boost/regex.hpp&amp;gt;
&lt;br&gt;#include &amp;lt;iostream&amp;gt;
&lt;br&gt;#include &amp;lt;string&amp;gt;
&lt;br&gt;&lt;br&gt;int main()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;std::string line;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;boost::regex pat( &amp;quot;^Subject: (Re: |Aw: )*(.*)&amp;quot; );
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;while (std::cin)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;std::getline(std::cin, line);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;boost::smatch matches;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (boost::regex_match(line, matches, pat))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;std::cout &amp;lt;&amp;lt; matches[2] &amp;lt;&amp;lt; std::endl;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;in a single file (mytest.cpp) and compile it manually with the -I and -L
&lt;br&gt;&lt;br&gt;g++ -IH:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/ 
&lt;br&gt;mytest.cpp -o mytest 
&lt;br&gt;-LH:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/lib 
&lt;br&gt;-lboost_regex
&lt;br&gt;&lt;br&gt;otherwise you might not understand what is going wrong... :)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26417770&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26417770.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26417645</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T15:20:14Z</published>
	<updated>2009-11-18T15:20:14Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; where the include files are, since it does not find them.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you should pass to qmake these options
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I am not using linux, so it reads
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;debug: &amp;nbsp;LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; yes, it's the same, I just meant that instead of polluting the .pro 
&lt;br&gt;&amp;gt;&amp;gt; file you can pass these options to qmake at the command line :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; note that I copy the library file to a new location, because the 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; compilation destination path of boost is very strange.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The include is added via
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; INCLUDEPATH += &amp;nbsp;../boost_1_40_0
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; or the full path. However during compilation the boost library 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; headers are not found.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; you have to put in the INCLUDEPATH (which I usually write as INCPATH, 
&lt;br&gt;&amp;gt;&amp;gt; are you sure it's the same?) the path where the boost subdirectory is.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; For instance, if regex.hpp is in
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /my/path/boost_1_40_0/include/boost
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; then you need to specify as include path
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /my/path/boost_1_40_0/include/
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; since boost header files are included as follows
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; #include &amp;lt;boost/regex.hpp&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; As for the compilation and installation of boost you can still refer 
&lt;br&gt;&amp;gt;&amp;gt; to that blog post since those flags are for bootstrap and bjam anyway.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I understand the path-thing. In my case the file regex.hpp is in
&lt;br&gt;&amp;gt; H:\matthias\Documents\Dev\CPP\SVN\library\source\boost_1_40_0\boost
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; which is why have set up
&lt;br&gt;&amp;gt; INCLUDEPATH += 
&lt;br&gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; but that does not work. The error in qtcreator is:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; H:/matthias/Documents/Dev/CPP/SVN/library/source/source-highlight-3.1.2/lib/srchilite/substfun.h:13: 
&lt;br&gt;&amp;gt; boost/regex.hpp: No such file or directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The compilation output however does not include this path, which I do 
&lt;br&gt;&amp;gt; not understand:
&lt;br&gt;&amp;gt; g++ -c -g -frtti -fexceptions -mthreads -Wall 
&lt;br&gt;&amp;gt; -DABSOLUTEDATADIR=\&amp;quot;/usr/local/share/source-highlight/\&amp;quot; 
&lt;br&gt;&amp;gt; -DVERSION=\&amp;quot;3.1.2\&amp;quot; -DLIBRARY_VERSION=\&amp;quot;3.0.0\&amp;quot; 
&lt;br&gt;&amp;gt; -DPACKAGE=\&amp;quot;source-highlight\&amp;quot; 
&lt;br&gt;&amp;gt; -DRELATIVEDATADIR=\&amp;quot;../share/source-highlight\&amp;quot; -DQT_DLL -DQT_GUI_LIB 
&lt;br&gt;&amp;gt; -DQT_CORE_LIB -DQT_THREAD_SUPPORT 
&lt;br&gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/QtCore' 
&lt;br&gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/QtGui' 
&lt;br&gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include' 
&lt;br&gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/include/ActiveQt' -I'debug' 
&lt;br&gt;&amp;gt; -I'c:/Programme/Qt/SDK/2009.04/qt/mkspecs/win32-g++' -o debug/substfun.o 
&lt;br&gt;&amp;gt; substfun.cpp
&lt;/div&gt;&lt;br&gt;have you written INCLUDEPATH in the .pro file? &amp;nbsp;Or are you passing it to 
&lt;br&gt;qmake at the command line?
&lt;br&gt;&lt;br&gt;Please, also try with INCPATH instead of INCLUDEPATH.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;P.S. at least this is not my fault, but qmake's one ;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26417645&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26417645.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26416924</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T14:26:33Z</published>
	<updated>2009-11-18T14:26:33Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; where the include files are, since it does not find them.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; you should pass to qmake these options
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I am not using linux, so it reads
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;debug: &amp;nbsp;LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt;&amp;gt; -lboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; yes, it's the same, I just meant that instead of polluting the .pro 
&lt;br&gt;&amp;gt; file you can pass these options to qmake at the command line :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; note that I copy the library file to a new location, because the 
&lt;br&gt;&amp;gt;&amp;gt; compilation destination path of boost is very strange.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The include is added via
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; INCLUDEPATH += &amp;nbsp;../boost_1_40_0
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; or the full path. However during compilation the boost library 
&lt;br&gt;&amp;gt;&amp;gt; headers are not found.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; you have to put in the INCLUDEPATH (which I usually write as INCPATH, 
&lt;br&gt;&amp;gt; are you sure it's the same?) the path where the boost subdirectory is.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For instance, if regex.hpp is in
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /my/path/boost_1_40_0/include/boost
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; then you need to specify as include path
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /my/path/boost_1_40_0/include/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; since boost header files are included as follows
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #include &amp;lt;boost/regex.hpp&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As for the compilation and installation of boost you can still refer 
&lt;br&gt;&amp;gt; to that blog post since those flags are for bootstrap and bjam anyway.
&lt;br&gt;&amp;gt;
&lt;/div&gt;I understand the path-thing. In my case the file regex.hpp is in
&lt;br&gt;H:\matthias\Documents\Dev\CPP\SVN\library\source\boost_1_40_0\boost
&lt;br&gt;&lt;br&gt;which is why have set up
&lt;br&gt;INCLUDEPATH += 
&lt;br&gt;H:/matthias/Documents/Dev/CPP/SVN/library/source/boost_1_40_0/
&lt;br&gt;&lt;br&gt;but that does not work. The error in qtcreator is:
&lt;br&gt;&lt;br&gt;H:/matthias/Documents/Dev/CPP/SVN/library/source/source-highlight-3.1.2/lib/srchilite/substfun.h:13: 
&lt;br&gt;boost/regex.hpp: No such file or directory
&lt;br&gt;&lt;br&gt;&lt;br&gt;The compilation output however does not include this path, which I do 
&lt;br&gt;not understand:
&lt;br&gt;g++ -c -g -frtti -fexceptions -mthreads -Wall 
&lt;br&gt;-DABSOLUTEDATADIR=\&amp;quot;/usr/local/share/source-highlight/\&amp;quot; 
&lt;br&gt;-DVERSION=\&amp;quot;3.1.2\&amp;quot; -DLIBRARY_VERSION=\&amp;quot;3.0.0\&amp;quot; 
&lt;br&gt;-DPACKAGE=\&amp;quot;source-highlight\&amp;quot; 
&lt;br&gt;-DRELATIVEDATADIR=\&amp;quot;../share/source-highlight\&amp;quot; -DQT_DLL -DQT_GUI_LIB 
&lt;br&gt;-DQT_CORE_LIB -DQT_THREAD_SUPPORT 
&lt;br&gt;-I'c:/Programme/Qt/SDK/2009.04/qt/include/QtCore' 
&lt;br&gt;-I'c:/Programme/Qt/SDK/2009.04/qt/include/QtGui' 
&lt;br&gt;-I'c:/Programme/Qt/SDK/2009.04/qt/include' 
&lt;br&gt;-I'c:/Programme/Qt/SDK/2009.04/qt/include/ActiveQt' -I'debug' 
&lt;br&gt;-I'c:/Programme/Qt/SDK/2009.04/qt/mkspecs/win32-g++' -o debug/substfun.o 
&lt;br&gt;substfun.cpp
&lt;br&gt;&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26416924&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26416924.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26415666</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T13:00:41Z</published>
	<updated>2009-11-18T13:00:41Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake where 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the include files are, since it does not find them.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; you should pass to qmake these options
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I am not using linux, so it reads
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;debug: &amp;nbsp;LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;&amp;gt; -lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;&amp;gt; -lboost_regex-mgw34-mt-1_40
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;yes, it's the same, I just meant that instead of polluting the .pro file 
&lt;br&gt;you can pass these options to qmake at the command line :)
&lt;br&gt;&lt;br&gt;&amp;gt; note that I copy the library file to a new location, because the 
&lt;br&gt;&amp;gt; compilation destination path of boost is very strange.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The include is added via
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; INCLUDEPATH += &amp;nbsp;../boost_1_40_0
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; or the full path. However during compilation the boost library headers 
&lt;br&gt;&amp;gt; are not found.
&lt;br&gt;&lt;br&gt;you have to put in the INCLUDEPATH (which I usually write as INCPATH, 
&lt;br&gt;are you sure it's the same?) the path where the boost subdirectory is.
&lt;br&gt;&lt;br&gt;For instance, if regex.hpp is in
&lt;br&gt;&lt;br&gt;/my/path/boost_1_40_0/include/boost
&lt;br&gt;&lt;br&gt;then you need to specify as include path
&lt;br&gt;&lt;br&gt;/my/path/boost_1_40_0/include/
&lt;br&gt;&lt;br&gt;since boost header files are included as follows
&lt;br&gt;&lt;br&gt;#include &amp;lt;boost/regex.hpp&amp;gt;
&lt;br&gt;&lt;br&gt;As for the compilation and installation of boost you can still refer to 
&lt;br&gt;that blog post since those flags are for bootstrap and bjam anyway.
&lt;br&gt;&lt;br&gt;please let me know
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26415666&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26415666.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26415385</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T12:43:54Z</published>
	<updated>2009-11-18T12:43:54Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake where 
&lt;br&gt;&amp;gt;&amp;gt; the include files are, since it does not find them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; you should pass to qmake these options
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&amp;gt;
&lt;/div&gt;I am not using linux, so it reads
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; debug: &amp;nbsp;LIBS += -Llib/boost/regex/mingw/debug 
&lt;br&gt;-lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;nbsp; &amp;nbsp; release:LIBS += -Llib/boost/regex/mingw/release 
&lt;br&gt;-lboost_regex-mgw34-mt-1_40
&lt;br&gt;&lt;br&gt;note that I copy the library file to a new location, because the 
&lt;br&gt;compilation destination path of boost is very strange.
&lt;br&gt;&lt;br&gt;The include is added via
&lt;br&gt;&lt;br&gt;INCLUDEPATH += &amp;nbsp;../boost_1_40_0
&lt;br&gt;&lt;br&gt;or the full path. However during compilation the boost library headers 
&lt;br&gt;are not found.
&lt;br&gt;&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26415385&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26415385.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26414664</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T11:57:20Z</published>
	<updated>2009-11-18T11:57:20Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; building boost is not a problem, I have a problem to tell qmake where 
&lt;br&gt;&amp;gt; the include files are, since it does not find them.
&lt;br&gt;&lt;br&gt;you should pass to qmake these options
&lt;br&gt;&lt;br&gt;INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&lt;br&gt;depending on where you installed boost; where have you installed them? 
&lt;br&gt;In particular the headers and the lib?
&lt;br&gt;&lt;br&gt;you may want to try with a simpler example first (see, e.g., the example 
&lt;br&gt;here: 
&lt;br&gt;&lt;a href=&quot;http://tronprog.blogspot.com/2009/10/compiling-boost-regex-in-linux.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com/2009/10/compiling-boost-regex-in-linux.html&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;and run g++ with the -I and -L options.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26414664&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26414664.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26413461</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T10:46:28Z</published>
	<updated>2009-11-18T10:46:28Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;building boost is not a problem, I have a problem to tell qmake where 
&lt;br&gt;the include files are, since it does not find them.
&lt;br&gt;&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26413461&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26413461.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412270</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T09:36:23Z</published>
	<updated>2009-11-18T09:36:23Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm working on this, and solving the autoconf generated files and 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; defines in the .pro files, it's taking me some time.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hope to have something ready soon :)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; OK, I made it, at least I can successfully build both source-highlight 
&lt;br&gt;&amp;gt;&amp;gt; and source-highlight-qt under Linux with qmake, you can find these 
&lt;br&gt;&amp;gt;&amp;gt; source tar balls here:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I still haven't tried that on windows 'cause I need some sleep now :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I have not included the regex libs, since they have a very long and 
&lt;br&gt;&amp;gt; compiler specific name which is not included in your .pro file so far.
&lt;br&gt;&amp;gt; However I tried to compile it to see if it finishes that step:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here the errors that come with msvc: (I leave out the warnings)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; .\stylescanner.cc(621) : fatal error C1083: Datei (Include) kann nicht 
&lt;br&gt;&amp;gt; geöffnet werden: &amp;quot;unistd.h&amp;quot;: No such file or directory
&lt;/div&gt;&lt;br&gt;by looking at that file (which is automatically generated by flex) I see
&lt;br&gt;&lt;br&gt;#ifndef YY_NO_UNISTD_H
&lt;br&gt;/* Special case for &amp;quot;unistd.h&amp;quot;, since it is non-ANSI. We include it way
&lt;br&gt;&amp;nbsp; * down here because we want the user's section 1 to have been scanned 
&lt;br&gt;first.
&lt;br&gt;&amp;nbsp; * The user has a chance to override it with an option.
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;#include &amp;lt;unistd.h&amp;gt;
&lt;br&gt;#endif
&lt;br&gt;&lt;br&gt;thus it's possible to avoid to include unistd.h by adding
&lt;br&gt;&lt;br&gt;DEFINES += YY_NO_UNISTD_H
&lt;br&gt;&lt;br&gt;either in the .pro file, or, better to qmake command line; would you 
&lt;br&gt;please try this?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;P.S. it looks like building boost with msvc is fully supported: 
&lt;br&gt;&lt;a href=&quot;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/doc/libs/1_41_0/more/getting_started/windows.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26412270&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26412270.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26411988</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T08:41:44Z</published>
	<updated>2009-11-18T08:41:44Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm working on this, and solving the autoconf generated files and 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; defines in the .pro files, it's taking me some time.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hope to have something ready soon :)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; OK, I made it, at least I can successfully build both source-highlight 
&lt;br&gt;&amp;gt;&amp;gt; and source-highlight-qt under Linux with qmake, you can find these 
&lt;br&gt;&amp;gt;&amp;gt; source tar balls here:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I still haven't tried that on windows 'cause I need some sleep now :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I have not included the regex libs, since they have a very long and 
&lt;br&gt;&amp;gt; compiler specific name which is not included in your .pro file so far.
&lt;/div&gt;&lt;br&gt;you can pass this information to qmake with (I'm writing without being 
&lt;br&gt;to verify that)
&lt;br&gt;&lt;br&gt;INCPATH+=&amp;quot;/usr/local/include&amp;quot; LIBS+=&amp;quot;-L/usr/local/lib -lboost_regex&amp;quot;
&lt;br&gt;&lt;br&gt;if you extracted that tar ball in c:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; However I tried to compile it to see if it finishes that step:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here the errors that come with msvc: (I leave out the warnings)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; .\stylescanner.cc(621) : fatal error C1083: Datei (Include) kann nicht 
&lt;br&gt;&amp;gt; geöffnet werden: &amp;quot;unistd.h&amp;quot;: No such file or directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is a Unix only file which is is emulated by mingw, but not existend 
&lt;br&gt;&amp;gt; in other compilers which means that it is not available for msvc.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;mh... I see what I can do about that, but I don't know whether I can do 
&lt;br&gt;something... note that the configure based system is able to deal with 
&lt;br&gt;that but I don't know how to adapt that to msvc
&lt;br&gt;&lt;br&gt;&amp;gt; With mingw it compiles until it complains that boost is not found. This 
&lt;br&gt;&amp;gt; is something I have to solve before.
&lt;br&gt;&lt;br&gt;have you tried this site providing builds of boost regex for mingw?
&lt;br&gt;&lt;a href=&quot;http://nuwen.net/mingw.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nuwen.net/mingw.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26411988&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26411988.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26410441</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-18T07:55:22Z</published>
	<updated>2009-11-18T07:55:22Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm working on this, and solving the autoconf generated files and 
&lt;br&gt;&amp;gt;&amp;gt; defines in the .pro files, it's taking me some time.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hope to have something ready soon :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; OK, I made it, at least I can successfully build both source-highlight 
&lt;br&gt;&amp;gt; and source-highlight-qt under Linux with qmake, you can find these 
&lt;br&gt;&amp;gt; source tar balls here:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I still haven't tried that on windows 'cause I need some sleep now :)
&lt;br&gt;&amp;gt;
&lt;/div&gt;I have not included the regex libs, since they have a very long and 
&lt;br&gt;compiler specific name which is not included in your .pro file so far.
&lt;br&gt;However I tried to compile it to see if it finishes that step:
&lt;br&gt;&lt;br&gt;Here the errors that come with msvc: (I leave out the warnings)
&lt;br&gt;&lt;br&gt;.\stylescanner.cc(621) : fatal error C1083: Datei (Include) kann nicht 
&lt;br&gt;geöffnet werden: &amp;quot;unistd.h&amp;quot;: No such file or directory
&lt;br&gt;&lt;br&gt;This is a Unix only file which is is emulated by mingw, but not existend 
&lt;br&gt;in other compilers which means that it is not available for msvc.
&lt;br&gt;&lt;br&gt;With mingw it compiles until it complains that boost is not found. This 
&lt;br&gt;is something I have to solve before.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26410441&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26410441.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26399792</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-17T15:30:19Z</published>
	<updated>2009-11-17T15:30:19Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Lorenzo Bettini wrote:
&lt;br&gt;&amp;gt; Hi
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm working on this, and solving the autoconf generated files and 
&lt;br&gt;&amp;gt; defines in the .pro files, it's taking me some time.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hope to have something ready soon :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;OK, I made it, at least I can successfully build both source-highlight 
&lt;br&gt;and source-highlight-qt under Linux with qmake, you can find these 
&lt;br&gt;source tar balls here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qmake-3.1.2.tar.gz&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-qmake-0.2.tar.gz&lt;/a&gt;&lt;br&gt;&lt;br&gt;I still haven't tried that on windows 'cause I need some sleep now :)
&lt;br&gt;&lt;br&gt;Note that you still need to rely on boost_regex, so make sure it's in 
&lt;br&gt;your path or at least use INCPATH and LIBS appropriately when running 
&lt;br&gt;qmake (you might want to reuse the binary version of boost_regex lib and 
&lt;br&gt;related include in the binary package I built yesterday).
&lt;br&gt;&lt;br&gt;As for the installation, the same directory layout is used, but of 
&lt;br&gt;course you can tweak it with
&lt;br&gt;&lt;br&gt;INSTALL_ROOT=&amp;lt;myroot&amp;gt; make install
&lt;br&gt;&lt;br&gt;Of course, install source-highlight first, and then build and install 
&lt;br&gt;source-highlight-qt accordingly.
&lt;br&gt;&lt;br&gt;Please, try this on windows (I'll try that tomorrow), and you might 
&lt;br&gt;probably have to pass some other arguments to qmake to use it with msvc 
&lt;br&gt;(as I said I don't have that).
&lt;br&gt;&lt;br&gt;We'll probably have to deal with some warnings msvc will issue (I guess).
&lt;br&gt;&lt;br&gt;In any case, I strongly suggest you not to build them with dll (use 
&lt;br&gt;CONFIG+=static), at least as a first attempt.
&lt;br&gt;&lt;br&gt;If you modify the .pro files, please use conditionals in there (and 
&lt;br&gt;please send them back to me).
&lt;br&gt;&lt;br&gt;IMPORTANT: as for now, source-highlight comes with an hardcoded path for 
&lt;br&gt;searching for its lang files (and other files): 
&lt;br&gt;/usr/local/share/source-highlight, so you might want to install it using 
&lt;br&gt;the prefix /usr/local:
&lt;br&gt;&lt;br&gt;INSTALL_ROOT=/usr/local make install
&lt;br&gt;&lt;br&gt;If you install it in a different root path, then, remember to run 
&lt;br&gt;source-highlight-settings first so that you can specify a different data 
&lt;br&gt;path (and it will store it in your personal configuration for you, once 
&lt;br&gt;and for all).
&lt;br&gt;&lt;br&gt;hope to hear from you soon
&lt;br&gt;good night
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;P.S. I've been thinking for a long time to provide a conditional 
&lt;br&gt;compilation strategy so that source-highlight itself can use QRegExp 
&lt;br&gt;instead of boost regex, but this will require some more work (and 
&lt;br&gt;reengineering of some parts of source-highlight) and I cannot do that 
&lt;br&gt;immediately. :)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26399792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26399792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26398792</id>
	<title>Re: Compilation failures using qmake + mingw /	msvc</title>
	<published>2009-11-17T14:18:39Z</published>
	<updated>2009-11-17T14:18:39Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I'm working on this, and solving the autoconf generated files and 
&lt;br&gt;defines in the .pro files, it's taking me some time.
&lt;br&gt;&lt;br&gt;Hope to have something ready soon :)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lore
&lt;br&gt;&lt;br&gt;Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have set up a qmake .pro file to make the libary without autoconf. 
&lt;br&gt;&amp;gt; (file attached)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You will see in the following issues, that moving away from autoconf and 
&lt;br&gt;&amp;gt; to windows problems
&lt;br&gt;&amp;gt; arise that indicate that the code could be improved in its plattform 
&lt;br&gt;&amp;gt; independence.
&lt;br&gt;&amp;gt; So I do not want to complain that it fails compilation, but want to give 
&lt;br&gt;&amp;gt; hints to improve the
&lt;br&gt;&amp;gt; plattform independence.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Using mingw I run into the following issues:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /source-highlight-3.1/lib/srchilite/settings.cpp:11: config.h: No such 
&lt;br&gt;&amp;gt; file or directory
&lt;br&gt;&amp;gt; /source-highlight-3.1/lib/srchilite/settings.cpp:37: error: 
&lt;br&gt;&amp;gt; `ABSOLUTEDATADIR' was not declared in this scope
&lt;br&gt;&amp;gt; C:/Programme/Qt/SDK/2009.04/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../include/io.h:176: 
&lt;br&gt;&amp;gt; error: too many arguments to function `int mkdir(const char*)'
&lt;br&gt;&amp;gt; /source-highlight-3.1/lib/srchilite/settings.cpp:90: error: at this 
&lt;br&gt;&amp;gt; point in file
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; so that complition is stopped at settings.cpp.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Compling with msvc-2005 is more problematic:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following warnings are thrown very often
&lt;br&gt;&amp;gt; \source-highlight-3.1\lib\srchilite\fileutil.h(28) : warning C4290: C++ 
&lt;br&gt;&amp;gt; exception specification ignored except to indicate a function is not 
&lt;br&gt;&amp;gt; __declspec(nothrow)
&lt;br&gt;&amp;gt; \source-highlight-3.1\lib\srchilite\formatterparams.h(18) : warning 
&lt;br&gt;&amp;gt; C4099: 'srchilite::FormatterParams' : type name first seen using 'class' 
&lt;br&gt;&amp;gt; now seen using 'struct'
&lt;br&gt;&amp;gt; \source-highlight-3.1\lib\srchilite\sourcehighlighter.h(22) : see 
&lt;br&gt;&amp;gt; declaration of 'srchilite::FormatterParams'
&lt;br&gt;&amp;gt; \source-highlight-3.1\lib\srchilite\eventgenerator.h(31) : warning 
&lt;br&gt;&amp;gt; C4800: 'unsigned int' : forcing value to bool &amp;nbsp;'true' or 'false' 
&lt;br&gt;&amp;gt; (performance warning)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here again config.h does not exist (which really does not exist in the 
&lt;br&gt;&amp;gt; libary, nor mingw system header files).
&lt;br&gt;&amp;gt; Is this file generated by autoconf?
&lt;br&gt;&amp;gt; lib\srchilite\settings.cpp(11) : fatal error C1083: Cannot open include 
&lt;br&gt;&amp;gt; file: 'config.h': No such file or directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following error is much more problematic.
&lt;br&gt;&amp;gt; lib\srchilite\sourcehighlightutils.cpp(15) : fatal error C1083: Cannot 
&lt;br&gt;&amp;gt; open include file: 'dirent.h': No such file or directory
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is a header file _only_ existing in gcc derived compilers. 
&lt;br&gt;&amp;gt; Wikipedia says about it &amp;quot;The function is not part of the C standard&amp;quot;,
&lt;br&gt;&amp;gt; and it is not part of any Visual Studio compiler. This means that if you 
&lt;br&gt;&amp;gt; use this header it binds the libary code to gcc.
&lt;br&gt;&amp;gt; I have seen other files where I expect that they only exist in gcc, for 
&lt;br&gt;&amp;gt; example &amp;lt;sys/stat.h&amp;gt;, or rather only in unix systems.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; lib\srchilite\versions.cpp(18) : error C2065: 'VERSION' : undeclared 
&lt;br&gt;&amp;gt; identifier
&lt;br&gt;&amp;gt; lib\srchilite\versions.cpp(22) : error C2065: 'LIBRARY_VERSION' : 
&lt;br&gt;&amp;gt; undeclared identifier
&lt;br&gt;&amp;gt; This means that some Preprocessor Variables were not defined, probably 
&lt;br&gt;&amp;gt; the same as ABSOLUTEDATADIR in the mingw compilation step.
&lt;br&gt;&amp;gt; Here porting from the old toolchain to the .pro file needs completed, 
&lt;br&gt;&amp;gt; but I am missing the necessary information.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You had asked why I want to compile using msvc and did not try your 
&lt;br&gt;&amp;gt; mingw compiled binaries.
&lt;br&gt;&amp;gt; Well, it is because I have also projects which currently work only with 
&lt;br&gt;&amp;gt; visual studio, and for my new project where this libary
&lt;br&gt;&amp;gt; would be included I do not want to limit myself to either mingw or msvc.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt; Matthias Pospiech
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Help-source-highlight mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26398792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26398792&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26398792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26398716</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-17T14:12:53Z</published>
	<updated>2009-11-17T14:12:53Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">I just wanted to inform you that I started to provide a qmake build 
&lt;br&gt;system both for source-highlight and source-highlight-qt
&lt;br&gt;&lt;br&gt;for source-highlight-qt is basically ready; now I'm working on the 
&lt;br&gt;harder one: source-highlight :)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26398716&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26398716.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26398236</id>
	<title>Compilation failures using qmake + mingw / msvc</title>
	<published>2009-11-17T13:37:59Z</published>
	<updated>2009-11-17T13:37:59Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">I have set up a qmake .pro file to make the libary without autoconf. 
&lt;br&gt;(file attached)
&lt;br&gt;&lt;br&gt;You will see in the following issues, that moving away from autoconf and 
&lt;br&gt;to windows problems
&lt;br&gt;arise that indicate that the code could be improved in its plattform 
&lt;br&gt;independence.
&lt;br&gt;So I do not want to complain that it fails compilation, but want to give 
&lt;br&gt;hints to improve the
&lt;br&gt;plattform independence.
&lt;br&gt;&lt;br&gt;Using mingw I run into the following issues:
&lt;br&gt;&lt;br&gt;/source-highlight-3.1/lib/srchilite/settings.cpp:11: config.h: No such 
&lt;br&gt;file or directory
&lt;br&gt;/source-highlight-3.1/lib/srchilite/settings.cpp:37: error: 
&lt;br&gt;`ABSOLUTEDATADIR' was not declared in this scope
&lt;br&gt;C:/Programme/Qt/SDK/2009.04/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../include/io.h:176: 
&lt;br&gt;error: too many arguments to function `int mkdir(const char*)'
&lt;br&gt;/source-highlight-3.1/lib/srchilite/settings.cpp:90: error: at this 
&lt;br&gt;point in file
&lt;br&gt;&lt;br&gt;so that complition is stopped at settings.cpp.
&lt;br&gt;&lt;br&gt;Compling with msvc-2005 is more problematic:
&lt;br&gt;&lt;br&gt;The following warnings are thrown very often
&lt;br&gt;\source-highlight-3.1\lib\srchilite\fileutil.h(28) : warning C4290: C++ 
&lt;br&gt;exception specification ignored except to indicate a function is not 
&lt;br&gt;__declspec(nothrow)
&lt;br&gt;\source-highlight-3.1\lib\srchilite\formatterparams.h(18) : warning 
&lt;br&gt;C4099: 'srchilite::FormatterParams' : type name first seen using 'class' 
&lt;br&gt;now seen using 'struct'
&lt;br&gt;\source-highlight-3.1\lib\srchilite\sourcehighlighter.h(22) : see 
&lt;br&gt;declaration of 'srchilite::FormatterParams'
&lt;br&gt;\source-highlight-3.1\lib\srchilite\eventgenerator.h(31) : warning 
&lt;br&gt;C4800: 'unsigned int' : forcing value to bool &amp;nbsp;'true' or 'false' 
&lt;br&gt;(performance warning)
&lt;br&gt;&lt;br&gt;Here again config.h does not exist (which really does not exist in the 
&lt;br&gt;libary, nor mingw system header files).
&lt;br&gt;Is this file generated by autoconf?
&lt;br&gt;lib\srchilite\settings.cpp(11) : fatal error C1083: Cannot open include 
&lt;br&gt;file: 'config.h': No such file or directory
&lt;br&gt;&lt;br&gt;The following error is much more problematic.
&lt;br&gt;lib\srchilite\sourcehighlightutils.cpp(15) : fatal error C1083: Cannot 
&lt;br&gt;open include file: 'dirent.h': No such file or directory
&lt;br&gt;&lt;br&gt;This is a header file _only_ existing in gcc derived compilers. 
&lt;br&gt;Wikipedia says about it &amp;quot;The function is not part of the C standard&amp;quot;,
&lt;br&gt;and it is not part of any Visual Studio compiler. This means that if you 
&lt;br&gt;use this header it binds the libary code to gcc.
&lt;br&gt;I have seen other files where I expect that they only exist in gcc, for 
&lt;br&gt;example &amp;lt;sys/stat.h&amp;gt;, or rather only in unix systems.
&lt;br&gt;&lt;br&gt;lib\srchilite\versions.cpp(18) : error C2065: 'VERSION' : undeclared 
&lt;br&gt;identifier
&lt;br&gt;lib\srchilite\versions.cpp(22) : error C2065: 'LIBRARY_VERSION' : 
&lt;br&gt;undeclared identifier
&lt;br&gt;This means that some Preprocessor Variables were not defined, probably 
&lt;br&gt;the same as ABSOLUTEDATADIR in the mingw compilation step.
&lt;br&gt;Here porting from the old toolchain to the .pro file needs completed, 
&lt;br&gt;but I am missing the necessary information.
&lt;br&gt;&lt;br&gt;You had asked why I want to compile using msvc and did not try your 
&lt;br&gt;mingw compiled binaries.
&lt;br&gt;Well, it is because I have also projects which currently work only with 
&lt;br&gt;visual studio, and for my new project where this libary
&lt;br&gt;would be included I do not want to limit myself to either mingw or msvc.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Matthias Pospiech
&lt;br&gt;&lt;br&gt;&lt;br /&gt;CONFIG += release
&lt;br&gt;CONFIG -= debug
&lt;br&gt;CONFIG -= qt
&lt;br&gt;CONFIG += thread warn_on
&lt;br&gt;&lt;br&gt;TEMPLATE = lib
&lt;br&gt;CONFIG += dll
&lt;br&gt;# CONFIG += staticlib
&lt;br&gt;&lt;br&gt;TARGET = source-highlight
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Define Variables
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;BINARY_NAME = TARGET
&lt;br&gt;BUILD_DIR = build
&lt;br&gt;BIN_DIR = bin
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Auto select compiler
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;win32-g++: &amp;nbsp; &amp;nbsp; &amp;nbsp;COMPILER = mingw
&lt;br&gt;win32-msvc2005: COMPILER = msvc-2005
&lt;br&gt;linux-g++: &amp;nbsp; &amp;nbsp; &amp;nbsp;COMPILER = gcc
&lt;br&gt;&lt;br&gt;message(Compiler Binary: $$QMAKE_CXX)
&lt;br&gt;message(Compiler Path: $${COMPILER})
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;win32 {
&lt;br&gt;&amp;nbsp; &amp;nbsp; RELEASE_SUFFIX =
&lt;br&gt;&amp;nbsp; &amp;nbsp; DEBUG_SUFFIX &amp;nbsp; = d
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;CONFIG(debug, debug|release) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; SUFFIX_STR = $${DEBUG_SUFFIX}
&lt;br&gt;}
&lt;br&gt;else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; SUFFIX_STR = $${RELEASE_SUFFIX}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Target Directory
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;debug:DESTDIR = $${BIN_DIR}/$${COMPILER}/debug/
&lt;br&gt;release:DESTDIR = $${BIN_DIR}/$${COMPILER}/release/
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Executable Filename
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;TARGET = $${BINARY_NAME}$${SUFFIX_STR}
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Prepocessor Definitions
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;win32{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DEFINES += WIN32
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DEFINES += _WINDOWS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; debug {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DEFINES += _DEBUG
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; release {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DEFINES += NDEBUG
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;DEFINES += NOMINMAX
&lt;br&gt;DEFINES += BOOST_REGEX_DYN_LINK
&lt;br&gt;DEFINES += _CRT_SECURE_NO_WARNINGS
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Objects Directory
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;debug{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/debug/
&lt;br&gt;}
&lt;br&gt;release{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OBJECTS_DIR = $${BUILD_DIR}/$${BINARY_NAME}/release/
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Moc Directory
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;MOC_DIR = $${BUILD_DIR}/$${BINARY_NAME}/
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Ui Directory
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;UI_DIR = $${BUILD_DIR}/$${BINARY_NAME}/ui
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Include directories
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;INCLUDEPATH += lib/srchilite \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ../boost_1_40_0 
&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Libaries
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&lt;br&gt;contains($${COMPILER}, msvc-2005) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; # dll
&lt;br&gt;&amp;nbsp; &amp;nbsp; # debug: &amp;nbsp;LIBS += -Llib/boost/regex/$${COMPILER}/debug -lboost_regex-vc80-mt-gd-1_40
&lt;br&gt;&amp;nbsp; &amp;nbsp; # release:LIBS += -Llib/boost/regex/$${COMPILER}/release -lboost_regex-vc80-mt-1_40
&lt;br&gt;&amp;nbsp; &amp;nbsp; # static
&lt;br&gt;&amp;nbsp; &amp;nbsp; debug: &amp;nbsp;LIBS += -Llib/boost/regex/$${COMPILER}/debug -llibboost_regex-vc80-mt-gd-1_40
&lt;br&gt;&amp;nbsp; &amp;nbsp; release:LIBS += -Llib/boost/regex/$${COMPILER}/release -llibboost_regex-vc80-mt-1_40
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;contains($${COMPILER}, mingw) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; debug: &amp;nbsp;LIBS += -Llib/boost/regex/$${COMPILER}/debug -lboost_regex-mgw34-mt-d-1_40
&lt;br&gt;&amp;nbsp; &amp;nbsp; release:LIBS += -Llib/boost/regex/$${COMPILER}/release -lboost_regex-mgw34-mt-1_40
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;# -------------------------------------------------
&lt;br&gt;# Sources
&lt;br&gt;# -------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;SOURCES += lib/srchilite/bufferedoutput.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/ctagscollector.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/ctagsformatter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/ctagsmanager.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/debuglistener.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/delimitedlangelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/doctemplate.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/fileinfo.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/formatter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/formattermanager.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightbuilderexception.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightrule.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightrulefactory.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightstate.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightstatebuilder.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlightstateprinter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/highlighttoken.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/ioexception.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/langdefmanager.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/langelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/langelems.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/langelemsprinter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/langmap.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/languageinfer.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/linenumgenerator.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/lineranges.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/namedsubexpslangelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/parserexception.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/preformatter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/regexhighlightrule.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/regexpreprocessor.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/regexranges.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/regexrulefactory.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/settings.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/sourcefilehighlighter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/sourcehighlight.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/sourcehighlighter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/sourcehighlightutils.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/srcuntabifier.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/statelangelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/statestartlangelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/stopwatch.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/stringdef.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/stringlistlangelem.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/stringtable.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/stylefileparser.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/substfun.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/test_readtags_main.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/textstyle.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/textstylebuilder.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/textstyleformatter.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/textstyleformatterfactory.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/utils.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/vardefinitions.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/verbosity.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/versions.cpp \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lib/srchilite/wordtokenizer.cpp	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;HEADERS += bufferedoutput.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; chartranslator.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; colormap.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; colors.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; copyright.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ctagscollector.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ctagsformatter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ctagsmanager.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; debuglistener.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; delimitedlangelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; docgenerator.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; doctemplate.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; eventgenerator.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fileinfo.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fileutil.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; formatter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; formatterfactory.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; formattermanager.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; formatterparams.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightbuilderexception.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightevent.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlighteventlistener.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightrule.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightrulefactory.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightstate.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightstatebuilder.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlightstateprinter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; highlighttoken.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; instances.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ioexception.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; keys.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langdefmanager.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langdefparser.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langdefparserfun.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langdefscanner.h	 \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langelems.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langelemsprinter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; langmap.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; languageinfer.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; linebuffer.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; linenumgenerator.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; lineranges.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; matchingparameters.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; namedsubexpslangelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; outlangdefparser.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; outlangdefparserfun.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; outlangdefscanner.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parserexception.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parserinfo.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parsestruct.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parsestyles.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; preformatter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; readtags.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; refposition.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regexhighlightrule.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regexpreprocessor.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regexranges.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regexrulefactory.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reportbugs.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; settings.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourcefilehighlighter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourcehighlight.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourcehighlighter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourcehighlightutils.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcuntabifier.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; statelangelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; statestartlangelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stopwatch.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stringdef.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stringlistlangelem.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stringtable.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stylecssparser.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stylefileparser.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stylekey.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; styleparser.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; substfun.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstyle.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstylebuilder.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstyleformatter.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstyleformattercollection.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstyleformatterfactory.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; textstyles.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tostringcollection.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; utils.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vardefinitions.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; verbosity.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; versions.h \ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wordtokenizer.h	
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26398236&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compilation-failures-using-qmake-%2B-mingw---msvc-tp26398236p26398236.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26390769</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-17T06:03:46Z</published>
	<updated>2009-11-17T06:03:46Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; actually they're both platform independent; it's true that they rely 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; on a unix-like system for building, but in windows you have both 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; cygwin and mingw/msys for that. &amp;nbsp;Indeed there's a windows build of 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; source-highlight that I did with mingw: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.lorenzobettini.it/software/source-highlight/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it/software/source-highlight/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Actually I want to build it on my own. I need a mingw build 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; compatible with the mingw Version of Qt 4.5 and a Visual Studio build 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; for Version 2005, 2008 and soon 2010.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; So what I really need is a solution to build the libary on windows on 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; my own.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; What I do not understand in the first place is how I run the 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; configure script without sh.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi Matthias
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if you want to build it yourself then you also need a shell to run 
&lt;br&gt;&amp;gt;&amp;gt; configure, and if you use mingw you'd need msys (which provides a 
&lt;br&gt;&amp;gt;&amp;gt; shell and other tools); but to build source-highlight you also need 
&lt;br&gt;&amp;gt;&amp;gt; the boost library for mingw.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thus, if you haven't already setup such an environment mingw/msys it 
&lt;br&gt;&amp;gt;&amp;gt; might take some time.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I was trying to set up a system with msys, but did not have success so 
&lt;br&gt;&amp;gt; far. However what bothers me most is the compilation with msvc.
&lt;br&gt;&amp;gt; The only build step I could find is this one: 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://folti.blogs.balabit.com/2009/08/compiling-autoconfmake-using-sources.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://folti.blogs.balabit.com/2009/08/compiling-autoconfmake-using-sources.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; which is really a way to fight around all problems of autoconf on 
&lt;br&gt;&amp;gt; non.unix platform issues and not a clean solution.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I wonder how difficult building of source-highlight really is. I think 
&lt;br&gt;&amp;gt; putting all cpp+h files in a qmake project costs me only a few minutes. 
&lt;br&gt;&amp;gt; Only the boost libary might be a problem since it does not build as a 
&lt;br&gt;&amp;gt; shared libary on mingw.
&lt;/div&gt;&lt;br&gt;Hi Matthias
&lt;br&gt;&lt;br&gt;probably I missed something: do you use mingw or msvc? &amp;nbsp;As for msvc I 
&lt;br&gt;cannot tell, since I basically don't use those build tools.
&lt;br&gt;&lt;br&gt;As for boost, why do you actually need a dll? &amp;nbsp;can't you just use a 
&lt;br&gt;static build of boost, like the one I inserted in the archive?
&lt;br&gt;&lt;br&gt;Have you tried to use the binary archive I told you about yesterday?
&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-win32-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-win32-0.2.tar.gz&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you need a version which is compatible with mingw and qt, then this 
&lt;br&gt;version should do, since those are the tools I've built them with.
&lt;br&gt;&lt;br&gt;As for using qmake for source-highlight (and most importantly 
&lt;br&gt;source-highlight-qt) it's a good idea. &amp;nbsp;Note that I'm not willing to 
&lt;br&gt;abandon autotools, but I think I can also provide the .pro files to be 
&lt;br&gt;able to build them with qmake. &amp;nbsp;Note that in that case it would only be 
&lt;br&gt;a build of the library and binary and not of the documentation and 
&lt;br&gt;related stuff.
&lt;br&gt;&lt;br&gt;hope to hear from you soon
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26390769&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26390769.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26389942</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-17T05:13:44Z</published>
	<updated>2009-11-17T05:13:44Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Matthias Pospiech wrote:
&lt;br&gt;&amp;gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; actually they're both platform independent; it's true that they rely 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; on a unix-like system for building, but in windows you have both 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; cygwin and mingw/msys for that. &amp;nbsp;Indeed there's a windows build of 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; source-highlight that I did with mingw: 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.lorenzobettini.it/software/source-highlight/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it/software/source-highlight/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Actually I want to build it on my own. I need a mingw build 
&lt;br&gt;&amp;gt;&amp;gt; compatible with the mingw Version of Qt 4.5 and a Visual Studio build 
&lt;br&gt;&amp;gt;&amp;gt; for Version 2005, 2008 and soon 2010.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So what I really need is a solution to build the libary on windows on 
&lt;br&gt;&amp;gt;&amp;gt; my own.
&lt;br&gt;&amp;gt;&amp;gt; What I do not understand in the first place is how I run the 
&lt;br&gt;&amp;gt;&amp;gt; configure script without sh.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Matthias
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; if you want to build it yourself then you also need a shell to run 
&lt;br&gt;&amp;gt; configure, and if you use mingw you'd need msys (which provides a 
&lt;br&gt;&amp;gt; shell and other tools); but to build source-highlight you also need 
&lt;br&gt;&amp;gt; the boost library for mingw.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thus, if you haven't already setup such an environment mingw/msys it 
&lt;br&gt;&amp;gt; might take some time.
&lt;br&gt;&amp;gt;
&lt;/div&gt;I was trying to set up a system with msys, but did not have success so 
&lt;br&gt;far. However what bothers me most is the compilation with msvc.
&lt;br&gt;The only build step I could find is this one: 
&lt;br&gt;&lt;a href=&quot;http://folti.blogs.balabit.com/2009/08/compiling-autoconfmake-using-sources.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://folti.blogs.balabit.com/2009/08/compiling-autoconfmake-using-sources.html&lt;/a&gt;&lt;br&gt;which is really a way to fight around all problems of autoconf on 
&lt;br&gt;non.unix platform issues and not a clean solution.
&lt;br&gt;&lt;br&gt;I wonder how difficult building of source-highlight really is. I think 
&lt;br&gt;putting all cpp+h files in a qmake project costs me only a few minutes. 
&lt;br&gt;Only the boost libary might be a problem since it does not build as a 
&lt;br&gt;shared libary on mingw.
&lt;br&gt;&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26389942&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26389942.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26380785</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-16T14:22:31Z</published>
	<updated>2009-11-16T14:22:31Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; actually they're both platform independent; it's true that they rely 
&lt;br&gt;&amp;gt;&amp;gt; on a unix-like system for building, but in windows you have both 
&lt;br&gt;&amp;gt;&amp;gt; cygwin and mingw/msys for that. &amp;nbsp;Indeed there's a windows build of 
&lt;br&gt;&amp;gt;&amp;gt; source-highlight that I did with mingw: 
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.lorenzobettini.it/software/source-highlight/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it/software/source-highlight/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; Actually I want to build it on my own. I need a mingw build compatible 
&lt;br&gt;&amp;gt; with the mingw Version of Qt 4.5 and a Visual Studio build for Version 
&lt;br&gt;&amp;gt; 2005, 2008 and soon 2010.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So what I really need is a solution to build the libary on windows on my 
&lt;br&gt;&amp;gt; own.
&lt;br&gt;&amp;gt; What I do not understand in the first place is how I run the configure 
&lt;br&gt;&amp;gt; script without sh.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Hi Matthias
&lt;br&gt;&lt;br&gt;if you want to build it yourself then you also need a shell to run 
&lt;br&gt;configure, and if you use mingw you'd need msys (which provides a shell 
&lt;br&gt;and other tools); but to build source-highlight you also need the boost 
&lt;br&gt;library for mingw.
&lt;br&gt;&lt;br&gt;Thus, if you haven't already setup such an environment mingw/msys it 
&lt;br&gt;might take some time.
&lt;br&gt;&lt;br&gt;For this reason, I've just put up a binary distribution which includes 
&lt;br&gt;source-highlight-qt library, boost regex library, and source-highlight 
&lt;br&gt;(and its library) for window; if you feel like trying it you can 
&lt;br&gt;download it from here 
&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-win32-0.2.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/source-highlight-qt-win32-0.2.tar.gz&lt;/a&gt;&amp;nbsp;
&lt;br&gt;(it's more than 6 mega of course); using this, I've also built the 
&lt;br&gt;qeditexample (the example that uses source-highlight-qt, downloadable in 
&lt;br&gt;source format from here 
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/projects/srchiliteqt/files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/projects/srchiliteqt/files/&lt;/a&gt;), e.g., here's the 
&lt;br&gt;built binary: 
&lt;br&gt;&lt;a href=&quot;http://gdn.dsi.unifi.it/~bettini/binaries/qeditexample-win32-1.1.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gdn.dsi.unifi.it/~bettini/binaries/qeditexample-win32-1.1.zip&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Of course, you still need the qt 4.5 dll libraries; in particular I've 
&lt;br&gt;used the latest 4.5 qt distribution for windows (which also offers to 
&lt;br&gt;download, during its installation, a minimal mingw compiler and 
&lt;br&gt;corresponding .dll which is needed as well).
&lt;br&gt;&lt;br&gt;Note that once you have the above binary package of source-highlight-qt, 
&lt;br&gt;then you can do everything with qmake; indeed qeditexample simply relies 
&lt;br&gt;on qmake. &amp;nbsp;Once I installed the above binary version (i.e., extracted 
&lt;br&gt;the zip on C:, everything will be extracted into c:\usr\local...), I 
&lt;br&gt;opened the Qt command prompt, and ran
&lt;br&gt;&lt;br&gt;qmake -recursive LIBS+=&amp;quot;-L\usr\local\lib -lsource-highlight-qt4 
&lt;br&gt;-lsource-highlight -lboost_regex-mt&amp;quot; INCPATH+=&amp;quot;\usr\local\include&amp;quot; 
&lt;br&gt;qeditexample.pro
&lt;br&gt;&lt;br&gt;and then
&lt;br&gt;&lt;br&gt;mingw32-make
&lt;br&gt;&lt;br&gt;Note that qmake might complain since it cannot find pkg-config, the tool 
&lt;br&gt;it will try to use to find source-highlight-qt library, but you can 
&lt;br&gt;ignore it, since you provided it with LIBS and INCPATH.
&lt;br&gt;&lt;br&gt;Thus, if your build environment relies on qmake, you only need the above 
&lt;br&gt;binary package (and you don't need to bother getting a unix shell like 
&lt;br&gt;msys).
&lt;br&gt;&lt;br&gt;Using the same technique I'll build a windows version of 
&lt;br&gt;qsource-highlight; in this case, since it's an application, I can add to 
&lt;br&gt;the zip also the required qt and mingw dlls; instead in the case of 
&lt;br&gt;source-highlight-qt, being a library intended to be used with qt, it's 
&lt;br&gt;safe to assume that the user already has qt (and mingw) installed.
&lt;br&gt;&lt;br&gt;Please, do not hesitate to write for any further help; I'm pretty 
&lt;br&gt;interested in making the use of source-highlight-qt under windows as well.
&lt;br&gt;&lt;br&gt;hope to hear from you soon
&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26380785&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26380785.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26379500</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-16T12:57:01Z</published>
	<updated>2009-11-16T12:57:01Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; actually they're both platform independent; it's true that they rely 
&lt;br&gt;&amp;gt; on a unix-like system for building, but in windows you have both 
&lt;br&gt;&amp;gt; cygwin and mingw/msys for that. &amp;nbsp;Indeed there's a windows build of 
&lt;br&gt;&amp;gt; source-highlight that I did with mingw: 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.lorenzobettini.it/software/source-highlight/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it/software/source-highlight/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;Actually I want to build it on my own. I need a mingw build compatible 
&lt;br&gt;with the mingw Version of Qt 4.5 and a Visual Studio build for Version 
&lt;br&gt;2005, 2008 and soon 2010.
&lt;br&gt;&lt;br&gt;So what I really need is a solution to build the libary on windows on my 
&lt;br&gt;own.
&lt;br&gt;What I do not understand in the first place is how I run the configure 
&lt;br&gt;script without sh.
&lt;br&gt;&lt;br&gt;Matthias
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26379500&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26379500.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26368279</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-16T00:25:24Z</published>
	<updated>2009-11-16T00:25:24Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Matthias Pospiech wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've just released version 0.2 this program:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; QSource-Highlight is a Qt4 front-end for GNU Source-Highlight,
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I downloaded src-highlite and your Qt Wrapper class. But as far as I can 
&lt;br&gt;&amp;gt; see neither of them are platform independent.
&lt;br&gt;&amp;gt; Especially src-highlite seems to rely on a unix system for the Makefile 
&lt;br&gt;&amp;gt; generation and the INSTALL file of your Wrapper class
&lt;br&gt;&amp;gt; seems to be designed for usage which unix only as well.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If both are really not usable for Windows the whole idea of both 
&lt;br&gt;&amp;gt; libaries is useless for me. I develop for windows and port to linux.
&lt;br&gt;&amp;gt; Not the other way!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt; Matthias Pospiech
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Hi Matthias
&lt;br&gt;&lt;br&gt;actually they're both platform independent; it's true that they rely on 
&lt;br&gt;a unix-like system for building, but in windows you have both cygwin and 
&lt;br&gt;mingw/msys for that. &amp;nbsp;Indeed there's a windows build of source-highlight 
&lt;br&gt;that I did with mingw: 
&lt;br&gt;&lt;a href=&quot;http://www.lorenzobettini.it/software/source-highlight/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it/software/source-highlight/&lt;/a&gt;&lt;br&gt;&lt;br&gt;if you need a windows build for source-highlight-qt I can do that.
&lt;br&gt;&lt;br&gt;I'm using source-highlight and source-highlight-qt on windows myself for 
&lt;br&gt;qsource-highlight.
&lt;br&gt;&lt;br&gt;By the way: source-highlight-qt is the library for performing syntax 
&lt;br&gt;highlighting in Qt documents; qsource-highlight is a front-end for 
&lt;br&gt;source-highlight which relies on source-highlight-qt :)
&lt;br&gt;&lt;br&gt;and for instance, qsource-highlight itself uses qmake for building.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26368279&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26368279.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363851</id>
	<title>Re: QSource-Highlight 0.2</title>
	<published>2009-11-15T13:52:47Z</published>
	<updated>2009-11-15T13:52:47Z</updated>
	<author>
		<name>Matthias Pospiech</name>
	</author>
	<content type="html">Lorenzo Bettini schrieb:
&lt;br&gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've just released version 0.2 this program:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; QSource-Highlight is a Qt4 front-end for GNU Source-Highlight,
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;I downloaded src-highlite and your Qt Wrapper class. But as far as I can 
&lt;br&gt;see neither of them are platform independent.
&lt;br&gt;Especially src-highlite seems to rely on a unix system for the Makefile 
&lt;br&gt;generation and the INSTALL file of your Wrapper class
&lt;br&gt;seems to be designed for usage which unix only as well.
&lt;br&gt;&lt;br&gt;If both are really not usable for Windows the whole idea of both 
&lt;br&gt;libaries is useless for me. I develop for windows and port to linux.
&lt;br&gt;Not the other way!
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Matthias Pospiech
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363851&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26363851.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26361324</id>
	<title>QSource-Highlight 0.2</title>
	<published>2009-11-15T09:38:56Z</published>
	<updated>2009-11-15T09:38:56Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released version 0.2 this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;QSource-Highlight is a Qt4 front-end for GNU Source-Highlight,
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;QSource-Highlight uses the library included in GNU Source-Highlight,
&lt;br&gt;since version 3, thus you need that library to build QSource-Highlight;
&lt;br&gt;in particular it uses Source-Highlight-Qt additional library,
&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net&lt;/a&gt;, which provides highlighting in Qt
&lt;br&gt;relying on GNU Source-Highlight. Thus, you need to install
&lt;br&gt;Source-Highlight-Qt as well. we refer to GNU Source-Highlight's and
&lt;br&gt;Source-Highlight-Qt's websites for further information about the library
&lt;br&gt;and its installation (you may want to check whether your distribution
&lt;br&gt;already provides packages for these two libraries).
&lt;br&gt;&lt;br&gt;You can highlight your code on the fly, and have the highlighted output
&lt;br&gt;in all the formats supported by source-highlight (e.g., HTML, LaTeX,
&lt;br&gt;Texinfo, etc.). You can then copy the formatted output and paste it
&lt;br&gt;(e.g., in your blog), or save it to a file.
&lt;br&gt;&lt;br&gt;A preview of the highlighted output is available for some output formats
&lt;br&gt;(e.g., HTML, XHTML, etc.).
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26361324&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361324p26361324.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26361322</id>
	<title>QSource-Highlight 0.2</title>
	<published>2009-11-15T09:38:56Z</published>
	<updated>2009-11-15T09:38:56Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released version 0.2 this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;QSource-Highlight is a Qt4 front-end for GNU Source-Highlight,
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;QSource-Highlight uses the library included in GNU Source-Highlight,
&lt;br&gt;since version 3, thus you need that library to build QSource-Highlight;
&lt;br&gt;in particular it uses Source-Highlight-Qt additional library,
&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net&lt;/a&gt;, which provides highlighting in Qt
&lt;br&gt;relying on GNU Source-Highlight. Thus, you need to install
&lt;br&gt;Source-Highlight-Qt as well. we refer to GNU Source-Highlight's and
&lt;br&gt;Source-Highlight-Qt's websites for further information about the library
&lt;br&gt;and its installation (you may want to check whether your distribution
&lt;br&gt;already provides packages for these two libraries).
&lt;br&gt;&lt;br&gt;You can highlight your code on the fly, and have the highlighted output
&lt;br&gt;in all the formats supported by source-highlight (e.g., HTML, LaTeX,
&lt;br&gt;Texinfo, etc.). You can then copy the formatted output and paste it
&lt;br&gt;(e.g., in your blog), or save it to a file.
&lt;br&gt;&lt;br&gt;A preview of the highlighted output is available for some output formats
&lt;br&gt;(e.g., HTML, XHTML, etc.).
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26361322&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-0.2-tp26361322p26361322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25694624</id>
	<title>QSource-Highlight</title>
	<published>2009-10-01T01:04:36Z</published>
	<updated>2009-10-01T01:04:36Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;QSource-Highlight is a Qt4 front-end for GNU Source-Highlight, 
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;QSource-Highlight uses the library included in GNU Source-Highlight, 
&lt;br&gt;since version 3, thus you need that library to build QSource-Highlight; 
&lt;br&gt;in particular it uses Source-Highlight-Qt additional library, 
&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net&lt;/a&gt;, which provides highlighting in Qt 
&lt;br&gt;relying on GNU Source-Highlight. Thus, you need to install 
&lt;br&gt;Source-Highlight-Qt as well. we refer to GNU Source-Highlight's and 
&lt;br&gt;Source-Highlight-Qt's websites for further information about the library 
&lt;br&gt;and its installation (you may want to check whether your distribution 
&lt;br&gt;already provides packages for these two libraries).
&lt;br&gt;&lt;br&gt;You can highlight your code on the fly, and have the highlighted output 
&lt;br&gt;in all the formats supported by source-highlight (e.g., HTML, LaTeX, 
&lt;br&gt;Texinfo, etc.). You can then copy the formatted output and paste it 
&lt;br&gt;(e.g., in your blog), or save it to a file.
&lt;br&gt;&lt;br&gt;A preview of the highlighted output is available for some output formats 
&lt;br&gt;(e.g., HTML, XHTML, etc.).
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25694624&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-tp25694624p25694624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25694622</id>
	<title>QSource-Highlight</title>
	<published>2009-10-01T01:04:36Z</published>
	<updated>2009-10-01T01:04:36Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://qsrchilite.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qsrchilite.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;QSource-Highlight is a Qt4 front-end for GNU Source-Highlight, 
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;QSource-Highlight uses the library included in GNU Source-Highlight, 
&lt;br&gt;since version 3, thus you need that library to build QSource-Highlight; 
&lt;br&gt;in particular it uses Source-Highlight-Qt additional library, 
&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net&lt;/a&gt;, which provides highlighting in Qt 
&lt;br&gt;relying on GNU Source-Highlight. Thus, you need to install 
&lt;br&gt;Source-Highlight-Qt as well. we refer to GNU Source-Highlight's and 
&lt;br&gt;Source-Highlight-Qt's websites for further information about the library 
&lt;br&gt;and its installation (you may want to check whether your distribution 
&lt;br&gt;already provides packages for these two libraries).
&lt;br&gt;&lt;br&gt;You can highlight your code on the fly, and have the highlighted output 
&lt;br&gt;in all the formats supported by source-highlight (e.g., HTML, LaTeX, 
&lt;br&gt;Texinfo, etc.). You can then copy the formatted output and paste it 
&lt;br&gt;(e.g., in your blog), or save it to a file.
&lt;br&gt;&lt;br&gt;A preview of the highlighted output is available for some output formats 
&lt;br&gt;(e.g., HTML, XHTML, etc.).
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25694622&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QSource-Highlight-tp25694622p25694622.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25608667</id>
	<title>Source-Highlight-Qt 0.2</title>
	<published>2009-09-25T01:55:23Z</published>
	<updated>2009-09-25T01:55:23Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Version 0.2 of Source-Highlight-Qt is available at:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight-qt is a library for performing syntax highlighting in
&lt;br&gt;Qt documents by relying on GNU Source-Highlight library,
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Although the use of GNU Source-highlight library is pretty hidden by
&lt;br&gt;this library, so the programmer must not need the details of GNU
&lt;br&gt;Source-highlight library, yet, some general notions of GNU
&lt;br&gt;Source-highlight might be useful (especially how language definition
&lt;br&gt;files are defined, where the configuration files are stored, etc.).
&lt;br&gt;&lt;br&gt;This library provides an implementation of the qt abstract class
&lt;br&gt;QSyntaxHighlighter class, and it deals both with Qt3 and Qt4, although
&lt;br&gt;you will need to build a separate version of the library for the two
&lt;br&gt;different qt frameworks.
&lt;br&gt;Please note, the Qt3 version has less features and it is there only for
&lt;br&gt;old qt applications; furthermore, QSyntaxHighlighter class in Qt3 has
&lt;br&gt;some design problems which make it quite inefficient to use.
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25608667&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Source-Highlight-Qt-0.2-tp25608667p25608667.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25536317</id>
	<title>GNU Source-highlight 3.1.1 (with Library)</title>
	<published>2009-09-20T15:05:32Z</published>
	<updated>2009-09-20T15:05:32Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">GNU Source-highlight 3.1.1 has been released. &amp;nbsp;It is available from
&lt;br&gt;ftp://ftp.gnu.org/gnu/src-highlite/ and mirrors of that site (see
&lt;br&gt;list of mirror sites at &lt;a href=&quot;http://www.gnu.org/order/ftp.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/order/ftp.html&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;GNU Source-highlight, given a source file, produces a document with
&lt;br&gt;syntax highlighting.
&lt;br&gt;&lt;br&gt;Since version 3.0, source-higlight also provides a *C++ highlight
&lt;br&gt;library* that you can use in your programs!
&lt;br&gt;&lt;br&gt;You can also find details about new features of source-highlight on my
&lt;br&gt;blog, in this area:
&lt;br&gt;&lt;a href=&quot;http://tronprog.blogspot.com/search/label/source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com/search/label/source-highlight&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;At the moment this package can handle
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ada
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Autoconf files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C/C++
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C#
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Configuration files (generic)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bib
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bison
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Caml
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Changelog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Css
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Diff
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Flex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Fortran
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* GLSL
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Haskell &amp;nbsp; &amp;nbsp; (new)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Haxe
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Html
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ini files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Java
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Javascript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* KDE desktop files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Latex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ldap files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Logtalk
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Log files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* lsm files (Linux Software Map)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Lua
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Makefile
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* M4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Oz
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Pascal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Perl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* pkg-config files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* PHP
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Postscript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Prolog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Properties files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Python
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* RPM Spec files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ruby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Scala
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Shell
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* S-Lang
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Sql
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Tcl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Texinfo &amp;nbsp; &amp;nbsp; (new)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XOrg conf files
&lt;br&gt;&lt;br&gt;as source languages, and
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; HTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; XHTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ANSI color escape sequences
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; LaTeX
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Texinfo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DocBook
&lt;br&gt;&lt;br&gt;as output format.
&lt;br&gt;&lt;br&gt;Language definition files and output language definition files, which
&lt;br&gt;are part of source-highlight distribution, can also be downloaded
&lt;br&gt;independently from, respectively:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/lang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/lang_files/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/outlang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/outlang_files/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight depends on the Boost regex library
&lt;br&gt;(&lt;a href=&quot;http://www.boost.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/&lt;/a&gt;) so you need to install this library (boost
&lt;br&gt;libraries are usually shipped with most distributions).
&lt;br&gt;&lt;br&gt;Source-highlight can also generate cross references; in order to do this
&lt;br&gt;it relies on GNU Ctags, &lt;a href=&quot;http://ctags.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ctags.sourceforge.net&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Version 3.1.1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * access to static global LangDefManager, LangMaps is provided
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; through the class Instances
&lt;br&gt;&amp;nbsp; &amp;nbsp; * mechanism for setting a global data dir value (e.g., to ensure
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; consistency in a library) and for checking settings
&lt;br&gt;&amp;nbsp; &amp;nbsp; * library utility functions to retrieve .lang and .outlang files
&lt;br&gt;&amp;nbsp; &amp;nbsp; * fixed default output format to &amp;quot;html.outlang&amp;quot; not &amp;quot;html.lang&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; * SourceHighlight class return the output file extension
&lt;br&gt;&amp;nbsp; &amp;nbsp; * the background color for the document is kept empty if it is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; not specified in the style file
&lt;br&gt;&amp;nbsp; &amp;nbsp; * SourceHighlight.setLineNumberDigits: to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;explicitly set the number of digits for line numbers
&lt;br&gt;&amp;nbsp; &amp;nbsp; * utils.h file is installed in the header directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; * white is a standard color in style files
&lt;br&gt;&amp;nbsp; &amp;nbsp; * language definition file for Texinfo
&lt;br&gt;&amp;nbsp; &amp;nbsp; * language definition file for Haskell (thanks to Sergey Astanin)
&lt;br&gt;&lt;br&gt;Visit the Source-highlight home page at
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;br&gt;Anonymous CVS access is also available. &amp;nbsp;Please visit
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/src-highlite/&lt;/a&gt;&lt;br&gt;where you can find detailed descriptions of how to access the CVS
&lt;br&gt;(read-only). &amp;nbsp;Release-candidate versions are available
&lt;br&gt;through CVS.
&lt;br&gt;&lt;br&gt;Bug reports should go to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25536317&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-source-highlight@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;The following mailing lists are available:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25536317&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;help-source-highlight@...&lt;/a&gt;, for generic discussions about the
&lt;br&gt;program and for asking for help about it (open mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25536317&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info-source-highlight@...&lt;/a&gt;, for receiving information about
&lt;br&gt;new releases and features (read-only mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;br&gt;if you want to subscribe to a mailing list just go to the URL and follow
&lt;br&gt;the instructions, or send me an e-mail and I'll subscribe you.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25536317&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GNU-Source-highlight-3.1.1-%28with-Library%29-tp25536317p25536317.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24355538</id>
	<title>Source-Highlight-Qt</title>
	<published>2009-07-06T06:35:05Z</published>
	<updated>2009-07-06T06:35:05Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight-qt is a library for performing syntax highlighting in
&lt;br&gt;Qt documents by relying on GNU Source-Highlight library,
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Although the use of GNU Source-highlight library is pretty hidden by
&lt;br&gt;this library, so the programmer must not need the details of GNU
&lt;br&gt;Source-highlight library, yet, some general notions of GNU
&lt;br&gt;Source-highlight might be useful (especially how language definition
&lt;br&gt;files are defined, where the configuration files are stored, etc.).
&lt;br&gt;&lt;br&gt;This library provides an implementation of the qt abstract class
&lt;br&gt;QSyntaxHighlighter class, and it deals both with Qt3 and Qt4, although
&lt;br&gt;you will need to build a separate version of the library for the two
&lt;br&gt;different qt frameworks.
&lt;br&gt;Please note, the Qt3 version has less features and it is there only for
&lt;br&gt;old qt applications; furthermore, QSyntaxHighlighter class in Qt3 has
&lt;br&gt;some design problems which make it quite inefficient to use.
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Help-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24355538&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Help-f1797.html&quot; embed=&quot;fixTarget[1797]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Help&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Source-Highlight-Qt-tp24355538p24355538.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24355524</id>
	<title>Source-Highlight-Qt</title>
	<published>2009-07-06T06:34:13Z</published>
	<updated>2009-07-06T06:34:13Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I've just released this program:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://srchiliteqt.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://srchiliteqt.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight-qt is a library for performing syntax highlighting in 
&lt;br&gt;Qt documents by relying on GNU Source-Highlight library, 
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Although the use of GNU Source-highlight library is pretty hidden by 
&lt;br&gt;this library, so the programmer must not need the details of GNU 
&lt;br&gt;Source-highlight library, yet, some general notions of GNU 
&lt;br&gt;Source-highlight might be useful (especially how language definition 
&lt;br&gt;files are defined, where the configuration files are stored, etc.).
&lt;br&gt;&lt;br&gt;This library provides an implementation of the qt abstract class 
&lt;br&gt;QSyntaxHighlighter class, and it deals both with Qt3 and Qt4, although 
&lt;br&gt;you will need to build a separate version of the library for the two 
&lt;br&gt;different qt frameworks.
&lt;br&gt;Please note, the Qt3 version has less features and it is there only for 
&lt;br&gt;old qt applications; furthermore, QSyntaxHighlighter class in Qt3 has 
&lt;br&gt;some design problems which make it quite inefficient to use.
&lt;br&gt;&lt;br&gt;any feedback is more than welcome :-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24355524&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Source-Highlight-Qt-tp24355524p24355524.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24013119</id>
	<title>GNU Source-highlight 3.1 (with Library)</title>
	<published>2009-06-13T07:40:49Z</published>
	<updated>2009-06-13T07:40:49Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">GNU Source-highlight 3.1 has been released. &amp;nbsp;It is available from
&lt;br&gt;ftp://ftp.gnu.org/gnu/src-highlite/ and mirrors of that site (see
&lt;br&gt;list of mirror sites at &lt;a href=&quot;http://www.gnu.org/order/ftp.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/order/ftp.html&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;GNU Source-highlight, given a source file, produces a document with
&lt;br&gt;syntax highlighting.
&lt;br&gt;&lt;br&gt;Since version 3.0, source-higlight also provides a *C++ highlight
&lt;br&gt;library* that you can use in your programs!
&lt;br&gt;&lt;br&gt;You can also find details about new features of source-highlight on my
&lt;br&gt;blog, in this area:
&lt;br&gt;&lt;a href=&quot;http://tronprog.blogspot.com/search/label/source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com/search/label/source-highlight&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;At the moment this package can handle
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ada
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Autoconf files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C/C++
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C#
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Configuration files (generic)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bib
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bison
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Caml
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Changelog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Css
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Diff
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Flex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Fortran
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* GLSL
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Haxe
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Html
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ini files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Java
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Javascript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* KDE desktop files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Latex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ldap files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Logtalk
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Log files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* lsm files (Linux Software Map)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Lua
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Makefile
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* M4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Oz	 &amp;nbsp; &amp;nbsp; (new)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Pascal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Perl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* pkg-config files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* PHP
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Postscript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Prolog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Properties files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Python
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* RPM Spec files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ruby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Scala
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Shell
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* S-Lang
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Sql
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Tcl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XOrg conf files
&lt;br&gt;&lt;br&gt;as source languages, and
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; HTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; XHTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ANSI color escape sequences
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; LaTeX
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Texinfo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DocBook
&lt;br&gt;&lt;br&gt;as output format.
&lt;br&gt;&lt;br&gt;Language definition files and output language definition files, which
&lt;br&gt;are part of source-highlight distribution, can also be downloaded
&lt;br&gt;independently from, respectively:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/lang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/lang_files/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/outlang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/outlang_files/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight depends on the Boost regex library
&lt;br&gt;(&lt;a href=&quot;http://www.boost.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/&lt;/a&gt;) so you need to install this library (boost
&lt;br&gt;libraries are usually shipped with most distributions).
&lt;br&gt;&lt;br&gt;Source-highlight can also generate cross references; in order to do this
&lt;br&gt;it relies on GNU Ctags, &lt;a href=&quot;http://ctags.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ctags.sourceforge.net&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Version 3.1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * library utility functions to retrieve .style and .css files
&lt;br&gt;&amp;nbsp; &amp;nbsp; * fixed library manual link in index.html
&lt;br&gt;&amp;nbsp; &amp;nbsp; * doxyfile is now distributed
&lt;br&gt;&amp;nbsp; &amp;nbsp; * better formatting for &amp;lt; and &amp;gt; in latex output
&lt;br&gt;&amp;nbsp; &amp;nbsp; * doxygen documentation can be built even when building in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; a separate directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; * added man page for source-highlight-settings
&lt;br&gt;&amp;nbsp; &amp;nbsp; * language definition for Oz, thanks to David Bremners
&lt;br&gt;&lt;br&gt;Visit the Source-highlight home page at
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;br&gt;Anonymous CVS access is also available. &amp;nbsp;Please visit
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/src-highlite/&lt;/a&gt;&lt;br&gt;where you can find detailed descriptions of how to access the CVS
&lt;br&gt;(read-only). &amp;nbsp;Release-candidate versions are available
&lt;br&gt;through CVS.
&lt;br&gt;&lt;br&gt;Bug reports should go to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24013119&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-source-highlight@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;The following mailing lists are available:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24013119&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;help-source-highlight@...&lt;/a&gt;, for generic discussions about the
&lt;br&gt;program and for asking for help about it (open mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24013119&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info-source-highlight@...&lt;/a&gt;, for receiving information about
&lt;br&gt;new releases and features (read-only mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;br&gt;if you want to subscribe to a mailing list just go to the URL and follow
&lt;br&gt;the instructions, or send me an e-mail and I'll subscribe you.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24013119&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GNU-Source-highlight-3.1-%28with-Library%29-tp24013119p24013119.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23470269</id>
	<title>GNU Source-highlight 3.0 (with Library)</title>
	<published>2009-05-10T06:50:25Z</published>
	<updated>2009-05-10T06:50:25Z</updated>
	<author>
		<name>Lorenzo Bettini</name>
	</author>
	<content type="html">GNU Source-highlight 3.0 has been released. &amp;nbsp;It is available from
&lt;br&gt;ftp://ftp.gnu.org/gnu/src-highlite/ and mirrors of that site (see
&lt;br&gt;list of mirror sites at &lt;a href=&quot;http://www.gnu.org/order/ftp.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/order/ftp.html&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;GNU Source-highlight, given a source file, produces a document with
&lt;br&gt;syntax highlighting.
&lt;br&gt;&lt;br&gt;Since version 3.0, source-higlight also provides a *C++ highlight 
&lt;br&gt;library* that you can use in your programs!
&lt;br&gt;&lt;br&gt;You can also find details about new features of source-highlight on my
&lt;br&gt;blog, in this area:
&lt;br&gt;&lt;a href=&quot;http://tronprog.blogspot.com/search/label/source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com/search/label/source-highlight&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;At the moment this package can handle
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ada
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Autoconf files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C/C++
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* C#
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Configuration files (generic) &amp;nbsp; &amp;nbsp; (new)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bib
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Bison
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Caml
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Changelog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Css
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Diff
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Flex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Fortran
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* GLSL
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Haxe
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Html
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ini files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Java
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Javascript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* KDE desktop files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Latex
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ldap files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Logtalk
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Log files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* lsm files (Linux Software Map)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Lua
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Makefile
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* M4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Pascal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Perl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* pkg-config files &amp;nbsp; &amp;nbsp; (new)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* PHP
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Postscript
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Prolog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Properties files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Python
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* RPM Spec files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Ruby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Scala
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Shell
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* S-Lang
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Sql
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Tcl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* XOrg conf files
&lt;br&gt;&lt;br&gt;as source languages, and
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; HTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; XHTML
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ANSI color escape sequences
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; LaTeX
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Texinfo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DocBook
&lt;br&gt;&lt;br&gt;as output format.
&lt;br&gt;&lt;br&gt;Language definition files and output language definition files, which
&lt;br&gt;are part of source-highlight distribution, can also be downloaded
&lt;br&gt;independently from, respectively:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/lang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/lang_files/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://www.gnu.org/software/src-highlite/outlang_files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite/outlang_files/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Source-highlight depends on the Boost regex library
&lt;br&gt;(&lt;a href=&quot;http://www.boost.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.boost.org/&lt;/a&gt;) so you need to install this library (boost
&lt;br&gt;libraries are usually shipped with most distributions).
&lt;br&gt;&lt;br&gt;Source-highlight can also generate cross references; in order to do this
&lt;br&gt;it relies on GNU Ctags, &lt;a href=&quot;http://ctags.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ctags.sourceforge.net&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Version 3.0
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * provides a library for highlighting that can be used
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; by other programs.
&lt;br&gt;&amp;nbsp; &amp;nbsp; * &amp;nbsp;--regex-range (highlight only specified lines of an input file,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; according to specific regular expressions describing the delimiting
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; lines).
&lt;br&gt;&amp;nbsp; &amp;nbsp; * deal with HTML5 features (thanks to Simon Pieters)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * use --docdir for documentation directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; * --binary-output command line option to write output files in binary
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; mode
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Added the program source-highlight-settings to write a configuration
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; file for source-highlight (and its library) in the user home 
&lt;br&gt;directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp; * languange definition for generic configuration files
&lt;br&gt;&amp;nbsp; &amp;nbsp; * languange definition for pkg-config files
&lt;br&gt;&amp;nbsp; &amp;nbsp; * the input language is now discovered also using the whole file
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; name (besides the file extension if any)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * in .lang files one can specify the exit level
&lt;br&gt;&lt;br&gt;&lt;br&gt;Visit the Source-highlight home page at
&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;br&gt;Anonymous CVS access is also available. &amp;nbsp;Please visit
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/src-highlite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/src-highlite/&lt;/a&gt;&lt;br&gt;where you can find detailed descriptions of how to access the CVS
&lt;br&gt;(read-only). &amp;nbsp;Release-candidate versions are available
&lt;br&gt;through CVS.
&lt;br&gt;&lt;br&gt;Bug reports should go to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470269&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-source-highlight@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;The following mailing lists are available:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470269&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;help-source-highlight@...&lt;/a&gt;, for generic discussions about the
&lt;br&gt;program and for asking for help about it (open mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/help-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/help-source-highlight&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470269&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info-source-highlight@...&lt;/a&gt;, for receiving information about
&lt;br&gt;new releases and features (read-only mailing list),
&lt;br&gt;&lt;a href=&quot;http://mail.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;br&gt;if you want to subscribe to a mailing list just go to the URL and follow
&lt;br&gt;the instructions, or send me an e-mail and I'll subscribe you.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lorenzo
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
&lt;br&gt;ICQ# lbetto, 16080134 &amp;nbsp; &amp;nbsp; (GNU/Linux User # 158233)
&lt;br&gt;HOME: &lt;a href=&quot;http://www.lorenzobettini.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lorenzobettini.it&lt;/a&gt;&amp;nbsp;MUSIC: &lt;a href=&quot;http://www.purplesucker.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.purplesucker.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/supertrouperabba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/supertrouperabba&lt;/a&gt;&lt;br&gt;BLOGS: &lt;a href=&quot;http://tronprog.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tronprog.blogspot.com&lt;/a&gt;&amp;nbsp; &lt;a href=&quot;http://longlivemusic.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://longlivemusic.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/src-highlite&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/src-highlite&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengetopt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengetopt&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnu.org/software/gengen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/software/gengen&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://doublecpp.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doublecpp.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Info-source-highlight mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470269&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Info-source-highlight@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-source-highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-source-highlight&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Source-Highlight---Announce-f1798.html&quot; embed=&quot;fixTarget[1798]&quot; target=&quot;_top&quot; &gt;Gnu - Source Highlight - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GNU-Source-highlight-3.0-%28with-Library%29-tp23470269p23470269.html" />
</entry>

</feed>
