diff options
author | jilles <jilles@FreeBSD.org> | 2010-06-13 17:04:42 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2010-06-13 17:04:42 +0000 |
commit | ca657bda4305aef04ee69064b99b13eb6ace3157 (patch) | |
tree | 1398b2f6d7ed4692109b8d8152941726f776f350 /lib/libedit/Makefile | |
parent | 72eba20f2c3d064ee0cc48d8ded11924960daf75 (diff) | |
download | FreeBSD-src-ca657bda4305aef04ee69064b99b13eb6ace3157.zip FreeBSD-src-ca657bda4305aef04ee69064b99b13eb6ace3157.tar.gz |
libedit: Add basic filename completion code from NetBSD.
This will be used to provide filename completion in sh(1).
Changes from the NetBSD code:
* wide character support disabled, as in the rest of libedit
* config.h and related portability stuff reduced/disabled, as in the rest
of libedit
Submitted by: Guy Yur
Obtained from: NetBSD
Diffstat (limited to 'lib/libedit/Makefile')
-rw-r--r-- | lib/libedit/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index 97c1f92..afcf1af 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -6,7 +6,8 @@ LIB= edit SHLIB_MAJOR= 7 SHLIBDIR?= /lib -OSRCS= chared.c common.c el.c emacs.c fcns.c help.c hist.c key.c map.c \ +OSRCS= chared.c common.c el.c emacs.c fcns.c filecomplete.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 DPADD= ${LIBNCURSES} |