|
Home > Archive > Unix Programming > January 2006 > GNU build tools / which version
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
GNU build tools / which version
|
|
| gelbeiche 2006-01-18, 5:55 pm |
| Is it from a programmers point of view always wise to
use the latest (stable) version of automake/autoconf ?
I ask because the user of the complete software package
does not require the tools (but only the configure script),
so the problem is only related to the programmer of the
software.
This leads to the question: Should one enforce some version
rules by AC_PREREQ / AUTOMAKE_OPTIONS or not ?
What are the recommendations , how is it handled by others ?
| |
| Måns Rullgård 2006-01-18, 5:55 pm |
| gelbeiche <borstel@fliegenpilz.de> writes:
> Is it from a programmers point of view always wise to
> use the latest (stable) version of automake/autoconf ?
Unless you rely on some behavior that only exists in older versions,
yes. If you do require an old version, you should consider updating
your scripts to work with the most recent version.
> I ask because the user of the complete software package
> does not require the tools (but only the configure script),
> so the problem is only related to the programmer of the
> software.
>
> This leads to the question: Should one enforce some version
> rules by AC_PREREQ / AUTOMAKE_OPTIONS or not ?
It is good to require the minimum version that works. This could be
older than the version you are using for development.
> What are the recommendations , how is it handled by others ?
Every way imaginable and then some.
--
Måns Rullgård
mru@inprovide.com
| |
| gelbeiche 2006-01-19, 6:24 pm |
| Måns Rullgård <mru@inprovide.com> writes:
> gelbeiche <borstel@fliegenpilz.de> writes:
>
>
> Unless you rely on some behavior that only exists in older versions,
> yes. If you do require an old version, you should consider updating
> your scripts to work with the most recent version.
>
>
> It is good to require the minimum version that works. This could be
> older than the version you are using for development.
>
Thanks for your explanations !
|
|
|
|
|