From c8803556ad427264420602ccfea77495ed892876 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Torgeir=20Lerker=C3=B8d?= Date: Tue, 20 Oct 2009 18:25:53 +0200 Subject: [PATCH] S4: Building on a system with libintl MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Heimdal's internal buildsystem uses a different define for checking for libintl than what samba uses. LIBINTL vs HAVE_LIBINTL_H. Since changing heimdals defineswould brake dropin merges of heimdal. This is a simple workaround in line with others in heimdal_build catalog. Signed-off-by: Torgeir Lerkerød --- source4/heimdal_build/config.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/source4/heimdal_build/config.h b/source4/heimdal_build/config.h index 8c0e6b0..8e9501b 100644 --- a/source4/heimdal_build/config.h +++ b/source4/heimdal_build/config.h @@ -36,4 +36,9 @@ #define uwrap_enabled() 0 #endif +/*Workaround for heimdal define vs samba define*/ +#ifdef HAVE_LIBINTL_H +#define LIBINTL +#endif + #endif -- 1.5.6.5