For MS-DOS, use the brute force method of defining the size of
authorTheodore Tso <tytso@mit.edu>
Fri, 29 Sep 1995 06:04:19 +0000 (06:04 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 29 Sep 1995 06:04:19 +0000 (06:04 +0000)
variables; we should really get an autoconf file for MS-DOS.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6893 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/generic/ChangeLog
src/lib/gssapi/generic/gssapi.h

index 2bf0aad4a51a79078466728db2731879ae1128e5..984c59f7d4ed0d550e31f087e7cbaeedceb62a80 100644 (file)
@@ -1,3 +1,9 @@
+Fri Sep 29 02:02:35 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * gssapi.h: For MS-DOS, use the brute force method of defining the
+               size of variables; we should really get an autoconf file
+               for MS-DOS.
+
 Mon Sep 28 12:00:00 1995  John Rivlin <jrivlin@fusion.com>
        
        * gssapi_generic.h: Modified to use build in compiler symbols rather
index 7f79ca1bb4e41c71f1a59ecec5985c7faf7edb6b..f81fbae75681cb5b207877be37348896b1d6b0d2 100644 (file)
 /*
  * Determine platform-dependent configuration.
  */
-#ifdef USE_AUTOCONF_H
+#ifdef _MSDOS
+/* XXX brute force */
+#define GSS_SIZEOF_INT      2
+#define GSS_SIZEOF_SHORT    2
+#define GSS_SIZEOF_LONG     4
+#else /* _MSDOS_ */
+
+#if defined(USE_AUTOCONF_H)
 /*
  * Use autoconf generated header.
  */
 #define        GSS_SIZEOF_LONG         SIZEOF_LONG
 #define        GSS_SIZEOF_SHORT        SIZEOF_SHORT
 #else  /* USE_AUTOCONF_H */
+    
 /*
  * Do it brute force.
  */
-#ifdef _MSDOS
-#define GSS_SIZEOF_INT      2
-#define GSS_SIZEOF_SHORT    2
-#define GSS_SIZEOF_LONG     4
-/* #define     HAVE_STDDEF_H   1 */
-/* #define     HAVE_XOM_H      1 */
-#else  /* _MSDOS */
 #define GSS_SIZEOF_INT 4
 #define GSS_SIZEOF_LONG 4
 #define GSS_SIZEOF_SHORT 2
 /* #define     HAVE_STDDEF_H   1 */
 /* #define     HAVE_XOM_H      1 */
-#endif /* _MSDOS */
+
 #endif /* USE_AUTOCONF_H */
+#endif /* _MSDOS */
 
 /*
  * Define INTERFACE, INTERFACE_C and FAR.