ALL,
I have a project on GitHub which is an application I'm still developing.
On Linux I'm using Anjuta as an IDE to generate the Makefile and build it.
The problem I'm facing is that I just build myself a newer machine with the newer set of autotools and now the project fails to build because its Makefile is set to use the older version.
In particular make complains about using aclocal version 1.15 and the newer box have aclocal version 1.16.
What would be the process of making the code build I presume I need to run some kind of reconfiguration tool to make the configure aware of the upgrade. I just don't know how and what.
Also, if someone can help on what files needs to be in the source control so that every single time I update everything will be regenerated automatically.
TIA!!