[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: compilation failure on ncurses/tinfo/lib_acs.c
From: |
Robert Joop |
Subject: |
Re: compilation failure on ncurses/tinfo/lib_acs.c |
Date: |
Fri, 21 Dec 2001 01:31:04 +0100 |
User-agent: |
Mutt/1.2.5i |
On 01-12-21 00:58:40 MET, Thomas Dickey wrote:
> If BROKEN_LINKER is defined, the related definitions should be (is, when
> I compile it):
>
> in include/curses.h:
>
> #if 1
you've got two places where you #define BROKEN_LINKER, in
include/ncurses_cfg.h and in include/term.h, but curses.h you don't use
it but have it replaced through configure, curses.h.in has got a
#if @BROKEN_LINKER@
smells like some mismatch...?
i've got a #if 0 there.
(your linker is broken, mine is not? i'm surprised, my old sunos 4.1.4
is less broken than yours on a probably newer system?)
> extern NCURSES_EXPORT_VAR(chtype*) _nc_acs_map(void);
> #define acs_map (_nc_acs_map())
> #else
> extern NCURSES_EXPORT_VAR(chtype) acs_map[];
> #endif
rj