| 93 | = Creating the config.h = |
| 94 | |
| 95 | As many autoconf-based programs, bc relies on a `config.h` file generated by the build system. |
| 96 | |
| 97 | For MutekH, we will create this config.h from the config.h.in file. |
| 98 | |
| 99 | Let's create a `config.h` file |
| 100 | {{{ |
| 101 | #define HAVE_VPRINTF |
| 102 | #define STDC_HEADERS |
| 103 | #define DC_VERSION "1.06" |
| 104 | #define DC_COPYRIGHT "GNU" |
| 105 | #define BC_COPYRIGHT "GNU" |
| 106 | #define HAVE_LIMITS_H |
| 107 | #define HAVE_STDARG_H |
| 108 | #define HAVE_STDLIB_H |
| 109 | #define HAVE_STRING_H |
| 110 | #define HAVE_UNISTD_H |
| 111 | #define PACKAGE "bc for MutekH" |
| 112 | #define VERSION "1.06" |
| 113 | }}} |
| 114 | |