search for: init_pair

Displaying 4 results from an estimated 4 matches for "init_pair".

Did you mean: init_page
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
..., const static void attr_addstr(int attr, const char *str) { attron(attr); - addstr(str); + addstr((char *)str); attroff(attr); } @@ -1035,7 +1036,9 @@ int main(int argc, char **argv) nonl(); keypad(stdscr, TRUE); halfdelay(5); +#ifndef __sun__ use_default_colors(); +#endif init_pair(1, -1, COLOR_YELLOW); do { diff --git a/tools/xenstore/xenstored_core.c b/tools/xenstore/xenstored_core.c --- a/tools/xenstore/xenstored_core.c +++ b/tools/xenstore/xenstored_core.c @@ -1688,7 +1688,7 @@ static void write_pidfile(const char *pi if (lockf(fd, F_TLOCK, 0) == -1) exit(0);...
2006 Jun 03
4
xentop.c error
...n) xentop.c:864: error: `TRUE'' undeclared (first use in this function) xentop.c:865: warning: implicit declaration of function `halfdelay'' xentop.c:866: warning: implicit declaration of function `use_default_colors'' xentop.c:867: warning: implicit declaration of function `init_pair'' xentop.c:867: error: `COLOR_YELLOW'' undeclared (first use in this function) xentop.c:872: warning: implicit declaration of function `clear'' xentop.c:875: warning: implicit declaration of function `refresh'' xentop.c:877: warning: implicit declaration of function...
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
...0000000005e GLIBC_2.2.5 open 0000000000000000 DF *UND* 0000000000000028 GLIBC_2.2.5 feclearexcept 0000000000000000 DF *UND* 0000000000000093 GLIBC_2.2.5 wait 0000000000000000 DF *UND* 0000000000000025 GLIBC_2.2.5 getsid 0000000000000000 DF *UND* 0000000000000428 Base init_pair 0000000000000000 DF *UND* 000000000000008d GLIBC_2.2.5 statvfs 0000000000000000 DF *UND* 0000000000000068 GLIBC_2.2.5 sinh 0000000000000000 DF *UND* 0000000000000215 GLIBC_2.2.5 fpathconf 0000000000000000 DF *UND* 000000000000001b GLIBC_2.2.5 dladdr 0000000000000000 DF...
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB. I'm using clang-3.9 and this configuration: -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++