build: use pkg-config for i18n
[exim.git] / src / scripts / drivers-Makefile
1 #! /bin/sh
2
3 # Copyright (c) The Exim Maintainers 1995 - 2024
4 # SPDX-License-Identifier: GPL-2.0-or-later
5
6 class=${CLASS:?}
7 classdef=${CLASSDEF:?}
8 drnames="${DRNAMES:?}"
9 egrep="${EGREP:?}"
10
11 # We turn the configure-built build-$foo/$class/Makefile.predynamic into Makefile.
12 # This is used for router and transport drivers, called from scripts/Configure-Makefile.
13
14 # We always re-exec ourselves at least once, because it's the cleanest and
15 # most portable way to turn on various features we expect of POSIX sh.
16 if [ -z "$EXIM_DRIVER_MAKEFILE_ADJUSTED" ]
17 then
18   SHELL=/bin/sh
19   EXIM_DRIVER_MAKEFILE_ADJUSTED=yes
20   export EXIM_DRIVER_MAKEFILE_ADJUSTED
21
22   # Solaris sh and tr are problematic until we get xpg4 variants
23   if [ -x /usr/xpg4/bin/sh ]
24   then
25     PATH="/usr/xpg4/bin:$PATH"
26     export PATH
27     SHELL=/usr/xpg4/bin/sh
28     export SHELL
29   fi
30
31   # IRIX uses /bin/ksh for sh but in a compatibility mode unless $_XPG == 1,
32   # where said compatibility mode disables $(...)
33   _XPG=1
34   export _XPG
35
36   # We need the _right_ tr, so must do that first; but if a shell which
37   # we're more confident is sane is available, let's try that.  Mostly,
38   # the problem is that "local" is not actually in "the" standard, it's
39   # just in every not-insane shell.  Though arguably, there are no shells
40   # with POSIX-ish syntax which qualify as "not insane".
41   for b in /bin/dash /bin/bash /usr/local/bin/bash
42   do
43     if [ -x "$b" ]
44     then
45       SHELL="$b"
46       break
47     fi
48   done
49   # if we get a report of a system with zsh but not bash, we can add that
50   # to the list, but be sure to enable sh_word_split in that case.
51
52   exec "$SHELL" "$0" "$@"
53 fi
54
55 input=$class/Makefile.predynamic
56 target=$class/Makefile.postdynamic
57 defs_source=Makefile-t
58 tag_marker='MAGIC-TAG-MODS-OBJ-RULES-GO-HERE'
59
60 tab='   '
61
62 # We rely on tr(1) for translating case below.  Some people export
63 # values of LC_CTYPE and LC_COLLATE which apparently break our assumptions.
64 # We're a script expecting certain output based on known inputs and not dealing
65 # with UTF8, so we should be safe doing this:
66 LC_ALL=C
67 export LC_ALL
68
69 if [ -f "$defs_source" ]
70 then
71   :
72   # we are happy
73 else
74   echo >&2 "$0: ERROR: MISSING FILE '${defs_source}'"
75   echo >&2 "$0: SHOULD HAVE BEEN CALLED FROM scripts/Configure-Makefile"
76   exit 1
77 fi
78
79 # nb: do not permit leading whitespace for this, as CFLAGS_DYNAMIC is exported
80 # to the lookups subdir via a line with leading whitespace which otherwise
81 # matches
82 if grep -q "^CFLAGS_DYNAMIC[ $tab?:]*=" "$defs_source"
83 then
84   # we have a definition, we're good to go
85   echo >&2 ">>> Creating $class/Makefile for building dynamic modules"
86   enable_dynamic=yes
87 else
88   echo >&2 ">>> Creating $class/Makefile without dynamic module support"
89   enable_dynamic=''
90   # We always do something now, since there should always be a lookup,
91   # and now we need to run in order to put the OBJ=$(OBJ)+ rules in.  So we
92   # continue on.
93 fi
94
95 # For the want_ checks, we need to let the user override values from the make
96 # command-line, not just check the Makefile.
97
98 want_dynamic() {
99   local dyn_name="${1#_}"
100   local re="(${classdef}|EXPERIMENTAL)_${dyn_name}[ $tab]*=[ $tab]*2"
101   env | ${egrep} -q "^$re"
102   if [ $? -eq 0 ]; then return 0; fi
103   ${egrep} -q "^[ $tab]*$re" "$defs_source"
104 }
105
106 want_not_disabled() {
107   local want_name="${1#_}"
108   [ "$want_name" = "$1" ] && return 1;
109   local re="DISABLED_${want_name}[ $tab]*=[ $tab]*."
110   env | ${egrep} -q "^$re"
111   [ $? -ne 0 ] && return 0
112   ${egrep} -q "^[ $tab]*$re" "$defs_source"
113   [ $? -ne 0 ] && return 0
114   return 1
115 }
116
117 want_at_all() {
118   local want_name="$1"
119   local re="(${classdef}|EXPERIMENTAL)_${want_name}[ $tab]*=[ $tab]*."
120   env | ${egrep} -q "^$re"
121   if [ $? -eq 0 ]; then return 0; fi
122   ${egrep} -q "^[ $tab]*$re" "$defs_source"
123 }
124
125 # The values of these variables will be emitted into the Makefile.
126
127 MODS=""
128 OBJ=""
129
130 emit_module_rule() {
131   local name="$1"
132   local mod_name pkgconf
133   if [ "${name%:*}" = "$name" ]
134   then
135     # Square brackets are redundant but benign for POSIX compliant tr,
136     # however Solaris /usr/bin/tr requires them. Sometimes Solaris
137     # gets installed without a complete set of xpg4 tools, sigh.
138     mod_name=$(echo $name | tr [A-Z] [a-z])
139   else
140     mod_name="${name#*:}"
141     name="${name%:*}"
142   fi
143
144   if want_dynamic "$name"
145   then
146     if [ -z "$enable_dynamic" ]; then
147       echo >&2 "Missing CFLAGS_DYNAMIC prevents building dynamic $name"
148       exit 1
149     fi
150     MODS="${MODS} ${mod_name#_}.so"
151     grep "^${classdef}_${name}_PC" "$defs_source" 1>&2
152     pkgconf=$(grep "^${classdef}_${name}_PC" "$defs_source")
153     if [ $? -eq 0 ]; then
154       pkgconf=$(echo $pkgconf | sed 's/^.*= *//')
155       echo "${classdef}_${mod_name#_}_INCLUDE = $(pkg-config --cflags $pkgconf)"
156       echo "${classdef}_${mod_name#_}_LIBS = $(pkg-config --libs $pkgconf)"
157     else
158       grep "^${classdef}_${name}_" "$defs_source"
159       echo "${classdef}_${mod_name#_}_INCLUDE = \$(${classdef}_${name}_INCLUDE)"
160       echo "${classdef}_${mod_name#_}_LIBS = \$(${classdef}_${name}_LIBS)"
161     fi
162   elif want_not_disabled "$name"; then
163     OBJ="${OBJ} ${mod_name#_}.o"
164   elif want_at_all "$name"; then
165     OBJ="${OBJ} ${mod_name}.o"
166   fi
167 }
168
169 rm -f "$target"
170 exec 5>&1
171 exec > "$target"
172
173 sed -n "1,/$tag_marker/p" < "$input"
174
175 for name_mod in $drnames
176 do
177   emit_module_rule $name_mod
178 done
179
180 echo "MODS = $MODS"
181 echo "OBJ = $OBJ"
182
183 sed -n "/$tag_marker/,\$p" < "$input"
184
185 exec >&5
186
187 # Configure-Makefile will move $target into place
188
189 # vim: set ft=sh sw=2 :