mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
{readline,history}.h are in /usr/include/edit so as to not conflict with
the GNU libreadline versions. To use the libedit readline(3) one should
add "-I/usr/include/edit" to their Makefile
(spelled "-I${DESTDIR}/${INCLUDEDIR}/edit" within the FreeBSD source tree).
* Enable its use in the BSD licensed utilities that support readline(3).
* To make it easier to sync libedit development with NetBSD, histedit.h
is moved into libedit's directory as history shows shown we keep merging
it into that location.
Obtained from: NetBSD
Sponsored by: Juniper Networks
8 lines
138 B
Makefile
8 lines
138 B
Makefile
# Copyright (c) 2011 David E O'Brien
|
|
# $FreeBSD$
|
|
|
|
INCS= readline.h history.h
|
|
|
|
INCSDIR= ${INCLUDEDIR}/edit/readline
|
|
|
|
.include <bsd.lib.mk>
|