September 2018
Intermediate to advanced
606 pages
14h 32m
English
The config.h file is generated from src/config.h.in, which contains preprocessor flags that are configured depending on the system capabilities:
/* Define if we have EBCDIC code */#undef EBCDIC/* Define unless no X support found */#undef HAVE_X11/* Define when terminfo support found */#undef TERMINFO/* Define when termcap.h contains ospeed */#undef HAVE_OSPEED/* ... */
An example generated from src/config.h can start like this example (definitions can differ depending on the environment):
/* Define if we have EBCDIC code *//* #undef EBCDIC *//* Define unless no X support found */#define HAVE_X11 1/* Define when terminfo support found */#define TERMINFO 1/* Define when termcap.h ...
Read now
Unlock full access