If you ever encounter this error:
eddy@twix:/tmp/wormux/wormux$ ./autogen.sh
[+] Clean files generated by autoconf, aclocal, automake and configure
[+] Run aclocal
[+] Run autoheader
[+] Run automake
configure.ac:25: required file `./config.rpath' not found
Try this simple fix:
eddy@twix:/tmp/wormux/wormux$ touch config.rpath
eddy@twix:/tmp/wormux/wormux$ ./autogen.sh
[+] Clean files generated by autoconf, aclocal, automake and configure
[+] Run aclocal
[+] Run autoheader
[+] Run automake
[+] Run autoconf
Now run ./configure
Now you can go on with your work. Credits go to Daniel P. Berrange: http://www.mail-archive.com/fedora-xen@redhat.com/msg01017.html
P.S.: Apparently this is an automake 1.10 issue and can be avoided by using automake 1.9
autoreconf -f -i usually helps, too.
ReplyDeleteThank you very much.
ReplyDeleteI got a help by your information.
:)
Thank you very much!
ReplyDeleteIf you're using gettext you should probably run 'gettextize' in your source tree. It may do more than you want it to but, like 'libtoolize' it does some magic that (among other things) puts the config.rpath file in place.
ReplyDeleteYMMV