summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-25 02:27:24 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-25 02:27:24 +0000
commit671d0816e771abbc6a82e75cc7437d7e70d16a18 (patch)
treef22c9a8f7fa66bb19001c26a97da87eef62ead8d /lib-src
parent6e8a797773ee7eb6fc4583fa0c6edb787e8180cf (diff)
downloademacs-671d0816e771abbc6a82e75cc7437d7e70d16a18.tar.gz
Include des.h krb.h with no dir name if SOLARIS2.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/pop.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 4bd1d98beba..69c330b21c6 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -75,8 +75,13 @@ extern struct servent *hes_getservbyname (/* char *, char * */);
#ifdef KERBEROS
#ifndef KRB5
+#ifdef SOLARIS2
#include <des.h>
#include <krb.h>
+#else /* SOLARIS2 */
+#include <kerberos/des.h>
+#include <kerberos/krb.h>
+#endif /* SOLARIS2 */
#else /* KRB5 */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>