diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2003-01-29 01:06:15 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2003-01-29 01:06:15 +0000 |
commit | a01bf47081785f9fbc841a84ffbe8a5322f2f47e (patch) | |
tree | 433cb912822555cc12e024ddabc6617068671946 /secure | |
parent | bf857e69a22ecfc787e8d6f1788645805c2caa50 (diff) | |
download | src-a01bf47081785f9fbc841a84ffbe8a5322f2f47e.tar.gz src-a01bf47081785f9fbc841a84ffbe8a5322f2f47e.zip |
Force OPENSSL_NO_KRB5. OpenSSL's current implementation of RFC 2712
can only be built with MIT Kerberos.
If we didn't define this here, then SSL-using applications would have
to define OPENSSL_NO_KRB5 themselves in order to build.
Notes
Notes:
svn path=/head/; revision=110015
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypto/opensslconf-alpha.h | 2 | ||||
-rw-r--r-- | secure/lib/libcrypto/opensslconf-amd64.h | 2 | ||||
-rw-r--r-- | secure/lib/libcrypto/opensslconf-i386.h | 2 | ||||
-rw-r--r-- | secure/lib/libcrypto/opensslconf-ia64.h | 2 | ||||
-rw-r--r-- | secure/lib/libcrypto/opensslconf-powerpc.h | 2 | ||||
-rw-r--r-- | secure/lib/libcrypto/opensslconf-sparc64.h | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/secure/lib/libcrypto/opensslconf-alpha.h b/secure/lib/libcrypto/opensslconf-alpha.h index 53f7352ed697..14e5af5bf018 100644 --- a/secure/lib/libcrypto/opensslconf-alpha.h +++ b/secure/lib/libcrypto/opensslconf-alpha.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 diff --git a/secure/lib/libcrypto/opensslconf-amd64.h b/secure/lib/libcrypto/opensslconf-amd64.h index 53f7352ed697..14e5af5bf018 100644 --- a/secure/lib/libcrypto/opensslconf-amd64.h +++ b/secure/lib/libcrypto/opensslconf-amd64.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 diff --git a/secure/lib/libcrypto/opensslconf-i386.h b/secure/lib/libcrypto/opensslconf-i386.h index 48a1e037c390..736c996ce4c3 100644 --- a/secure/lib/libcrypto/opensslconf-i386.h +++ b/secure/lib/libcrypto/opensslconf-i386.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 diff --git a/secure/lib/libcrypto/opensslconf-ia64.h b/secure/lib/libcrypto/opensslconf-ia64.h index 53f7352ed697..14e5af5bf018 100644 --- a/secure/lib/libcrypto/opensslconf-ia64.h +++ b/secure/lib/libcrypto/opensslconf-ia64.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 diff --git a/secure/lib/libcrypto/opensslconf-powerpc.h b/secure/lib/libcrypto/opensslconf-powerpc.h index 48a1e037c390..736c996ce4c3 100644 --- a/secure/lib/libcrypto/opensslconf-powerpc.h +++ b/secure/lib/libcrypto/opensslconf-powerpc.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 diff --git a/secure/lib/libcrypto/opensslconf-sparc64.h b/secure/lib/libcrypto/opensslconf-sparc64.h index 53f7352ed697..14e5af5bf018 100644 --- a/secure/lib/libcrypto/opensslconf-sparc64.h +++ b/secure/lib/libcrypto/opensslconf-sparc64.h @@ -173,3 +173,5 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ +/* The Kerberos 5 support is MIT-specific. */ +#define OPENSSL_NO_KRB5 |