[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lynx-dev undefined reference to `LIsListpageTitle'
From: |
Kim DeVaughn |
Subject: |
Re: lynx-dev undefined reference to `LIsListpageTitle' |
Date: |
Thu, 4 Mar 1999 11:24:26 -0800 |
On Thu, Mar 04, 1999, Artur Frysiak (address@hidden) said:
|
| I try to make rpm with lynx 2.8.2dev.19, but ...
Gee ... the rest of us just got -dev.18 ... :-) ...!
| LYMainLoop.o: In function `mainloop':
| LYMainLoop.o(.text+0xd13a): undefined reference to `LIsListpageTitle'
Looks like a typo at LYMainLoop.c:3221. That should be LYIsListpageTitle,
I do believe.
To wit:
* List Page is about. - kw
*/
if ( 0==strcmp(curdoc.address, LYlist_temp_url()) &&
- (LIsListpageTitle(curdoc.title ? curdoc.title :
""))
+ (LYIsListpageTitle(curdoc.title ? curdoc.title :
""))
) {
if (!curdoc.post_data ||
/*
| Other informations:
| ./configure \
| --prefix=/usr \
| --libdir=/etc \
| --with-screen=ncurses \
| --enable-nls \ <-- added to dev.19
| --without-included-gettext \ <-- added to dev.19
| --enable-warnings \
| --enable-default-colors \
| --enable-externs \
| --enable-internal-links \
| --enable-nsl-fork \
| --enable-persistent-cookies \
| --enable-gzip-help \
| --enable-addrlist-page \ <-- added to dev.19
| --with-zlib
Either make the above change, or configure using --disable-internal-links,
until -dev.19 really gets released :-) .
/kim