svn commit: samba r2510 - in branches/SAMBA_4_0/source/include: .

jelmer at samba.org jelmer at samba.org
Wed Sep 22 11:24:08 GMT 2004


Author: jelmer
Date: 2004-09-22 11:24:07 +0000 (Wed, 22 Sep 2004)
New Revision: 2510

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/include&rev=2510&nolog=1

Log:
Make C++ compilers happy, use ifdef instead of if

Modified:
   branches/SAMBA_4_0/source/include/includes.h


Changeset:
Modified: branches/SAMBA_4_0/source/include/includes.h
===================================================================
--- branches/SAMBA_4_0/source/include/includes.h	2004-09-22 10:48:32 UTC (rev 2509)
+++ branches/SAMBA_4_0/source/include/includes.h	2004-09-22 11:24:07 UTC (rev 2510)
@@ -374,25 +374,25 @@
 #endif
 #endif
 
-#if HAVE_KRB5_H
+#ifdef HAVE_KRB5_H
 #include <krb5.h>
 #else
 #undef HAVE_KRB5
 #endif
 
-#if HAVE_GSSAPI_H
+#ifdef HAVE_GSSAPI_H
 #include <gssapi.h>
 #endif
 
-#if HAVE_GSSAPI_GSSAPI_H
+#ifdef HAVE_GSSAPI_GSSAPI_H
 #include <gssapi/gssapi.h>
 #endif
 
-#if HAVE_GSSAPI_GSSAPI_GENERIC_H
+#ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
 #include <gssapi/gssapi_generic.h>
 #endif
 
-#if HAVE_COM_ERR_H
+#ifdef HAVE_COM_ERR_H
 #include <com_err.h>
 #endif
 



More information about the samba-cvs mailing list