diff options
author | herrb <herrb> | 2003-06-01 13:46:51 +0000 |
---|---|---|
committer | herrb <herrb> | 2003-06-01 13:46:51 +0000 |
commit | f873cf1f1e613a1b66d048dae47e2381d15013de (patch) | |
tree | 108243d23141b5113077d4190f61994ad9255ff9 | |
parent | 3bf2e71495eb9745a3ee50b0030332f96a9696e8 (diff) |
- don't build HTML manual pages when building 3rd party software in ports
- KerberosIV has been removed from OpenBSD-current.
(XXX need to fix the test before next release)
-rw-r--r-- | config/cf/OpenBSD.cf | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/cf/OpenBSD.cf b/config/cf/OpenBSD.cf index faeec0db7..be5486042 100644 --- a/config/cf/OpenBSD.cf +++ b/config/cf/OpenBSD.cf @@ -1,4 +1,4 @@ -XCOMM platform: $XFree86: xc/config/cf/OpenBSD.cf,v 3.84tsi Exp $ +XCOMM platform: $XFree86: xc/config/cf/OpenBSD.cf,v 3.85 2003/05/27 21:56:39 tsi Exp $ XCOMM #ifndef OSName @@ -33,6 +33,7 @@ XCOMM operating system: OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVe #define TopXInclude -I/usr/X11R6/include #define ImakeCmd imake -DPorts #define DocDir /usr/local/share/doc +#define BuildHtmlManPages NO #endif @@ -54,7 +55,12 @@ XCOMM operating system: OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVe #define HasSetProcTitle YES #define HasZlib YES #ifndef HasKrbIV -#define HasKrbIV YES +# if OSMajorVersion == 2 || OSMajorVersion == 3 && OSMinorVersion < 3 +# define HasKrbIV YES +# else + /* Kerberos IV was removed after OpenBSD 3.3 */ +# define HasKrbIV NO +# endidf #endif #define HasUsableFileMmap YES #define HasShadowPasswd NO |