View Single Post
Posts: 2,152 | Thanked: 1,490 times | Joined on Jan 2006 @ Czech Republic
#7
edit scripts/kconfig/lxdialog/check-lxdialog.sh to always return -lncurses
Code:
ldflags()
{
        $cc -print-file-name=libncursesw.so | grep -q /
        if [ $? -eq 0 ]; then
                echo '-lncursesw'
                exit
        fi
        $cc -print-file-name=libncurses.so | grep -q /
#       if [ $? -eq 0 ]; then
                echo '-lncurses'
                exit
#       fi
        $cc -print-file-name=libcurses.so | grep -q /
        if [ $? -eq 0 ]; then
                echo '-lcurses'
                exit
        fi
        exit 1
}
Originally Posted by spock128 View Post
Is there a default .config I can modify for my needs?
make n770_defconfig
make menuconfig
__________________
Newbies click here before posting. Thanks.

If you really need to PM me with troubleshooting question please consider posting it to the forum instead. It is OK to PM me a link to such post then. Thank you.
 

The Following User Says Thank You to fanoush For This Useful Post: