- milestone: --> Compilation Issues
You should probably note in the documentation that the
build only works using the Qt tmake, which only goes up
to v1.8 If you search Freshmeat for tmake, you get
this project: http://tmake.sourceforge.net/ which looks
like they took up where Qt left off, but it doesn't
work for the xxdiff build.
Once I straightened that out, I ran into a build
problem linking to libqt-mt and libXext This appears
to be an issue between the 32 & 64 bit libraries.
There is probably a more elegant & robust solution, but
I simply replaced this line in the makefile:
LIBS = $(SUBLIBS) -L$(QTDIR)/lib -L/usr/X11R6/lib
-lpthread -lqt-mt -lXext -lX11 -lm
with this one:
LIBS = $(SUBLIBS) -L/usr/lib/qt3/lib64 -L/usr/X11R6/lib
-L/usr/X11R6/lib64 -lpthread -lqt-mt -lXext -lX11 -lm
Thanks for a great tool - nothing else comes close!
Eric