diff options
-rw-r--r-- | scripts/kconfig/Makefile | 10 | ||||
-rwxr-xr-x | scripts/kconfig/check.sh | 14 |
2 files changed, 16 insertions, 8 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index a28414de8..f56863f7c 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -117,14 +117,8 @@ clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ | |||
117 | .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c | 117 | .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c |
118 | subdir- += lxdialog | 118 | subdir- += lxdialog |
119 | 119 | ||
120 | # Needed for systems without gettext | 120 | # Add environment specific flags |
121 | KBUILD_HAVE_NLS := $(shell \ | 121 | HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS)) |
122 | if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \ | ||
123 | then echo yes ; \ | ||
124 | else echo no ; fi) | ||
125 | ifeq ($(KBUILD_HAVE_NLS),no) | ||
126 | HOSTCFLAGS += -DKBUILD_NO_NLS | ||
127 | endif | ||
128 | 122 | ||
129 | # generated files seem to need this to find local include files | 123 | # generated files seem to need this to find local include files |
130 | HOSTCFLAGS_lex.zconf.o := -I$(src) | 124 | HOSTCFLAGS_lex.zconf.o := -I$(src) |
diff --git a/scripts/kconfig/check.sh b/scripts/kconfig/check.sh new file mode 100755 index 000000000..fa59cbf9d --- /dev/null +++ b/scripts/kconfig/check.sh | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/sh | ||
2 | # Needed for systems without gettext | ||
3 | $* -xc -o /dev/null - > /dev/null 2>&1 << EOF | ||
4 | #include <libintl.h> | ||
5 | int main() | ||
6 | { | ||
7 | gettext(""); | ||
8 | return 0; | ||
9 | } | ||
10 | EOF | ||
11 | if [ ! "$?" -eq "0" ]; then | ||
12 | echo -DKBUILD_NO_NLS; | ||
13 | fi | ||
14 | |||