blob: 55b79ba1ba2a5e4c84cb6cc3bf5f25dbb92a3e89 [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