blob: 7f2dd1b9e60b2b93bb55c76c5654f49f9532d891 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#! /bin/sh
# We turn the configure-built build-$foo/lookups/Makefile.predynamic into Makefile
input=lookups/Makefile.predynamic
target=lookups/Makefile
defs_source=Makefile
tag_marker='MAGIC-TAG-MODS-OBJ-RULES-GO-HERE'
tab=' '
# We always do something now, since there should always be a lookup,
# and now we need to run in order to put the OBJ+= rules in.
if grep -q "^CFLAGS_DYNAMIC[ $tab]*=" "$defs_source"
then
# we have a definition, we're good to go
: # noop (true) statement for bash compatibility
else
echo >&2 "Missing CFLAGS_DYNAMIC inhibits building dynamic module lookup"
exit 1
fi
tmp="$target.t"
want_dynamic() {
local dyn_name="$1"
grep -q "^LOOKUP_${dyn_name}[ $tab]*=[ $tab]*2" "$defs_source"
}
want_at_all() {
local want_name="$1"
grep -q "^LOOKUP_${want_name}[ $tab]*=[ $tab]*." "$defs_source"
}
emit_module_rule() {
local lookup_name="$1"
local mod_name
if [ "${lookup_name%:*}" = "$lookup_name" ]
then
mod_name=$(echo $lookup_name | tr A-Z a-z)
else
mod_name="${lookup_name#*:}"
lookup_name="${lookup_name%:*}"
fi
if want_dynamic "$lookup_name"
then
echo "MODS += ${mod_name}.so"
grep "^LOOKUP_${lookup_name}_" "$defs_source"
echo "LOOKUP_${mod_name}_INCLUDE = \$(LOOKUP_${lookup_name}_INCLUDE)"
echo "LOOKUP_${mod_name}_LIBS = \$(LOOKUP_${lookup_name}_LIBS)"
elif want_at_all "$lookup_name"
then
echo "OBJ += ${mod_name}.o"
fi
}
exec 5>&1
exec > "$tmp"
sed -n "1,/$tag_marker/p" < "$input"
for name_mod in \
CDB DBM:dbmdb DNSDB DSEARCH IBASE LSEARCH MYSQL NIS NISPLUS ORACLE \
PASSWD PGSQL SQLITE TESTDB WHOSON
do
emit_module_rule $name_mod
done
if want_at_all LDAP
then
echo "OBJ += ldap.o"
fi
sed -n "/$tag_marker/,\$p" < "$input"
exec >&5
mv "$tmp" "$target"
# vim: set ft=sh sw=2 :
|