mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
add ncurses to prereq checks
SVN-Revision: 4244
This commit is contained in:
parent
b99cbf5267
commit
07eaf1e1b1
@ -84,6 +84,16 @@ $(eval $(call Require,working-g++, \
|
|||||||
No working GNU C++ Compiler (g++) was found on your system. \
|
No working GNU C++ Compiler (g++) was found on your system. \
|
||||||
))
|
))
|
||||||
|
|
||||||
|
define Require/ncurses
|
||||||
|
echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
|
||||||
|
gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out -lncurses -
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call Require,ncurses, \
|
||||||
|
No ncurses development files were not found on your system. \
|
||||||
|
))
|
||||||
|
|
||||||
|
|
||||||
define Require/zlib
|
define Require/zlib
|
||||||
echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
|
echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
|
||||||
gcc -include zlib.h -x c -o $(TMP_DIR)/a.out -lz -
|
gcc -include zlib.h -x c -o $(TMP_DIR)/a.out -lz -
|
||||||
|
Loading…
Reference in New Issue
Block a user