summaryrefslogtreecommitdiffstats
path: root/lib/libedit/shlib_version
AgeCommit message (Collapse)AuthorFilesLines
2015-01-13libedit claims compatibility with readline 4.2, so provide a stub forreyk1-1/+1
rl_set_keyboard_input_timeout() that was added in this version. Also crank the minor version. OK krw@ yasuoka@ deraadt@
2014-05-19Add a H_SAVE_FP operation to history() which lets the history be savednicm1-1/+1
to an open file pointer. From NetBSD via Eitan Adler. ok millert
2013-08-13Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther1-2/+2
members to 64bit types. Assign new syscall numbers for (almost all) the syscalls that involve the affected types, including anything with time_t, timeval, itimerval, timespec, rusage, dirent, stat, or kevent arguments. Add a d_off member to struct dirent and replace getdirentries() with getdents(), thus immensely simplifying and accelerating telldir/seekdir. Build perl with -DBIG_TIME. Bump the major on every single base library: the compat bits included here are only good enough to make the transition; the T32 compat option will be burned as soon as we've reached the new world are are happy with the snapshots for all architectures. DANGER: ABI incompatibility. Updating to this kernel requires extra work or you won't be able to login: install a snapshot instead. Much assistance in fixing userland issues from deraadt@ and tedu@ and build assistance from todd@ and otto@
2011-07-07sync with upstream, retaining local modifications.okan1-1/+1
ok nicm@
2010-06-30Update libedit to bring it into sync with the latest version from NetBSD.nicm1-1/+1
ok deraadt
2004-07-13errno changes, lib major version bumps, and general flag daymarc1-4/+1
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build
2003-10-31Update to NetBSD libedit (from Oct 1, 2003), adding some stringotto1-1/+4
cleaning and history bug fixes. The code includes GNU libreadline functionality, but the corresponding header files are not installed, since some libreadline functions are missing. There are some minor API changes, notably: old: EditLine *el_init(const char *, FILE *, FILE *); new: EditLine *el_init(const char *, FILE *, FILE *, FILE *); old: HistEvent *history(History *h, int op, ...); new: int history(History *h, HistEvent *ev, int op, ...); plus some changes in operation names. See editline(3) for details. Tested by djm@, mouring@, jmc@. ok deraadt@
2002-12-03Crank all library major numbers. Needed due to the fact that wemillert1-1/+1
now build libraries with propolice enabled. Without this, existing binaries (such as ports/packages) that link with any system library other than libc will fail with an undefined symbol of "___guard" (__guard on ELF). Pointed out by markus@ and discussed with deraadt@
1995-10-18initial import of NetBSD treederaadt1-0/+2