From 6e5dad49d9cfc8e8a3fc6c1e60733d6e25865ef7 Mon Sep 17 00:00:00 2001 From: Torgeir Lerkerød Date: Tue, 20 Oct 2009 18:25:53 +0200 Subject: 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 Signed-off-by: Stefan Metzmacher --- source4/heimdal_build/config.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/heimdal_build') diff --git a/source4/heimdal_build/config.h b/source4/heimdal_build/config.h index 8c0e6b0475..8e9501b23b 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 -- cgit