CCNPing: possibly undefined macro AM_PROG_CC_C_O

Hi,

CCNPing is a ping tool for CCNx to test connectivity between two nodes (hosts). When I installed on my Desktop, I didn’t face this problem: “possibly undefined macro AM_PROG_CC_C_O” at ‘make’ step. It seems to be a missconfiguration of autotools or something related to it.

Here is the solution that I’ve found after a little effort.

$ cd ccnping
$ libtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf

And then,

$ ./configure
$ make
$ sudo make install

That’s all,