blob: 854d9c7c675ca4782702e83e1fa04b17aa47d6f8 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001#!/bin/sh
2# Needed for systems without gettext
Patrick Georgid5208402014-04-11 20:24:06 +02003$* -x c -o /dev/null - > /dev/null 2>&1 << EOF
Patrick Georgi0588d192009-08-12 15:00:51 +00004#include <libintl.h>
5int main()
6{
7 gettext("");
8 return 0;
9}
10EOF
11if [ ! "$?" -eq "0" ]; then
12 echo -DKBUILD_NO_NLS;
13fi
14