diff options
author | Eduardo Chappa <chappa@washington.edu> | 2017-09-29 23:51:00 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2017-09-29 23:51:00 -0600 |
commit | 4681adf1bb1d0a1313706d7d96a3ef930ebe5fd9 (patch) | |
tree | a0d1bfd05325921860e7578a54b7b4afb3112262 /imap/src/osdep/unix | |
parent | 4ef47e8fa6934d003434f3a37875d0abb98636d8 (diff) | |
download | alpine-4681adf1bb1d0a1313706d7d96a3ef930ebe5fd9.tar.xz |
* NTLM authentication support with the ntlm library, in Unix systems.
Based on code provided by Maciej W. Rozycki.
Diffstat (limited to 'imap/src/osdep/unix')
-rw-r--r-- | imap/src/osdep/unix/Makefile | 2 | ||||
-rw-r--r-- | imap/src/osdep/unix/Makefile.ntl | 27 |
2 files changed, 28 insertions, 1 deletions
diff --git a/imap/src/osdep/unix/Makefile b/imap/src/osdep/unix/Makefile index 14975c82..8d740bb4 100644 --- a/imap/src/osdep/unix/Makefile +++ b/imap/src/osdep/unix/Makefile @@ -922,7 +922,7 @@ osdep.o:mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \ gethstid.c getspnam.c \ gr_wait.c gr_wait4.c gr_waitp.c \ kerb_mit.c \ - auth_ext.c auth_gss.c auth_log.c auth_md5.c auth_pla.c \ + auth_ext.c auth_gss.c auth_log.c auth_md5.c auth_ntl.c auth_pla.c \ pmatch.c scandir.c setpgrp.c strerror.c truncate.c write.c \ memmove.c memmove2.c memset.c \ tz_bsd.c tz_nul.c tz_sv4.c \ diff --git a/imap/src/osdep/unix/Makefile.ntl b/imap/src/osdep/unix/Makefile.ntl new file mode 100644 index 00000000..2ffa78ff --- /dev/null +++ b/imap/src/osdep/unix/Makefile.ntl @@ -0,0 +1,27 @@ +# ======================================================================== +# Copyright 1988-2007 University of Washington +# Copyright 2015 Imagination Technologies +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# +# ======================================================================== + +# Program: NTLM makefile +# +# Author: Maciej W. Rozycki +# +# Date: 25 January 2015 +# Last Edited: 25 January 2015 + + +# Extended flags needed for additional authenticators. You may need to modify. + +NTLMLDFLAGS= -lntlm + +ntl: # NTLM flags + echo $(NTLMLDFLAGS) >> LDFLAGS |