Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Oct 2001 01:25:26 -1000 (HST)
From:      Vincent Poy <vince@oahu.WURLDLINK.NET>
To:        "David E. O'Brien" <obrien@FreeBSD.ORG>
Cc:        <cvs-committers@FreeBSD.ORG>, <cvs-all@FreeBSD.ORG>
Subject:   Re: cvs commit: src/lib/libedit Makefile chared.c chared.h common.c editline.3 editrc.5 el.c el.h emacs.c hist.c hist.h history.c      key.c key.h makelist map.c map.h parse.c parse.h prompt.c 
Message-ID:  <20011001012452.M2795-100000@oahu.WURLDLINK.NET>
In-Reply-To: <200110010841.f918fRR58241@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
	This one fails here.  I do have the latest /usr/include installed.

sh /usr/src/lib/libedit/makelist -e chared.c common.c el.c emacs.c fcns.c
help.c hist.c key.c map.c parse.c prompt.c read.c refresh.c search.c sig.c
term.c tty.c vi.c > editline.c
sh /usr/src/lib/libedit/makelist -bh /usr/src/lib/libedit/vi.c
/usr/src/lib/libedit/emacs.c /usr/src/lib/libedit/common.c > help.h
rm -f .depend
mkdep -f .depend -a    -I. -I/usr/src/lib/libedit  editline.c
/usr/src/lib/libedit/tokenizer.c /usr/src/lib/libedit/history.c
cd /usr/src/lib/libedit; make _EXTRADEPEND
echo libedit.so.4: /usr/lib/libtermcap.a >> .depend
cc -O -pipe  -I. -I/usr/src/lib/libedit    -c editline.c -o editline.o
In file included from editline.c:4:
/usr/src/lib/libedit/chared.c:604: conflicting types for `el_insertstr'
/usr/include/histedit.h:142: previous declaration of `el_insertstr'
In file included from editline.c:6:
/usr/src/lib/libedit/el.c:62: conflicting types for `el_init'
/usr/include/histedit.h:83: previous declaration of `el_init'
/usr/src/lib/libedit/el.c: In function `el_set':
/usr/src/lib/libedit/el.c:153: `EL_RPROMPT' undeclared (first use in this
function)
/usr/src/lib/libedit/el.c:153: (Each undeclared identifier is reported
only once
/usr/src/lib/libedit/el.c:153: for each function it appears in.)
/usr/src/lib/libedit/el.c:239: `EL_EDITMODE' undeclared (first use in this
function)
/usr/src/lib/libedit/el.c: In function `el_get':
/usr/src/lib/libedit/el.c:268: `EL_RPROMPT' undeclared (first use in this
function)
/usr/src/lib/libedit/el.c:281: `EL_EDITMODE' undeclared (first use in this
function)
In file included from editline.c:15:
/usr/src/lib/libedit/read.c: In function `el_gets':
/usr/src/lib/libedit/read.c:460: `CC_REFRESH_BEEP' undeclared (first use
in this function)
In file included from editline.c:16:
/usr/src/lib/libedit/refresh.c: In function `re_refresh':
/usr/src/lib/libedit/refresh.c:207: `EL_RPROMPT' undeclared (first use in
this function)
*** Error code 1

Stop in /usr/src/lib/libedit.


Cheers,
Vince - vince@WURLDLINK.NET - Vice President             ________   __ ____
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation                                  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong                  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____]
Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

On Mon, 1 Oct 2001, David E. O'Brien wrote:

> obrien      2001/10/01 01:41:27 PDT
>
>   Modified files:
>     lib/libedit          Makefile chared.c chared.h common.c
>                          editline.3 editrc.5 el.c el.h emacs.c
>                          hist.c hist.h history.c key.c key.h
>                          makelist map.c map.h parse.c parse.h
>                          prompt.c prompt.h read.c refresh.c
>                          refresh.h search.c search.h sig.c sig.h
>                          sys.h term.c term.h tokenizer.c
>                          tokenizer.h tty.c tty.h vi.c
>     lib/libedit/TEST     test.c
>   Log:
>   + Sync with NetBSD, bringing in feature enhancements.
>   + Convert to ANSI-C function definitions
>   + style(9)
>
>   Submitted by:	kris
>
>   Revision  Changes      Path
>   1.22      +13 -7       src/lib/libedit/Makefile
>   1.4       +177 -154    src/lib/libedit/TEST/test.c
>   1.7       +459 -404    src/lib/libedit/chared.c
>   1.4       +58 -57      src/lib/libedit/chared.h
>   1.7       +527 -569    src/lib/libedit/common.c
>   1.17      +128 -54     src/lib/libedit/editline.3
>   1.13      +224 -23     src/lib/libedit/editrc.5
>   1.10      +347 -214    src/lib/libedit/el.c
>   1.4       +54 -41      src/lib/libedit/el.h
>   1.6       +258 -276    src/lib/libedit/emacs.c
>   1.4       +99 -74      src/lib/libedit/hist.c
>   1.3       +22 -19      src/lib/libedit/hist.h
>   1.5       +650 -470    src/lib/libedit/history.c
>   1.7       +420 -464    src/lib/libedit/key.c
>   1.3       +25 -27      src/lib/libedit/key.h
>   1.4       +97 -30      src/lib/libedit/makelist
>   1.7       +1221 -1202  src/lib/libedit/map.c
>   1.3       +26 -24      src/lib/libedit/map.h
>   1.8       +155 -148    src/lib/libedit/parse.c
>   1.3       +7 -5        src/lib/libedit/parse.h
>   1.4       +84 -35      src/lib/libedit/prompt.c
>   1.2       +11 -8       src/lib/libedit/prompt.h
>   1.11      +355 -286    src/lib/libedit/read.c
>   1.8       +908 -820    src/lib/libedit/refresh.c
>   1.2       +13 -10      src/lib/libedit/refresh.h
>   1.8       +446 -431    src/lib/libedit/search.c
>   1.3       +19 -17      src/lib/libedit/search.h
>   1.6       +96 -95      src/lib/libedit/sig.c
>   1.2       +19 -17      src/lib/libedit/sig.h
>   1.4       +24 -29      src/lib/libedit/sys.h
>   1.15      +1207 -1034  src/lib/libedit/term.c
>   1.5       +63 -61      src/lib/libedit/term.h
>   1.5       +284 -274    src/lib/libedit/tokenizer.c
>   1.3       +7 -6        src/lib/libedit/tokenizer.h
>   1.7       +923 -900    src/lib/libedit/tty.c
>   1.4       +56 -53      src/lib/libedit/tty.h
>   1.7       +504 -554    src/lib/libedit/vi.c
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe cvs-all" in the body of the message
>


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011001012452.M2795-100000>