1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
gengetopt -- History of visible changes.
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation
Please send gengetopt bug reports to bug-gengetopt@gnu.org
Version 2.6
* fixed documentation (thanks to Francesco Potorti <pot@gnu.org>)
* function names and names used in #ifndef directives in generated
sources are canonized, thus avoiding errors by the compiler (notified
by Francesco Potorti and Alexey Mahotkin <alexm@hsys.msk.ru>)
* fixed line number when reporting an error in a .ggo file, and '\n' is
no longer needed at the end of a .ggo file (notified by Francesco
Potorti)
* in the generated parser use HAVE_STRDUP to check whether the standard
strdup function can be used, and use EXIT_SUCCESS and EXIT_FAILURE for
exit (suggested by Frans E. van Dorsselaer <frans@biabv.com>)
* do not exit with error if an empty desc for an option is given (thanks
to Excoffier Denis <Denis.Excoffier@eurocopter.com>)
* fixed a bug in creation of string for the comment header in the
generated sources (thanks to Xavier Trochu <xtrochu@yahoo.com>)
* Added default values in options for integer and string options (with
help of Ralf Zeise <Zeise@serving-gmbh.de>)
Version 2.5
* much more recent versions of getopt.h, getopt.c, getopt1.c are provided
(the previous ones were very very old!), that do not rely on alloca
anymore.
* when a flag option is given the corresponding _given variable is set
(bug fixed by Guillaume Chazarain <booh@altern.org>).
* Fixed documentation of sample1, as suggested by Lutz Maibaum
<lutz@gold.cchem.berkeley.edu>.
* Avoid a warning due to generated gengetopt_strdup (thanks to Brian
Minard <bminard@flatfoot.ca>)
* the generated print_help function use a different printf for every
option, thus avoiding a single printf with a possible very huge string
(thanks to Herbert Thoma <tma@iis.fhg.de>)
Version 2.4
* fixed some bugs due to not including some headers (make check used to
fail with gcc 2.96)
* fixed a bug for make check, when getopt_long is not in the C library
(reported by Paul Lew <paullew@cisco.com>).
* the generated command line parser can be called more than once (thanks
to Eric H Kinzie <ekinzie@cmf.nrl.navy.mil>).
* --no-handle-error option added, so that an error in the command line
parsing does not provoke the exit from the program: the parser simply
returns not 0; thus the program can write something for helping the
user.
Version 2.3
* --no-handle-help and --no-handle-version option added, so that
--help|-h and --version|-V can be explicitly handled (for
instance for printing a copyright notice, as suggested by
Vladimir Tamara <vtamara@gnu.org>).
* PURPOSE added to specify in the .ggo file the purpose of the program
(thanks to Berthold Hllmann <hoel@germanlloyd.org>).
* generated print_version and print_help are not static so they can
be called also in the program and they are prefixed with the
name of the generated function, so that more than one parser can be
handled.
* test the presence of alloca function in standard library
(reported by Aldo D. Longhi <aldo.longhi@alum.wpi.edu>).
* test suite added (type make check, to run the tests).
Version 2.2
* scanner is simplified and now accepts arbitrary character strings
between, thanks to nbecker@fred.net.
* It compiles under Sun C compiler 5.1, thanks to Robert Walsh
<Robert.J.Walsh@eng.sun.com>.
* VERSION and PACKAGE are generated in cmdline.h instead of cmdline.c,
thanks to Richard Heggs <richard@virtua-web.co.uk>.
* #undef's PACKAGE and VERSION before setting them, in case they are
defined in the .ggo file, thanks to Scott Haug <scott@id3.org>.
* long options with no associated short options are allowed, thanks to
damned@world.std.com.
* fixed no_getopt_long.txt, thanks to Peter Fox
<fox@roestock.demon.co.uk>
Version 2.1
* It is made more clear that use of gengetopt does not impose any
particular license on the generated code.
* A bug in the generation of code (for some new C++ compilers) was fixed,
thanks to "James R. Van Zandt" <jrv@vanzandt.mv.com>
* Some modifications to the man page, also due to James.
* a directory for examples is specifically created (suggested by James).
Version 2.0
* Gengetopt has become GNU software
* it is conform to GNU coding standards, and so it uses configure script
generated by Automake and Autoconf
* it generates separated files: one header file with the struct used to
store command line options information, and a C file which contains the
function which actually uses getopt_long to parse the command line
* 'required' option is now fully implemented
Version 1.1.3
2000-07-01
Copyright is assigned in behalf of the Free Software Foundation.
Version 1.1.2
1999-09-3
Included html pages with GNU standards about long options.
Version 1.1.1
1999-08-17
Clarify about license, gengetopt is GPL'ed.
Thanks to James R. Van Zandt.
Version 1.1.0
1999-06-22
New man page, thank to James R. Van Zandt.
Version 1.0.0
Initial release.
-------------------------------------------------------
Copying information:
This file is licensed to you under the license specified in the included file
`LICENSE'. Look there for further details.
|