Allow OS X to build without libintl

This commit is contained in:
Sandeep Mistry 2016-10-04 16:07:06 -04:00 committed by Ivan Grokhotkov
parent abecab7525
commit e96d4a0a32

View File

@ -5,8 +5,8 @@
ldflags()
{
if [ $(uname -s) == "Darwin" ]; then
#OSX seems to need intl too
echo -n "-lintl "
#OSX seems to need ncurses too
echo -n "-lncurses"
fi
pkg-config --libs ncursesw 2>/dev/null && exit
pkg-config --libs ncurses 2>/dev/null && exit
@ -41,6 +41,10 @@ ccflags()
else
echo '-DCURSES_LOC="<curses.h>"'
fi
if [ $(uname -s) == "Darwin" ]; then
#OSX doesn't have libintl
echo -n "-DKBUILD_NO_NLS"
fi
}
# Temp file, try to clean up after us