Hi,
Compiling utils fail when disable NLS with the --disable-nls switch.
"mkfs.c:46: error: 'LC_ALL' undeclared (first use in this function)"
It is due to a missing locale.h header : When enabling NLS, nls.h
includes libintl.h, which in turn includes locale.h. When disabling NLS,
libintl.h isn't anymore included nor locale.h, which is needed for the
setlocale() calls.
Proposed patch :
--- util-linux-ng-2.13-rc2/include/nls.h.orig 2007-07-20
12:25:04.000000000 +0200
+++ util-linux-ng-2.13-rc2/include/nls.h 2007-07-20
12:24:57.000000000 +0200
@@ -13,6 +13,7 @@
# define N_(String) (String)
# endif
#else
+# include <locale.h>
# undef bindtextdomain
# define bindtextdomain(Domain, Directory) /* empty */
# undef textdomain
--
Gabriel
-
To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html