mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Allow OS X to build without libintl
This commit is contained in:
parent
abecab7525
commit
e96d4a0a32
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user