CHANGES 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. 1.5 -> 1.6
  2. - add ability to perform callbacks for every, not just first, match.
  3. 1.3 -> 1.5
  4. - heavy dose of const's
  5. - poptParseArgvString() now NULL terminates the list
  6. 1.2.3 -> 1.3
  7. - added support for single -
  8. - misc bug fixes
  9. - portability improvements
  10. 1.2.2 -> 1.2.3
  11. - fixed memset() in help message generation (Dale Hawkins)
  12. - added extern "C" stuff to popt.h for C++ compilers (Dale Hawkins)
  13. - const'ified poptParseArgvString (Jeff Garzik)
  14. 1.2.1 -> 1.2.2
  15. - fixed bug in chaind alias happens which seems to have only
  16. affected --triggers in rpm
  17. - added POPT_ARG_VAL
  18. - popt.3 installed by default
  19. 1.2 -> 1.2.1
  20. - added POPT_ARG_INTL_DOMAIN (Elliot Lee)
  21. - updated Makefile's to be more GNUish (Elliot Lee)
  22. 1.1 -> 1.2
  23. - added popt.3 man page (Robert Lynch)
  24. - don't use mmap anymore (its lack of portability isn't worth the
  25. trouble)
  26. - added test script
  27. - added support for exec
  28. - removed support for *_POPT_ALIASES env variable -- it was a bad
  29. idea
  30. - reorganized into multiple source files
  31. - added automatic help generation, POPT_AUTOHELP
  32. - added table callbacks
  33. - added table inclusion
  34. - updated man page for new features
  35. - added test scripts
  36. 1.0 -> 1.1
  37. - moved to autoconf (Fred Fish)
  38. - added STRERROR replacement (Norbert Warmuth)
  39. - added const keywords (Bruce Perens)