This commit is contained in:
parent
6008e0e4b7
commit
b1a9061b3b
3
autogen-5.9.1.tar.bz2
Normal file
3
autogen-5.9.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6b37893336b34c988f83cd1a8cd1fba7fb2ebb02c52dd9b895b618c6bc39de26
|
||||||
|
size 979067
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b8c8ffef40462e26a21adcaf15cf2fe4c804b6afe7544f712584ea4634fd10a2
|
|
||||||
size 976074
|
|
@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 7 14:51:30 CEST 2007 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to autogen 5.9.1.
|
||||||
|
* getopt.tpl template is fixed to not require the internal header
|
||||||
|
autoopts/autoopts.h.
|
||||||
|
* MAXPATHLEN will use _MAX_PATH on Windows platforms
|
||||||
|
* new libopts configuration option: --disable-optional-args This will #define
|
||||||
|
NO_OPTIONAL_OPT_ARGS in config.h and cause the built library to ignore the
|
||||||
|
OPTST_ARG_OPTIONAL bit in an option descriptor. autoopts generated code
|
||||||
|
compiled with NO_OPTIONAL_OPT_ARGS #defined will never have that bit set in
|
||||||
|
the option descriptors either. If libopts has been so configured, then the
|
||||||
|
installed options.h header will contain: #define NO_OPTIONAL_OPT_ARGS 1 so
|
||||||
|
that client code will generally be compiled with that flag set.
|
||||||
|
The OPTST_ARG_OPTIONAL bit is ignored regardless.
|
||||||
|
* Fixed up --load-opts environment variable processing. You can
|
||||||
|
now correctly suppress config file loading with either:
|
||||||
|
PROGRAM_LOAD_OPTS=no
|
||||||
|
PROGRAM=--no-load-opts
|
||||||
|
* added new auto-supported option, --usage. It is incorporated
|
||||||
|
by specifying ``usage-opt;'' in the option definitions file.
|
||||||
|
* libopts now uses several exit codes from sysexits.h:
|
||||||
|
EX_NOINPUT (66) - a specified config file cannot be found
|
||||||
|
EX_SOFTWARE (70) - libopts error - please file a bug report
|
||||||
|
EX_CONFIG (78) - a NULL option descriptor was passed in - user bug
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 18 10:10:24 CET 2007 - schwab@suse.de
|
Sun Feb 18 10:10:24 CET 2007 - schwab@suse.de
|
||||||
|
|
||||||
@ -61,10 +87,8 @@ Mon May 15 15:31:27 CEST 2006 - schwab@suse.de
|
|||||||
_WIN32 and does not define __CYGWIN__.
|
_WIN32 and does not define __CYGWIN__.
|
||||||
* suffix specifications in the pseudo macro may now construct an output
|
* suffix specifications in the pseudo macro may now construct an output
|
||||||
file name format string using scheme code, a la:
|
file name format string using scheme code, a la:
|
||||||
|
|
||||||
[= autogen5 template
|
[= autogen5 template
|
||||||
h=(string-append (getenv "TMPDIR") "/%s-hdr.h") =]
|
h=(string-append (getenv "TMPDIR") "/%s-hdr.h") =]
|
||||||
|
|
||||||
The "%s" will still be replaced by the base name.
|
The "%s" will still be replaced by the base name.
|
||||||
* the scheme function "version-compare" will allow you to compare
|
* the scheme function "version-compare" will allow you to compare
|
||||||
two dotted version numbers. These can be your own versions or
|
two dotted version numbers. These can be your own versions or
|
||||||
|
27
autogen.spec
27
autogen.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package autogen (Version 5.9)
|
# spec file for package autogen (Version 5.9.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -13,7 +13,7 @@
|
|||||||
Name: autogen
|
Name: autogen
|
||||||
BuildRequires: guile-devel libxml2-devel
|
BuildRequires: guile-devel libxml2-devel
|
||||||
Summary: Automated Text File Generator
|
Summary: Automated Text File Generator
|
||||||
Version: 5.9
|
Version: 5.9.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
License: GNU General Public License (GPL)
|
License: GNU General Public License (GPL)
|
||||||
@ -71,6 +71,29 @@ rm -fr $RPM_BUILD_ROOT
|
|||||||
%{_infodir}/*.gz
|
%{_infodir}/*.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 07 2007 - schwab@suse.de
|
||||||
|
- Update to autogen 5.9.1.
|
||||||
|
* getopt.tpl template is fixed to not require the internal header
|
||||||
|
autoopts/autoopts.h.
|
||||||
|
* MAXPATHLEN will use _MAX_PATH on Windows platforms
|
||||||
|
* new libopts configuration option: --disable-optional-args This will #define
|
||||||
|
NO_OPTIONAL_OPT_ARGS in config.h and cause the built library to ignore the
|
||||||
|
OPTST_ARG_OPTIONAL bit in an option descriptor. autoopts generated code
|
||||||
|
compiled with NO_OPTIONAL_OPT_ARGS #defined will never have that bit set in
|
||||||
|
the option descriptors either. If libopts has been so configured, then the
|
||||||
|
installed options.h header will contain: #define NO_OPTIONAL_OPT_ARGS 1 so
|
||||||
|
that client code will generally be compiled with that flag set.
|
||||||
|
The OPTST_ARG_OPTIONAL bit is ignored regardless.
|
||||||
|
* Fixed up --load-opts environment variable processing. You can
|
||||||
|
now correctly suppress config file loading with either:
|
||||||
|
PROGRAM_LOAD_OPTS=no
|
||||||
|
PROGRAM=--no-load-opts
|
||||||
|
* added new auto-supported option, --usage. It is incorporated
|
||||||
|
by specifying ``usage-opt;'' in the option definitions file.
|
||||||
|
* libopts now uses several exit codes from sysexits.h:
|
||||||
|
EX_NOINPUT (66) - a specified config file cannot be found
|
||||||
|
EX_SOFTWARE (70) - libopts error - please file a bug report
|
||||||
|
EX_CONFIG (78) - a NULL option descriptor was passed in - user bug
|
||||||
* Sun Feb 18 2007 - schwab@suse.de
|
* Sun Feb 18 2007 - schwab@suse.de
|
||||||
- Update to autogen 5.9.
|
- Update to autogen 5.9.
|
||||||
* a script for producing Debian packages is included
|
* a script for producing Debian packages is included
|
||||||
|
Loading…
x
Reference in New Issue
Block a user