I pulled libxml2 library using git command "git clone git://git.gnome.org/libxml2" . As per README file instructions , I have to run "./configuration" first. But i could not find the configure file. what could be the issue? I am using RHEL6 machine.
Asked
Active
Viewed 1,049 times
2 Answers
3
To create the configure
(not configuration
) script, you need the GNU autoconf
tool.

choroba
- 231,213
- 25
- 204
- 289
-
so first i have to run autoconf to generate the configure file ? – BEPP Mar 16 '16 at 12:43
-
Yes. See [the documentation](http://www.gnu.org/software/autoconf/manual/autoconf.html#Making-configure-Scripts) for details. – choroba Mar 16 '16 at 12:50
1
You should probably download the latest official release from the FTP server. Releases ship with the configure
script.
If you really want to build a Git checkout, you have to install GNU Autoconf and create the configure script by running sh autogen.sh
in the libxml2 source directory.

nwellnhof
- 32,319
- 7
- 89
- 113