summaryrefslogtreecommitdiff
path: root/config/check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'config/check.sh')
-rwxr-xr-xconfig/check.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/check.sh b/config/check.sh
new file mode 100755
index 000000000..fa59cbf9d
--- /dev/null
+++ b/config/check.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Needed for systems without gettext
+$* -xc -o /dev/null - > /dev/null 2>&1 << EOF
+#include <libintl.h>
+int main()
+{
+ gettext("");
+ return 0;
+}
+EOF
+if [ ! "$?" -eq "0" ]; then
+ echo -DKBUILD_NO_NLS;
+fi
+