Finally, I found the problem, and fixed it!

The new tools tarball has a correct Makefile; download it at
http://www.dur.ac.uk/nick.white/tools/njwtesstools-20120922.tar.bz2

The problem was that the library flags needed to be passed to gcc
after everything else, for some reason. So rather than:
  cc `pkg-config --cflags --libs MagickWand` boxer.c -o boxer
It needed to be
  cc `pkg-config --cflags MagickWand` boxer.c -o boxer `pkg-config --libs 
MagickWand`

As I say, this is all sorted with the new Makefile, so everything
should build fine for you by just running "make"

Sorry for all the hassle, and thanks for all your help helping me
get to the bottom of it!

Nick

-- 
You received this message because you are subscribed to the Google
Groups "tesseract-ocr" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tesseract-ocr?hl=en

Reply via email to