D'après ce que j'ai compris les autotools permettent d'avoir des logiciels cross-platform...
voir http://www.lrde.epita.fr/~adl/autotools.html et http://en.wikipedia.org/wiki/Autotools:
"
Consider C functions...
that do not exist everywhere (e.g., strtod())
that have different names (e.g., strchr() vs. index())
that have varying prototypes
(e.g., int setpgrp(void); vs. int setpgrp(int, int);)
that can behave differently (e.g., malloc(0);)
that might require other libraries
(is pow() in libm.so or in libc.so?)
that can be defined in different headers
(string.h vs. strings.h vs. memory.h)
How should a package deal with those?
"
=>autotools...
je sait pas si ça fait tout...mais ca peut énormément aider
[^] # Re: oui c'est possible
Posté par GNUtoo . En réponse au message Migration SCO -> Linux. Évalué à 2.
voir http://www.lrde.epita.fr/~adl/autotools.html et http://en.wikipedia.org/wiki/Autotools:
"
Consider C functions...
that do not exist everywhere (e.g., strtod())
that have different names (e.g., strchr() vs. index())
that have varying prototypes
(e.g., int setpgrp(void); vs. int setpgrp(int, int);)
that can behave differently (e.g., malloc(0);)
that might require other libraries
(is pow() in libm.so or in libc.so?)
that can be defined in different headers
(string.h vs. strings.h vs. memory.h)
How should a package deal with those?
"
=>autotools...
je sait pas si ça fait tout...mais ca peut énormément aider