CHANGES 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. 2002-02-25 : Christos Zoulas <christos@netbsd.org>
  2. * Bring in constification fixes from NetBSD tree.
  3. * Use NetBSD's vis, fgetln
  4. 2002-02-10 : Jason Evans <jasone@freebsd.org>
  5. * Makefile.in : Append "" arguments to for loops, to avoid syntax errors
  6. with some shells that occur if there are no arguments to the for
  7. loops.
  8. 2002-02-09 : Jason Evans <jasone@freebsd.org>
  9. * Install man pages in @prefix@/man/, rather than @prefix@/share/man.
  10. * Fix the Darwin -install_name S_LDFLAGS argument to default to a prefix
  11. of /usr/local if --prefix is not specified.
  12. 2002-02-05 : Jason Evans <jasone@freebsd.org>
  13. * Convert to using an autoconf-generated config.h, rather than passing
  14. -D_HAVE_<foo>=1 definitions on the command line. Include sys.h in
  15. config.h, and include config.h in .c files rather than sys.h.
  16. * Mangle function names for implementations in the np directory in order
  17. to avoid namespace collisions with other code that may provide copies
  18. of the same unimplemented functions. For example:
  19. #define fgetln libedit_fgetln
  20. 2002-02-03 : Jason Evans <jasone@freebsd.org>
  21. * Add autoconf infrastructure, plus a generic Makefile that works with
  22. at least BSD make, GNU make and Sun make.
  23. * Port and/or test on FreeBSD 4.5, FreeBSD-current, NetBSD 1.5 (sparc64
  24. and arm32), Apple OS X 10.1.2, Solaris 2.6, and Red Hat Linux 2.6.
  25. Add the np directory, which contains implementations of non-portable
  26. functions.
  27. * Add the LIBEDIT_MAJOR and LIBEDIT_MINOR macros to histedit.h, since
  28. there is otherwise no straightforward method of programmatically
  29. detecting the library version.