build: use pkg-config for i18n
[exim.git] / src / scripts / Configure-Makefile
1 #! /bin/sh
2 # Shell script to build Makefile in a build directory. It must be called
3 # from inside the directory. It does its own checking of when to rebuild; it
4 # just got too horrendous to get it right in "make", because of the optionally
5 # existing configuration files.
6 #
7 # Copyright (c) The Exim Maintainers 1995 - 2024
8 # SPDX-License-Identifier: GPL-2.0-or-later
9
10
11 LC_ALL=C
12 export LC_ALL
13
14
15 # First off, get the OS type, and check that there is a make file for it.
16
17 ostype=`../scripts/os-type -generic` || exit 1
18
19 if [ ! -r ../OS/Makefile-$ostype ] ; then
20   echo ""
21   echo "*** Sorry - operating system $ostype is not supported"
22   echo "*** See OS/Makefile-* for supported systems" 1>&2
23   echo ""
24   exit 1
25 fi
26
27 # We also need the architecture type, in order to test for any architecture-
28 # specific configuration files.
29
30 archtype=`../scripts/arch-type` || exit 1
31
32 # Now test for either the non-existence of Makefile, or for any of its
33 # components being newer. Note that the "newer" script gives the right
34 # answer (for our purposes) when the first file is non-existent.
35
36 editme=../Local/Makefile
37 rebuild=yes
38
39 if [ -f Makefile ] ; then
40   rebuild=no
41   if ../scripts/newer $editme Makefile || \
42      ../scripts/newer $editme-$ostype Makefile || \
43      ../scripts/newer $editme-$archtype Makefile || \
44      ../scripts/newer $editme-$ostype-$archtype Makefile || \
45      ../scripts/newer ../scripts/Configure-Makefile Makefile || \
46      ../scripts/newer ../OS/Makefile-Base Makefile || \
47      ../scripts/newer ../OS/Makefile-Default Makefile
48   then
49     rebuild=yes
50   fi
51 fi
52
53 # If the "build" variable is set it means that a build name was explicitly
54 # given. Arrange to pick up a build-specific configuration file.
55
56 if [ "X$build" != "X" ] ; then
57   mfb=Local/Makefile-$build
58   if ../scripts/newer $editme-$build Makefile ; then
59     rebuild=yes
60   fi
61 else
62   mfb=
63 fi
64
65
66 # Linux now whines about egrep, saying "use grep -E".
67 # Solarix doesn't support -E on grep.  Thanks so much for
68 # going non-back-compatible, Linux.
69 if [ "$ostype" != "SunOS5" ] ; then
70   egrep="grep -E"
71 else
72   egrep="egrep"
73 fi
74
75
76 # If Makefile is up-to-date, no need to rebuild it.
77
78 if [ $rebuild = no ] ; then
79   echo "\`Makefile' is up to date."
80   echo " "
81   exit
82 fi
83
84 # Makefile needs to be rebuilt in the current directory by joining
85 # the generic default makefile, the OS base makefile, and then local
86 # generic, OS-specific, architecture-specific, and OS+architecture-specific
87 # makefiles, if they exist. These files all contain macro definitions, with
88 # later definitions overriding earlier ones. Make a temporary file first, in
89 # case things go wrong. A second temporary is needed for sorting out the
90 # default Perl stuff. Use short macro names to save typing.
91
92 mf=Makefile
93 mft=$mf-t
94 mftt=$mf-tt
95 mftepcp=$mf-tepcp
96 mftepcp2=$mf-tepcp2
97
98 look_mf=lookups/Makefile
99 look_mf_pre=${look_mf}.predynamic
100 look_mf_post=${look_mf}.postdynamic
101
102 # Ensure the temporary does not exist and start the new one by setting
103 # the OSTYPE and ARCHTYPE variables.
104
105 rm -f $mft $mftt $mftepcp $mftepcp2 $look_mf-t
106 (echo "OSTYPE=$ostype"; echo "ARCHTYPE=$archtype"; echo "") > $mft || exit 1
107
108 # Now concatenate the files to the temporary file. Copy the files using sed to
109 # remove comments, blank lines, and trailing white space.
110
111 # BEWARE: a tab character is needed in the sed command below. It has had
112 # a nasty tendency to get lost in the past, causing a problem if a tab has
113 # actually been present in one of the files. Use a variable to hold a space
114 # and a tab to keep the tab in one place.
115
116 st='     '
117
118 for f in OS/Makefile-Default \
119          OS/Makefile-$ostype \
120          Local/Makefile \
121          Local/Makefile-$ostype \
122          Local/Makefile-$archtype \
123          Local/Makefile-$ostype-$archtype \
124          $mfb
125 do   if test -r ../$f
126      then   echo "# From $f"
127             sed "/^#/d;/^[$st]*\$/d;s/[$st]*\$//" ../$f || exit 1
128             echo "# End of $f"
129             echo ""
130      fi
131 done \
132      | sed 's/^TMPDIR=/EXIM_&/' \
133      >> $mft || exit 1
134
135 # handle PKG_CONFIG_PATH because we need it in our env, and we want to handle
136 # wildcards; note that this logic means all setting _appends_ values, never
137 # replacing; if that's a problem, we can revisit.
138 sed -n "s/^[$st]*PKG_CONFIG_PATH[$st]*[+]*=[$st]*//p" $mft | \
139   sed "s/[$st]*\$//" >> $mftepcp
140 if test -s ./$mftepcp
141 then
142   # expand any wildcards and strip spaces, to make it a real PATH-like variable
143   ( IFS=":${IFS-$st}"; for P in `cat ./$mftepcp`; do echo "$P"; done ) | xargs | sed "s/[$st]/:/g" >./$mftepcp2
144   sed "s/^/PKG_CONFIG_PATH='/" < ./$mftepcp2 | sed "s/\$/'/" > ./$mftepcp
145   . ./$mftepcp
146   export PKG_CONFIG_PATH
147   $egrep -v "^[$st]*PKG_CONFIG_PATH[$st]*=" ./$mft > ./$mftt
148   rm -f ./$mft
149   (
150     echo "# Collapsed PKG_CONFIG_PATH in build-prep:"
151     sed "s/'//g" ./$mftepcp
152     echo "# End of collapsed PKG_CONFIG_PATH"
153     echo ""
154     cat ./$mftt
155   ) > ./$mft
156   rm -f ./$mftt
157 fi
158 rm -f ./$mftepcp ./$mftepcp2
159
160 # handle pkg-config
161 # beware portability of extended regexps with sed.
162 $egrep "^[$st]*(AUTH|LOOKUP|SUPPORT)_[A-Z0-9_]*[$st]*=[$st]*" $mft | \
163   sed "s/[$st]*=/='/" | \
164   sed "s/\$/'/" > $mftt
165 $egrep "^[$st]*((USE_(OPENSSL|GNUTLS)_PC)|SUPPORT_TLS|USE_GNUTLS|PCRE2?_CONFIG|AVOID_GNUTLS_PKCS11)[$st]*=[$st]*" $mft | \
166   sed "s/[$st]*=/='/" | \
167   sed "s/\$/'/" >> $mftt
168 if test -s $mftt
169 then
170   (
171   echo "# pkg-config fixups"
172   . ./$mftt
173   for var in `cut -d = -f 1 < $mftt`; do
174     case $var in
175
176       USE_*_PC)
177         eval "pc_value=\"\$$var\""
178         need_this=''
179         need_core=''
180         if [ ".$DISABLE_TLS" = .yes ]; then
181           # no TLS, not referencing
182           true
183         elif [ ".$var" = ".USE_GNUTLS_PC" ] && [ ".$USE_GNUTLS" != "." ]; then
184           need_this=t
185           need_core="gnutls-special"
186         elif [ ".$var" = ".USE_OPENSSL_PC" ] && [ ".$USE_GNUTLS" = "." ]; then
187           need_this=t
188           need_core=t
189         fi
190         if [ ".$need_this" != "." ]; then
191           tls_include=`pkg-config --cflags $pc_value`
192           if [ $? -ne 0 ]; then
193             echo >&2 "*** Missing pkg-config for package $pc_value (for Exim $var build option)"
194             exit 1
195           fi
196           tls_libs=`pkg-config --libs $pc_value`
197           echo "TLS_INCLUDE=$tls_include"
198           echo "TLS_LIBS=$tls_libs"
199           # With hash.h pulling crypto into the core, we need to also handle that
200           if [ ".$need_this" = ".t" ]; then
201             echo "CFLAGS += $tls_include"
202             echo "LDFLAGS += $tls_libs"
203           elif [ ".$need_this" = ".gnutls-special" ]; then
204             if pkg-config --atleast-version=2.10 gnutls ; then
205               echo "CFLAGS += $tls_include"
206               echo "LDFLAGS += $tls_libs"
207             else
208               echo "CFLAGS += `libgcrypt-config --cflags`"
209               echo "LDFLAGS += `libgcrypt-config --libs`"
210             fi
211           fi
212         fi
213         ;;
214
215       *_PC)
216         eval "pc_value=\"\$$var\""
217         base=`echo $var | sed 's/_PC$//'`
218         eval "basevalue=\"\$$base\""
219         if [ ".$basevalue" = "." ]; then
220           # not pulling in this module, _PC defined as default? Ignore
221           true
222         elif [ $basevalue = 2 ]; then
223           # module; handled in scripts/lookups-Makefile
224           true
225         else
226           # main binary
227           cflags=`pkg-config --cflags $pc_value`
228           if [ $? -ne 0 ]; then
229             echo >&2 "*** Missing pkg-config for package $pc_value (for Exim $var build option)"
230             exit 1
231           fi
232           libs=`pkg-config --libs $pc_value`
233           if [ "$var" != "${var#LOOKUP_}" ]; then
234             echo "LOOKUP_INCLUDE += $cflags"
235             echo "LOOKUP_LIBS += $libs"
236           elif [ "$var" != "${var#AUTH_}" ]; then
237             echo "CFLAGS += $cflags"
238             echo "AUTH_LIBS += $libs"
239           elif [ "$var" != "${var#SUPPORT_}" ]; then
240             echo "CFLAGS += $cflags"
241             echo "LIBS += $libs"
242           else
243             echo >&2 "Don't know how to handle pkg-config for $var"
244           fi
245         fi
246         ;;
247
248       PCRE_CONFIG)
249         case $PCRE_CONFIG in
250           yes|YES|y|Y)
251              echo >&2 "pcre is no longer supported; migrate to pcre2"
252              exit 1
253             ;;
254         esac
255         ;;
256
257       PCRE2_CONFIG)
258         case $PCRE2_CONFIG in
259           yes|YES|y|Y)
260             cflags=`pcre2-config --cflags`
261             if [ $? -ne 0 ]; then
262               echo >&2 "*** Missing pcre2-config for regular expression support"
263               exit 1
264             fi
265             libs=`pcre2-config --libs8`
266             if [ ".$cflags" != "." ]; then
267               echo "INCLUDE += $cflags"
268             fi
269             echo "PCRE_LIBS=$libs"
270             ;;
271         esac
272         ;;
273
274       AVOID_GNUTLS_PKCS11)
275         echo "$var=yes"
276         ;;
277
278     esac
279   done
280   echo "# End of pkg-config fixups"
281   echo
282   ) >> $mft
283   subexit=$?
284   if [ $subexit -ne 0 ]; then
285     exit $subexit
286   fi
287 fi
288 rm -f $mftt
289
290
291 # look for RADIUS in $mft; add a SUPPORT_
292 if $egrep -q "^RADIUS_CONFIG_FILE" $mft; then
293   echo "# radius fixup"
294   $egrep -q "^SUPPORT_RADIUS" $mft || echo "SUPPORT_RADIUS=yes" >> $mft
295 fi
296 # also PERL
297 if $egrep -q "^EXIM_PERL" $mft; then
298   echo "# perl fixup"
299   $egrep -q "^SUPPORT_PERL" $mft || echo "SUPPORT_PERL=yes" >> $mft
300 fi
301
302
303 # make the lookups Makefile with the definitions
304 # the auxiliary script generates $look_mf_post from $look_mf_pre
305
306 cp ../src/lookups/Makefile $look_mf_pre
307 ../scripts/lookups-Makefile
308
309 # make the Makefiles for routers, transports, auths and miscmods
310 #
311 while read class classdef names
312 do
313   cp ../src/$class/Makefile $class/Makefile.predynamic
314   CLASS=$class CLASSDEF=$classdef DRNAMES="$names" EGREP="$egrep" ../scripts/drivers-Makefile
315   mv $class/Makefile.postdynamic $class/Makefile
316   rm $class/Makefile.predynamic
317 done <<-END
318  routers    ROUTER      ACCEPT DNSLOOKUP IPLITERAL IPLOOKUP MANUALROUTE QUERYPROGRAM REDIRECT
319  transports TRANSPORT   APPENDFILE AUTOREPLY LMTP PIPE QUEUEFILE SMTP
320  auths      AUTH        CRAM_MD5 CYRUS_SASL DOVECOT EXTERNAL GSASL HEIMDAL_GSSAPI PLAINTEXT SPA TLS
321  miscmods   SUPPORT     ARC _DKIM DMARC _EXIM_FILTER PAM PERL RADIUS _SIEVE_FILTER SPF
322 END
323
324 # See if there is a definition of EXIM_PERL in what we have built so far.
325 # If so, run Perl to find the default values for PERL_CC, PERL_CCOPTS,
326 # and PERL_LIBS. These need to be put at the top of the Makefile, so we rename
327 # what we have so far and then copy it afterwards. Use the value of PERL_COMMAND
328 # if it has been defined.
329
330 EXIM_PERL=`grep EXIM_PERL $mft`
331
332 PERL_COMMAND=`grep PERL_COMMAND $mft | sed -e "\\$!d;s/^[$st]*PERL_COMMAND[$st]*=[$st]*//"`
333 if [ "${PERL_COMMAND}" = "" ] ; then
334   PERL_COMMAND='perl'
335 fi
336
337 if [ "${EXIM_PERL}" != "" ] ; then
338   testperl=`$PERL_COMMAND --version`
339   if [ "$testperl" = "" ] ; then
340     echo "*** EXIM_PERL is set, but '$PERL_COMMAND --version' failed"
341     exit 1
342   fi
343
344   EXTUTILS_EMBED_NOT_INSTALLED=`$PERL_COMMAND -MExtUtils::Embed -e ";" 2>&1`
345   if [ "${EXTUTILS_EMBED_NOT_INSTALLED}" != "" ] ; then
346     echo "Please install ExtUtils::Embed for $PERL_COMMAND"
347     exit 1;
348   fi
349
350   perl_cc="`$PERL_COMMAND -MConfig -e 'print $Config{cc}'`"
351   perl_ccopts="`$PERL_COMMAND -MExtUtils::Embed -e ccopts`"
352   perl_libs="`$PERL_COMMAND -MExtUtils::Embed -e ldopts`"
353
354   # For the dynamic-module build, pull out all the -D & -I into another var,
355   # and -L (maybe & -l?) to another, both for feed to miscmods
356   # ending up as SUPPORT_PERL_INCLUDE & SUPPORT_PERL_LIB respectively
357
358   perl_cflags=`PERL_CCOPTS="$perl_ccopts" $PERL_COMMAND \
359                 -e 'my @list = split(" ", $ENV{PERL_CCOPTS});' \
360                 -e 'foreach (@list) {print "$_ " if (/^-[DI]/)}'`
361   perl_lflags=`PERL_LIBS="$perl_libs" $PERL_COMMAND \
362                 -e 'my @list = split(" ", $ENV{PERL_LIBS});' \
363                 -e 'foreach (@list) {print "$_ " if (/^-L/)}'`
364
365   mv $mft $mftt
366   echo "PERL_CC=${perl_cc}" >>$mft
367   echo "PERL_CCOPTS=${perl_ccopts}" >>$mft
368   echo "PERL_LIBS=${perl_libs}" >>$mft
369   echo "PERL_CFLAGS=${perl_cflags}" >>$mft
370   echo "PERL_LFLAGS=${perl_lflags}" >>$mft
371   echo "" >>$mft
372   cat $mftt >> $mft
373   rm -f $mftt
374 fi
375
376 # Record the build variable in the Makefile.
377
378 echo "build=$build" >>$mft
379 echo "" >>$mft
380
381 # Finally, join on the generic base make file, which contains the actual
382 # rules and stuff.
383
384 echo "# From ../OS/Makefile-Base" >> $mft
385 cat ../OS/Makefile-Base >> $mft || exit 1
386
387 # If the new makefile is the same as the existing one, say so, and just
388 # update the timestamp. Otherwise remove the old and install the new.
389
390 if      [ -s $mf ] && cmp -s $mft $mf && [ -s $look_mf ] && cmp -s $look_mf_post $look_mf
391 then    echo ">>> rebuilt $mf unchanged"
392         echo " "
393         touch $mf || exit
394         rm -f $mft $look_mf_pre $look_mf_post
395 elif    rm -f $mf $look_mf $look_mf_pre
396         mv $mft $mf
397         mv $look_mf_post $look_mf
398 then    echo ">>> New $mf & $look_mf installed"
399         echo '>>> Use "make makefile" if you need to force rebuilding of the makefile'
400         echo " "
401 else    echo " "
402         echo "*** Failed to install $mf - see $mft"
403         echo "    (or $look_mft)"
404         echo " "
405         exit 1;
406 fi
407
408 # vim: set ft=sh :
409 # End of Configure-Makefile