Comment Re:89 / 1998 (Score 3, Informative) 18
I'm 89, and as far as I remember, I created the account within an hour or so of the announcement of the new account system.
I'm 89, and as far as I remember, I created the account within an hour or so of the announcement of the new account system.
autoconf has two purposes:
Converting from a plain Makefile to configure.in+Makefile.in is straightforward if your Makefile already uses variables for binaries and directories.
The main reason to use autoconf is the second point above; when you write code that uses system calls (eg read(2), write(2)) and not libc calls (eg fread(3C), fwrite(3C)), that differ between operating systems (eg BSD vs SysV vs POSIX), and need to detect which taste you have.
To answer your questions: autoconf is something I hook in when:
"Little else matters than to write good code." -- Karl Lehenbauer