Mail Archives: djgpp/2003/06/03/00:24:59
> From: CBFalconer <cbfalconer AT yahoo DOT com>
> Newsgroups: comp.os.msdos.djgpp
> Date: Mon, 02 Jun 2003 10:29:56 GMT
>
> I haven't the vaguest idea what that configure script is doing,
> except it appears to run sh and sed incessantly, with an
> occasional call to chmod.
The configure script probes the target system for the exdistence of
header files and library functions that might or might not exist, and
then produces a config.h header file and Makefile files in various
subdirectories of the distribution that build the program(s) given
the detected functionality.
For example, if the library doesn't have the strncasecmp function, the
symbol HAVE_STRNCASECMP will be left undefined in config.h, and the
Makefile's will be made to compile and link the version of strncasecmp
supplied with the package.
- Raw text -