You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/getopt/files/getopt-1.1.5-setlocale.patch

13 lines
323 B

setlocale: we need locale.h for LC_ALL on OpenIndiana
--- getopt-1.1.5/nls.h
+++ getopt-1.1.5/nls.h
@@ -40,6 +40,7 @@
#undef setlocale
#define setlocale(Category,Locale) /* empty */
#else /* not WITHOUT_GETTEXT */
+#include <locale.h>
#include <libintl.h>
#define _(Text) gettext (Text)
#endif /* WITHOUT_GETTEXT */