diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-06-02 18:54:09 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-06-02 23:02:31 +0100 |
commit | 5fb822fc4839e253d2f839ba7966bc25a5329ac1 (patch) | |
tree | 9b1c23a2b76b464089421af949d31a98d4896cd6 /src/OS | |
parent | 63af6f3a15c5c4779761761bd4d6185e4679eafc (diff) |
Move native sha1 implementation from auths to toplevel, only used for non-TLS builds
In TLS builds, use the TLS-related crypt library
Diffstat (limited to 'src/OS')
-rw-r--r-- | src/OS/Makefile-Base | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index 37126869d..6b936976c 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -473,15 +473,18 @@ eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \ # in one. This list is overkill, but it doesn't really take much time to # rebuild Exim on a modern computer. -HDRS = config.h \ +HDRS = blob.h \ + config.h \ dbfunctions.h \ dbstuff.h \ exim.h \ functions.h \ globals.h \ + hash.h \ local_scan.h \ macros.h \ mytypes.h \ + sha_ver.h \ structs.h \ os.h PHDRS = ../config.h \ @@ -599,7 +602,7 @@ environment.o: $(HDRS) environment.c filter.o: $(HDRS) filter.c filtertest.o: $(HDRS) filtertest.c globals.o: $(HDRS) globals.c -hash.o: $(HDRS) sha_ver.h hash.h blob.h hash.c +hash.o: $(HDRS) hash.c header.o: $(HDRS) header.c host.o: $(HDRS) host.c ip.o: $(HDRS) ip.c |