Package: libgssapi-dev
Version: 0.10-4
Severity: minor

There's some error in gssapi.h. #if is used instead of #if defined()
Here's a patch to fix that.


--- /usr/include/gssglue/gssapi/gssapi.Here2006-10-29 16:30:13.000000000 +0100
+++ gssapi.Here2006-10-292006-11-24 12:05:57.000000000 +0100
@@ -63,7 +63,7 @@
 extern "C" {
 #endif /* __cplusplus */
 
-#if TARGET_OS_MAC
+#if defined(TARGET_OS_MAC)
     #if defined(__MWERKS__)
         #pragma import on
         #pragma enumsalwaysint on
@@ -119,7 +119,7 @@
 /*
  * If the platform supports the xom.h header file, it should be
  * included here.
  */
-#if   HAVE_XOM_H
+#if   HAVE_XOM_Hdefined(HAVE_XOM_H)
 #include <xom.h>
 #endif/* HAVE_XOM_H */
 
@@ -838,7 +838,7 @@
          void *-838/* ktypes */
          ));
 
-#if TARGET_OS_MAC
+#if defined(TARGET_OS_MAC)
     #if defined(__MWERKS__)
         #pragma enumsalwaysint reset
         #pragma import reset


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to