XML-LibXML-Devel-SetLineNumber version 0.001
============================================

INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  make install

Makefile.PL will attempt to determine the location of your libxml2
compiled libraries and header files using xml2-config or pkg-config,
but this may fail. If they do, you can manually specify the locations
using environment variables. For example, in tcsh:

  setenv PERL_LIBXML_SETLINE_LIBS "-lxml2 -lz -lm"
  setenv PERL_LIBXML_SETLINE_INC "-I/usr/include/libxml2"
  
In bash:

  PERL_LIBXML_SETLINE_LIBS="-lxml2 -lz -lm"
  PERL_LIBXML_SETLINE_INC="-I/usr/include/libxml2"

In cmd.exe:

  set PERL_LIBXML_SETLINE_LIBS="-LC:\libxml2\lib"
  set PERL_LIBXML_SETLINE_INC="-IC:\libxml2\include"


COPYRIGHT AND LICENCE

Copyright (C) 2012 by Toby Inkster

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.