Hopefully the final lot of test files.
[exim.git] / src / scripts / MakeLinks
index dd1b9eee0f735a07974cc41c8cef9f3cdb5bd326..120a25b9db04900354c826d7bd740966376e7628 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Cambridge: exim/src/scripts/MakeLinks,v 1.1 2004/10/06 15:07:40 ph10 Exp $
+# $Cambridge: exim/src/scripts/MakeLinks,v 1.6 2005/08/01 13:20:28 ph10 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.
@@ -33,14 +33,22 @@ cd pcre
 ln -s ../../src/pcre/Makefile            Makefile
 ln -s ../../src/pcre/config.h            config.h
 ln -s ../../src/pcre/dftables.c          dftables.c
-ln -s ../../src/pcre/internal.h          internal.h
+ln -s ../../src/pcre/pcre_internal.h     pcre_internal.h
 ln -s ../../src/pcre/pcre.h              pcre.h
-ln -s ../../src/pcre/maketables.c        maketables.c
-ln -s ../../src/pcre/get.c               get.c
-ln -s ../../src/pcre/pcre.c              pcre.c
+ln -s ../../src/pcre/pcre_maketables.c   pcre_maketables.c
+ln -s ../../src/pcre/pcre_config.c       pcre_config.c
+ln -s ../../src/pcre/pcre_get.c          pcre_get.c
+ln -s ../../src/pcre/pcre_globals.c      pcre_globals.c
+ln -s ../../src/pcre/pcre_compile.c      pcre_compile.c
+ln -s ../../src/pcre/pcre_exec.c         pcre_exec.c
+ln -s ../../src/pcre/pcre_fullinfo.c     pcre_fullinfo.c
 ln -s ../../src/pcre/pcretest.c          pcretest.c
-ln -s ../../src/pcre/printint.c          printint.c
-ln -s ../../src/pcre/study.c             study.c
+ln -s ../../src/pcre/pcre_printint.c     pcre_printint.c
+ln -s ../../src/pcre/pcre_study.c        pcre_study.c
+ln -s ../../src/pcre/pcre_tables.c       pcre_tables.c
+ln -s ../../src/pcre/pcre_try_flipped.c  pcre_try_flipped.c
+ln -s ../../src/pcre/pcre_version.c      pcre_version.c
+ln -s ../../src/pcre/ucp.h               ucp.h
 cd ..
 
 # Likewise for the lookups
@@ -74,6 +82,10 @@ ln -s ../../src/lookups/passwd.h         passwd.h
 ln -s ../../src/lookups/passwd.c         passwd.c
 ln -s ../../src/lookups/pgsql.h          pgsql.h
 ln -s ../../src/lookups/pgsql.c          pgsql.c
+ln -s ../../src/lookups/spf.h            spf.h
+ln -s ../../src/lookups/spf.c            spf.c
+ln -s ../../src/lookups/sqlite.h         sqlite.h
+ln -s ../../src/lookups/sqlite.c         sqlite.c
 ln -s ../../src/lookups/testdb.h         testdb.h
 ln -s ../../src/lookups/testdb.c         testdb.c
 ln -s ../../src/lookups/whoson.h         whoson.h
@@ -241,4 +253,27 @@ 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
+ln -s ../src/dk.c              dk.c
+ln -s ../src/dk.h              dk.h
+
 # End of MakeLinks