From 930c32472fca7aeeffdf3406ac4114a3a99000f5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 22 Sep 2004 11:24:07 +0000 Subject: r2510: Make C++ compilers happy, use ifdef instead of if (This used to be commit 7c31998da148cca53e798e3d89b9b754de2e64ac) --- source4/include/includes.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source4/include/includes.h b/source4/include/includes.h index bf566a01d6..a5fd620049 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -374,25 +374,25 @@ #endif #endif -#if HAVE_KRB5_H +#ifdef HAVE_KRB5_H #include #else #undef HAVE_KRB5 #endif -#if HAVE_GSSAPI_H +#ifdef HAVE_GSSAPI_H #include #endif -#if HAVE_GSSAPI_GSSAPI_H +#ifdef HAVE_GSSAPI_GSSAPI_H #include #endif -#if HAVE_GSSAPI_GSSAPI_GENERIC_H +#ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H #include #endif -#if HAVE_COM_ERR_H +#ifdef HAVE_COM_ERR_H #include #endif -- cgit