summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-01-17 10:44:13 +1100
committerDamien Miller <djm@mindrot.org>2001-01-17 10:44:13 +1100
commita64b57a157068c793ac7be2ad276b208a7d10a90 (patch)
tree966f015cf6741ad92d33ae9ffed39bd1210c7380 /defines.h
parent21de45085360271197f24b872320fa231c96810b (diff)
- (djm) Make PAM support optional, enable with --with-pam
- (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which provides a crypt() of its own) - (djm) Avoid a warning in bsd-bindresvport.c - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This can cause weird segfaults errors on Solaris
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/defines.h b/defines.h
index 79aab5ab6..26c532c92 100644
--- a/defines.h
+++ b/defines.h
@@ -332,10 +332,6 @@ struct winsize {
332# define __attribute__(x) 332# define __attribute__(x)
333#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */ 333#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
334 334
335#if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
336# define USE_PAM
337#endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
338
339#ifndef SUN_LEN 335#ifndef SUN_LEN
340#define SUN_LEN(su) \ 336#define SUN_LEN(su) \
341 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path)) 337 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))