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