blob: 560dfc41aec8158914c1b4f47096b3016d8a6dd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
# $LynxId: cfg_defs.sh,v 1.2 2021/01/07 00:38:05 tom Exp $
# Translate the lynx_cfg.h and config.cache data into a table, useful for
# display at runtime.
TOP="${1-.}"
OUT=cfg_defs.h
# just in case we want to run this outside the makefile
: "${SHELL:=/bin/sh}"
{
cat <<EOF
#ifndef CFG_DEFS_H
#define CFG_DEFS_H 1
static const struct {
const char *name;
const char *value;
} config_cache[] = {
EOF
sed \
-e '/^#/d' \
-e 's/^.[^=]*_cv_//' \
-e 's/=\${.*=/=/' \
-e 's/}$//' \
config.cache | $SHELL "$TOP/scripts/cfg_edit.sh"
cat <<EOF
};
static const struct {
const char *name;
const char *value;
} config_defines[] = {
EOF
${FGREP-fgrep} '#define' lynx_cfg.h |
sed -e 's@ @ @g' \
-e 's@ @ @g' \
-e 's@^[ ]*#define[ ]*@@' \
-e 's@[ ]*/\*.*\*/@@' \
-e 's@[ ][ ]*@=@' \
| $SHELL "$TOP/scripts/cfg_edit.sh"
cat <<EOF
};
#endif /* CFG_DEFS_H */
EOF
} >$OUT
|