> I got errors, When I am going to create configure file through autoconf > command. > # autoconf
You shouldn't run autoconf directly. Run the bootstrap script instead in the root directory of the sources: $> ./bootstrap That will run autoreconf, and will create the configure file. -Aleksander
