Add dynamic lookup support
[exim.git] / src / scripts / Configure-Makefile
index 9db9650951933df8aad2c0bcc6e47aa904b38035..1b2ea1e289a5c26f5479bf136ab32d4d6c6bbb49 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# $Cambridge: exim/src/scripts/Configure-Makefile,v 1.1 2004/10/06 15:07:40 ph10 Exp $
+# $Cambridge: exim/src/scripts/Configure-Makefile,v 1.3 2009/11/20 21:22:20 nm4 Exp $
 
 # Shell script to build Makefile in a build directory. It must be called
 # from inside the directory. It does its own checking of when to rebuild; it
@@ -107,7 +107,7 @@ do   if test -r ../$f
             echo "# End of $f"
             echo ""
      fi
-done >> $mft || exit 1
+done | sed 's/^LOOKUP_/export LOOKUP_/' >> $mft || exit 1
 
 # See if there is a definition of EXIM_PERL in what we have built so far.
 # If so, run Perl to find the default values for PERL_CC, PERL_CCOPTS,
@@ -129,6 +129,12 @@ if [ "${EXIM_PERL}" != "" ] ; then
     exit 1
   fi
 
+  EXTUTILS_EMBED_NOT_INSTALLED=`$PERL_COMMAND -MExtUtils::Embed -e ";" 2>&1`
+  if [ "${EXTUTILS_EMBED_NOT_INSTALLED}" != "" ] ; then
+    echo "Please install ExtUtils::Embed for $PERL_COMMAND"
+    exit 1;
+  fi
+
   mv $mft $mftt
   echo "PERL_CC=`$PERL_COMMAND -MConfig -e 'print $Config{cc}'`" >>$mft
   echo "PERL_CCOPTS=`$PERL_COMMAND -MExtUtils::Embed -e ccopts`" >>$mft
@@ -146,6 +152,7 @@ echo "" >>$mft
 # Finally, join on the generic base make file, which contains the actual
 # rules and stuff.
 
+echo "# From ../OS/Makefile-Base" >> $mft
 cat ../OS/Makefile-Base >> $mft || exit 1
 
 # If the new makefile is the same as the existing one, say so, and just