Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives to Autoconf and Autotools? [closed]

I'm a very frequent user of the GNU Autotools (mostly Autoconf, occasionally Libtool). I'm working on a project where portability is going to be a sticking point.. Yet, the rest of the team is just not comfortable working with m4. I got this in my inbox from not one, but four people:

m4 is NOT lisp, dammit!

Anyway, perhaps someone could recommend something Python or PHP based? I'm working on the C end of a much larger tree; I can be sure either Python or PHP 5 will be present, as they are prerequisites.

like image 481
Tim Post Avatar asked Mar 01 '09 18:03

Tim Post


People also ask

What is a configure AC file?

The configure.ac file is used to create the ./configure script. It consists of a series of macros which are processed and expanded by autoconf . These macros can check for packages and libraries, handle --enable and --with switches, and generate various files.

What is autoconf used for?

GNU Autoconf is a tool for producing configure scripts for building, installing, and packaging software on computer systems where a Bourne shell is available. Autoconf is agnostic about the programming languages used, but it is often used for projects using C, C++, Fortran, Fortran 77, Erlang, or Objective-C.

What is DNL in configure AC?

dnl is an m4 macro that discards all input that follows it on the same line (including the newline).

What is autoconf M4?

Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention.


2 Answers

I'm taking the chance of being downvoted but, I must admit, that unfortunately there is no real substitute for autotools. CMake, SCons, bjam are nice but, when it comes to serious work... it is quite clear that autotools are superior, not because CMake can't do the same thing, but because it is just much harder to do so with it.

For example, CMake, the most popular alternative to autotools, has the following drawbacks:

  • No support of gettext. This may be a real problem when you need to manage a lot of translations and translated source code.
  • No support for an uninstall target. It is quite unpleasant to find out that you can't uninstall the program you installed.
  • No automatic build of both shared and static libraries.
  • Documentation is very limited and bad.

And so on.

There are many other points. Unfortunately, there is no real high quality substitute for autotools. On the other hand, if you develop on Windows and for Visual Studio, then you can't use autotools and you need to choose CMake that provides such tools.

like image 59
Artyom Avatar answered Sep 22 '22 06:09

Artyom


I have heard good things about CMake which tries to solve the same problems. Here is the wikipedia article

like image 39
epatel Avatar answered Sep 19 '22 06:09

epatel