Changes for the PC due to tytso's changing the include structure
authorKeith Vetter <keithv@fusion.com>
Thu, 20 Apr 1995 20:01:50 +0000 (20:01 +0000)
committerKeith Vetter <keithv@fusion.com>
Thu, 20 Apr 1995 20:01:50 +0000 (20:01 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5405 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/Makefile.in
src/include/ChangeLog
src/include/krb5.h
src/lib/ChangeLog
src/lib/win_glue.c
src/windows/cns/changelo
src/windows/cns/cns.c
src/windows/cns/krbini.h
src/windows/cns/tktlist.c

index 9f8f0fc2c8ad56578b1a637b15fafed111c776c2..1ca3ab5dfea9d83ee948cde1192b41a2496b2d10 100644 (file)
@@ -1,3 +1,7 @@
+Thu Apr 20 12:45:07 1995 Keith Vetter (keithv@fusion.com)
+
+       * Makefile.in: bug that makefiles were always being reconfigured.
+
 Wed Apr 19 18:32:04 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: 
index 8e24335120b08350c99255b6509cbb1ce2b1eff3..a60b43b22aa05d0a21ec4128ea93cd4a89a80edd 100644 (file)
@@ -138,6 +138,7 @@ makefile-windows:: wconfig.exe config\pre.in config\post.in \
                lib\krb5\os\makefile.in lib\krb5\posix\makefile.in \
                lib\krb5\rcache\makefile.in \
                util\et\makefile.in
+       copy makefile.in makefile
        .\wconfig config <include\makefile.in >include\makefile
        .\wconfig config <include\krb5\makefile.in >include\krb5\makefile
        .\wconfig config <lib\makefile.in >lib\makefile
index c6a41934c464d68e7736a6a6875d95018f6ee1e1..6537129a1188f425da19048a4af3dcfbe5d5fec7 100644 (file)
@@ -1,3 +1,7 @@
+Thu Apr 20 12:15:54 1995 Keith Vetter (keithv@fusion.com)
+
+       * krb5.h: Needs SIZEOF_INT, SIZEOF_LONG defined for the PC.
+
 Wed Apr 29 10:00:00 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: duplicated the file copying stuff from 
index d06f121734430223469c750c5376e8bf03afe9d2..c1a8323a86c7d049ce75f1c30afc4bbf482bb760 100644 (file)
 #endif
 
 #ifdef _MSDOS
+
+#define SIZEOF_INT      2
+#define SIZEOF_LONG     4
+
 #ifndef KRB5_CONFIG__
 #define KRB5_PROVIDE_PROTOTYPES
 #define HAS_VOID_TYPE
index f13dfc10017e3672b753762471c05533abec0f2f..04c7217b13cbea5523bae203339ed4c148166ebd 100644 (file)
@@ -1,3 +1,7 @@
+Thu Apr 20 12:16:50 1995 Keith Vetter (keithv@fusion.com)
+
+       * win_glue.c: include k5-int.h instead of krb5.h.
+
 Mon Apr 17 17:47:07 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: forgot about the rule to make gssapi.lib on the PC.
index ae4947238350dcfd3d7b272e8e93d0486638bfae..cb67a3626c12f06be9c4f74bfec360a1d753afbc 100644 (file)
@@ -11,7 +11,7 @@
 
 /* We can't include winsock.h directly because of /Za (stdc) options */
 #define NEED_SOCKETS
-#include "krb5.h"
+#include "k5-int.h"
 
 int
 win_socket_initialize()
index f2843d82a4b2f58fe51274b285e6a44930724231..59f8c88dad2346ece325ff3996b399ca1ec1438d 100644 (file)
@@ -1,3 +1,10 @@
+Thu Apr 20 12:17:34 1995 Keith Vetter (keithv@fusion.com)
+
+       * cns.c, tktlist.c, krbini.h: Fixed up #include so it
+          it only relies on krb5.h. We now include winsock 
+          ourselves and we needed to pull one constant out of
+          k5-config.h (INI_KRB_CCACHE).
+
 Tue Apr 18 16:19:07 1995 Keith Vetter (keithv@fusion.com)
 
        * makefile: better compile flags.
index 6d4c6cdad23c1e27636de149ad1e74fff6604212..a93113de78c678eea54535fc696ffcc8db6e0141 100644 (file)
@@ -34,7 +34,7 @@
 #endif
 
 #ifdef KRB5
-       #define NEED_SOCKETS
+       #include "winsock.h"
        #include "krb5.h"
        #include "krbini.h"
        #include "com_err.h"
index da5aa88b4c7884bc4271a5c1f1b0996cf1aa3cc4..4b09b046a0478f27e50046f6fbf1243f394d03a5 100644 (file)
@@ -21,3 +21,4 @@
 #define DEF_KRB_REALMS  "krb.rea"         /* Default name for krb.realms file */
 #define INI_RECENT_LOGINS "Recent Logins"    
 #define INI_LOGIN       "Login"
+#define INI_KRB_CCACHE  "krb5cc"               /* From k5-config.h */
index 198e97bcdd9434950cf184f83adec54b5ba7616c..8e5db53958be1c284e96a075f3d3973a554be3ba 100644 (file)
@@ -26,7 +26,7 @@
 #endif
 
 #ifdef KRB5
-       #define NEED_SOCKETS
+       #include "winsock.h"
        #include "krb5.h"
     #include "com_err.h"