2009-08-12 17:00:51 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Needed for systems without gettext
|
2014-04-11 20:24:06 +02:00
|
|
|
$* -x c -o /dev/null - > /dev/null 2>&1 << EOF
|
2009-08-12 17:00:51 +02:00
|
|
|
#include <libintl.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
gettext("");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if [ ! "$?" -eq "0" ]; then
|
|
|
|
echo -DKBUILD_NO_NLS;
|
|
|
|
fi
|