Put # for cpp directives in first column
authorKen Raeburn <raeburn@mit.edu>
Tue, 9 Jul 2002 19:39:04 +0000 (19:39 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 9 Jul 2002 19:39:04 +0000 (19:39 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14624 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/krb5.hin
src/krb524/ChangeLog
src/krb524/krb524.h
src/lib/krb5/ChangeLog
src/lib/krb5/ccache/ChangeLog
src/lib/krb5/ccache/cc_file.c
src/lib/krb5/krb5_libinit.c
src/util/et/ChangeLog
src/util/et/error_message.c

index 8b82ec97d322f7ef08d4405e7275db6672614e94..b8db935f9f1aec8dbbd577bce2b344eec65ec4be 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-09  Ken Raeburn  <raeburn@mit.edu>
+
+       * krb5.hin: Put # for cpp directives in first column.
+
 2002-07-07  Ken Raeburn  <raeburn@mit.edu>
 
        * k5-int.h: Always include socket support headers; don't check
index 6ee35fed0476c552da7bf919d1f0566f0857c35e..a8fa4766b9d9743a6fb146dbba7892e38b499707 100644 (file)
 #endif
 
 #if defined(macintosh) || (defined(__MACH__) && defined(__APPLE__))
-       #include <TargetConditionals.h>
-    #if TARGET_RT_MAC_CFM
-        #error "Use KfM 4.0 SDK headers for CFM compilation."
-    #endif
-
-       #ifndef KRB5_PRIVATE /* Allow e.g. build system to override */
-               #define KRB5_PRIVATE 0
-       #endif
+#      include <TargetConditionals.h>
+#    if TARGET_RT_MAC_CFM
+#      error "Use KfM 4.0 SDK headers for CFM compilation."
+#    endif
+
+#      ifndef KRB5_PRIVATE /* Allow e.g. build system to override */
+#              define KRB5_PRIVATE 0
+#      endif
 #else
 #if defined(_WIN32)
-       #ifndef KRB5_PRIVATE
-               #define KRB5_PRIVATE 0
-       #endif
+#      ifndef KRB5_PRIVATE
+#              define KRB5_PRIVATE 0
+#      endif
 #else
-       #ifndef KRB5_PRIVATE
-               #define KRB5_PRIVATE 1
-       #endif
+#      ifndef KRB5_PRIVATE
+#              define KRB5_PRIVATE 1
+#      endif
 #endif
 #endif
 
 KRB5INT_BEGIN_DECLS
 
 #if TARGET_OS_MAC
-    #if defined(__MWERKS__)
-        #pragma import on
-        #pragma enumsalwaysint on
-    #endif
-    #pragma options align=mac68k
+#    if defined(__MWERKS__)
+#      pragma import on
+#      pragma enumsalwaysint on
+#    endif
+#    pragma options align=mac68k
 #endif
 
 /* from profile.h */
@@ -2519,11 +2519,11 @@ krb5_prompt_type* KRB5_CALLCONV krb5_get_prompt_types
        (krb5_context context);
 
 #if TARGET_OS_MAC
-    #if defined(__MWERKS__)
-        #pragma enumsalwaysint reset
-        #pragma import reset
-    #endif
-       #pragma options align=reset
+#    if defined(__MWERKS__)
+#      pragma enumsalwaysint reset
+#      pragma import reset
+#    endif
+#      pragma options align=reset
 #endif
 
 KRB5INT_END_DECLS
index c86844a91ee29904f8dd46e12fa94e4b4e80ed39..2bc238cbe4f8df21e0f8e38c2fbf0bc254865dfc 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-09  Ken Raeburn  <raeburn@mit.edu>
+
+       * krb524.h: Put # for cpp directives in first column.
+
 2002-07-07  Ken Raeburn  <raeburn@mit.edu>
 
        * sendmsg.c (krb524_sendto_kdc): Update sendto_udp calling
index 50645ff75f4c296c03af2150212abd1657479537..486f8a71ab04fd1370ce8b539d894bd1d9c2624c 100644 (file)
 #define KRB524_PORT 4444
 
 #if defined(macintosh) || (defined(__MACH__) && defined(__APPLE__))
-       #include <TargetConditionals.h>
-    #ifndef KRB524_PRIVATE /* Allow e.g. build system to override */
-               #define KRB524_PRIVATE 0
-       #endif
+#      include <TargetConditionals.h>
+#    ifndef KRB524_PRIVATE /* Allow e.g. build system to override */
+#              define KRB524_PRIVATE 0
+#      endif
 #else
-    #include "krb524_err.h"
-       #ifndef KRB524_PRIVATE
-               #define KRB524_PRIVATE 1
-       #endif
+#    include "krb524_err.h"
+#      ifndef KRB524_PRIVATE
+#              define KRB524_PRIVATE 1
+#      endif
 #endif 
 
 #ifndef KRB524INT_BEGIN_DECLS
 #endif
 
 #if TARGET_OS_MAC
-    #if defined(__MWERKS__)
-        #pragma import on
-        #pragma enumsalwaysint on
-    #endif
-    #pragma options align=mac68k
+#    if defined(__MWERKS__)
+#      pragma import on
+#      pragma enumsalwaysint on
+#    endif
+#    pragma options align=mac68k
 #endif
 
 KRB524INT_BEGIN_DECLS
@@ -113,11 +113,11 @@ int krb524_sendto_kdc
 #endif /* KRB524_PRIVATE */
 
 #if TARGET_OS_MAC
-    #if defined(__MWERKS__)
-        #pragma enumsalwaysint reset
-        #pragma import reset
-    #endif
-       #pragma options align=reset
+#    if defined(__MWERKS__)
+#      pragma enumsalwaysint reset
+#      pragma import reset
+#    endif
+#      pragma options align=reset
 #endif
 
 KRB524INT_END_DECLS
index 9d9c54a8270736c08dd7b936622e00cba52978ca..8648be004372e3f2df52a095c9a1cf955989b5eb 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-09  Ken Raeburn  <raeburn@mit.edu>
+
+       * krb5_libinit.c: Put # for cpp directives in first column.
+
 2002-07-03  Alexandra Ellwood <lxs@mit.edu>
 
        * krb5_libinit.c: Conditionalized error table loading for
index 6a9d054e9f8b535f82e035919e5c036f7a114ffe..b028d21e47c820192527bef425e9940d88a78bbb 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-09  Ken Raeburn  <raeburn@mit.edu>
+
+       * cc_file.c: Put # for cpp directives in first column.
+
 2002-60-20  Danilo Almeida  <dalmeida@mit.edu>
 
        * Makefile.in: Build cc accessor functions on Windows.
index 0028d37aea29a2b1aaa65d32ef7c7cac9ce9fe40..c18344eb27a467982b882251086399f408d03420 100644 (file)
@@ -91,7 +91,7 @@ fcc_nseq.c and fcc_read don't check return values a lot.
 #include "port-sockets.h"
 #endif
 #else
- #error find some way to use net-byte-order file version numbers.
+error find some way to use net-byte-order file version numbers.
 #endif
 
 krb5_error_code KRB5_CALLCONV krb5_fcc_close
index 27582b65fb3305dce3a7af66659eac8bfdcf40f4..e62b44cc04bba1288def6fe9c3c8e1b39e48bc9f 100644 (file)
@@ -1,7 +1,7 @@
 #include <assert.h>
 
 #if TARGET_OS_MAC
-    #include <Kerberos/com_err.h>
+#    include <Kerberos/com_err.h>
 #endif
 
 #include "krb5.h"
index 14376b76e4a41ce4914d6a061569bcfc33ada6db..b4a416e46ebdfb629fa4a8a7fd1e7c9f9dfc5090 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-09  Ken Raeburn  <raeburn@mit.edu>
+
+       * error_message.c: Put # for cpp directives in first column.
+
 2002-07-08  Tom Yu  <tlyu@mit.edu>
 
        * et_c.awk: Fix up <com_err.h> inclusion for windows and mac.
index 450148f06611ddca570b3a0e03e180acd27aa54c..9033f7f5c23ee6e6d2c59dd514abb45f85f2473e 100644 (file)
@@ -28,8 +28,8 @@
 #include "error_table.h"
 
 #if defined(macintosh) || (defined(__MACH__) && defined(__APPLE__))
-    #include <KerberosSupport/KerberosSupport.h>
-    #include <KerberosSupport/ErrorLib.h>
+#    include <KerberosSupport/KerberosSupport.h>
+#    include <KerberosSupport/ErrorLib.h>
 #endif
 
 #if defined(_WIN32)