mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
aa1e5ef5c1
cygwin provides the header file but the lib file needs to be added manually. A generic fix is to check if we can compile and link a program that uses gettext() and if it fails fall back to NO_NLS. International users of cygwin may have to specify HOST_LOADLIBES := "-lintl" on the make command line. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
14 lines
214 B
Bash
Executable file
14 lines
214 B
Bash
Executable file
#!/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
|
|
|