From 1c4c9c7f550071c1fa1831a5c8e55828ae7aec68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 7 Sep 2008 21:07:53 +0000 Subject: [PATCH] toggle on HAVE_LIBINTL git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23736 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5_locl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/krb5/krb5_locl.h b/lib/krb5/krb5_locl.h index 02aac6f14..244758dd1 100644 --- a/lib/krb5/krb5_locl.h +++ b/lib/krb5/krb5_locl.h @@ -116,10 +116,10 @@ struct sockaddr_dl; #include #endif -#if 1 -#define N_(x,y) (x) -#else +#ifdef HAVE_LIBINTL #define N_(x,y) dgettext("heimdal_krb5", x) +#else +#define N_(x,y) (x) #endif