X-Git-Url: https://git.exim.org/users/jgh/exim.git/blobdiff_plain/c09b95966e16e092453cdb797c8048579b3585bd..d2bf0b73d2ac72332258e31190bcc481317ac792:/src/scripts/MakeLinks diff --git a/src/scripts/MakeLinks b/src/scripts/MakeLinks index 3a1192c2e..ec2f93c8c 100755 --- a/src/scripts/MakeLinks +++ b/src/scripts/MakeLinks @@ -1,5 +1,5 @@ #!/bin/sh -# $Cambridge: exim/src/scripts/MakeLinks,v 1.1.2.3 2004/12/02 16:33:30 tom Exp $ +# $Cambridge: exim/src/scripts/MakeLinks,v 1.1.2.4 2004/12/10 09:24:38 tom Exp $ # Script to build links for all the exim source files from the system- # specific build directory. It should be run from within that directory. @@ -174,28 +174,15 @@ cd .. # but local_scan.c does not, because its location is taken from the build-time # configuration. Likewise for the os.c file, which gets build dynamically. -# NB: Files marked as "WITH_CONTENT_SCAN" contain only functions relating -# to content scanning. They are always linked, but their contents compile -# to nothing if WITH_CONTENT_SCAN is not set. - ln -s ../src/dbfunctions.h dbfunctions.h ln -s ../src/dbstuff.h dbstuff.h -# WITH_OLD_DEMIME -ln -s ../src/demime.h demime.h -# ln -s ../src/exim.h exim.h ln -s ../src/functions.h functions.h ln -s ../src/globals.h globals.h ln -s ../src/local_scan.h local_scan.h ln -s ../src/macros.h macros.h -# WITH_CONTENT_SCAN -ln -s ../src/mime.h mime.h -# ln -s ../src/mytypes.h mytypes.h ln -s ../src/osfunctions.h osfunctions.h -# WITH_CONTENT_SCAN -ln -s ../src/spam.h spam.h -# ln -s ../src/store.h store.h ln -s ../src/structs.h structs.h @@ -207,9 +194,6 @@ ln -s ../src/daemon.c daemon.c ln -s ../src/dbfn.c dbfn.c ln -s ../src/debug.c debug.c ln -s ../src/deliver.c deliver.c -# WITH_OLD_DEMIME -ln -s ../src/demime.c demime.c -# ln -s ../src/directory.c directory.c ln -s ../src/dns.c dns.c ln -s ../src/drtables.c drtables.c @@ -228,13 +212,7 @@ ln -s ../src/host.c host.c ln -s ../src/ip.c ip.c ln -s ../src/log.c log.c ln -s ../src/lss.c lss.c -# WITH_CONTENT_SCAN -ln -s ../src/malware.c malware.c -# ln -s ../src/match.c match.c -# WITH_CONTENT_SCAN -ln -s ../src/mime.c mime.c -# ln -s ../src/moan.c moan.c ln -s ../src/parse.c parse.c ln -s ../src/perl.c perl.c @@ -242,9 +220,6 @@ ln -s ../src/queue.c queue.c ln -s ../src/rda.c rda.c ln -s ../src/readconf.c readconf.c ln -s ../src/receive.c receive.c -# WITH_CONTENT_SCAN -ln -s ../src/regex.c regex.c -# ln -s ../src/retry.c retry.c ln -s ../src/rewrite.c rewrite.c ln -s ../src/rfc2047.c rfc2047.c @@ -253,13 +228,7 @@ ln -s ../src/search.c search.c ln -s ../src/sieve.c sieve.c ln -s ../src/smtp_in.c smtp_in.c ln -s ../src/smtp_out.c smtp_out.c -# WITH_CONTENT_SCAN -ln -s ../src/spam.c spam.c -# ln -s ../src/spool_in.c spool_in.c -# WITH_CONTENT_SCAN -ln -s ../src/spool_mbox.c spool_mbox.c -# ln -s ../src/spool_out.c spool_out.c ln -s ../src/store.c store.c ln -s ../src/string.c string.c @@ -272,4 +241,25 @@ ln -s ../src/tree.c tree.c ln -s ../src/verify.c verify.c ln -s ../src/version.c version.c +# WITH_CONTENT_SCAN +ln -s ../src/spam.c spam.c +ln -s ../src/spam.h spam.h +ln -s ../src/spool_mbox.c spool_mbox.c +ln -s ../src/regex.c regex.c +ln -s ../src/mime.c mime.c +ln -s ../src/mime.h mime.h +ln -s ../src/malware.c malware.c + +# WITH_OLD_DEMIME +ln -s ../src/demime.c demime.c +ln -s ../src/demime.h demime.h + +# EXPERIMENTAL_* +ln -s ../src/bmi_spam.c bmi_spam.c +ln -s ../src/bmi_spam.h bmi_spam.h +ln -s ../src/spf.c spf.c +ln -s ../src/spf.h spf.h +ln -s ../src/srs.c srs.c +ln -s ../src/srs.h srs.h + # End of MakeLinks