mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
The check for the library ncurses should use not use the header <curses.h> but <ncurses.h>, because on some platforms <curses.h> is not a drop-in replacement for <ncurses.h>: For example in Solaris, the symbol initscr is a typedef in <curses.h> to a symbol which does not exist in the library ncurses (initscr32). Simply use <ncurses.h> when you link to ncurses. Furthermore in Solaris, the header <ncurses.h> is in a subdirectory /usr/include/ncurses and not available via pkg-config. ASTERISK-15331 ASTERISK-14935 ASTERISK-12382 ASTERISK-9107 Change-Id: Ife367776b0ccf17d3fefed868245376bfb93745d
27 lines
619 B
Plaintext
27 lines
619 B
Plaintext
# NOTE: Names of _INCLUDE and _LIB entries in this file must be
|
|
# the exact uppercase equivalents of the names used for
|
|
# dependencies in menuselect for the same package.
|
|
|
|
CC=@CC@
|
|
|
|
OSARCH=@HOST_OS@
|
|
MENUSELECT_DEBUG=@MENUSELECT_DEBUG@
|
|
|
|
# The frontend can use curses, ncurses, newt or gtk2
|
|
|
|
CURSES_INCLUDE=@CURSES_INCLUDE@
|
|
CURSES_LIB=@CURSES_LIB@
|
|
|
|
GTK2_INCLUDE=@GTK2_INCLUDE@
|
|
GTK2_LIB=@GTK2_LIB@
|
|
|
|
NCURSES_INCLUDE=@NCURSES_INCLUDE@
|
|
NCURSES_LIB=@NCURSES_LIB@
|
|
HAVE_NCURSES_SUBDIR=@HAVE_NCURSES_SUBDIR@
|
|
|
|
NEWT_INCLUDE=@NEWT_INCLUDE@
|
|
NEWT_LIB=@NEWT_LIB@
|
|
|
|
LIBXML2_INCLUDE=@LIBXML2_INCLUDE@
|
|
LIBXML2_LIB=@LIBXML2_LIB@
|