diff options
author | wiz <wiz@pkgsrc.org> | 2004-08-13 13:27:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-08-13 13:27:06 +0000 |
commit | ef7ebbb2dbe824917a86e490a8f9ec54425d6e6b (patch) | |
tree | 905db83587253e5d2ae664a4c75238807ec4959d /devel/automake/distinfo | |
parent | 6252950777472a5c103791e10998889b7e67f8cc (diff) | |
download | pkgsrc-ef7ebbb2dbe824917a86e490a8f9ec54425d6e6b.tar.gz |
Update to 1.9.1:
Bugs fixed in 1.9.1:
This release fixes three longstanding bugs.
* Adjust #line directives in `parser.h' (when ylwrap is not used).
(PR/432)
* Fix definition of YLWRAP when ylwrap is installed in a default
aux directory found in a parent package.
* Properly recognize AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.
New in 1.9:
* Makefile.in bloat reduction:
- Inference rules are used to compile sources in subdirectories when
the `subdir-objects' option is used and no per-target flags are
used. This should reduce the size of some projects a lot, because
Automake used to output an explicit rule for each such object in
the past.
- Automake no longer outputs three rules (.o, .obj, .lo) for each
object that must be built with explicit rules. It just outputs
the rules required to build the kind of object considered: either
the two .o and .obj rules for usual objects, or the .lo rule for
libtool objects.
* Change to Libtool support:
- Libtool tags are used with libtool versions that support them.
(I.e., with Libtool 1.5 or greater.)
- Automake is now able to handle setups where a libtool library is
conditionally installed in different directories, as in
if COND
lib_LTLIBRARIES = liba.la
else
pkglib_LTLIBRARIES = liba.la
endif
liba_la_SOURCES = ...
* Changes to aclocal:
- aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
really evaluated, before it decides to include them in aclocal.m4.
This solves nasty problems with conditional redefinitions of
Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
*.m4 files to be included in any project using these macros.
(Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
most famous instance of this bug.)
- Do not complain about missing conditionally AC_REQUIREd macros
that are not actually used. In 1.8.x aclocal would correctly
determine which of these macros were really needed (and include
only these in the package); unfortunately it would also require
all of them to be present in order to run. This created
situations were aclocal would not work on a tarball distributing
all the macros it uses. For instance running aclocal on a project
containing only the subset of the Gettext macros in use by the
project did not work, because gettext conditionally requires other
macros.
* Portability improvements:
- Tar format can be chosen with the new options tar-v7, tar-ustar, and
tar-pax. The new option filename-length-max=99 helps diagnosing
filenames that are too long for tar-v7. (PR/414)
- Variables aumented with `+=' are now automatically flattened (i.e.,
trailing backslashes removed) and then wrapped around 80 colummns
(adding trailing backslashes). In previous versions, a long series
of
VAR += value1
VAR += value2
VAR += value3
...
would result in a single-line definition of VAR that could possibly
exceed the maximum line length of some make implementations.
Non-augmented variables are still output as they are defined in
the Makefile.am.
* Miscellaneous:
- Support Fortran 90/95 with the new "fc" and "ppfc" languages.
Works the same as the old Fortran 77 implementation; just replace
F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
- Support for conditional _LISP.
- Support for conditional -hook and -local rules (PR/428).
- Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
- Automake will not write any Makefile.ins after the first error it
encounters. The previous Makefile.ins (if any) will be left in
place. (Warnings will not prevent output, but remember they can
be turned into errors with -Werror.)
- The restriction that SUBDIRS must contain direct children is gone.
Do not abuse.
- The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
Diffstat (limited to 'devel/automake/distinfo')
-rw-r--r-- | devel/automake/distinfo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/automake/distinfo b/devel/automake/distinfo index c89d1ba15f1..f4532842a8d 100644 --- a/devel/automake/distinfo +++ b/devel/automake/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.19 2004/07/27 16:42:41 wiz Exp $ +$NetBSD: distinfo,v 1.20 2004/08/13 13:27:06 wiz Exp $ -SHA1 (automake-1.8.5.tar.bz2) = b639ff48033e9ac7347a6f938b015107754fdf3a -Size (automake-1.8.5.tar.bz2) = 663182 bytes +SHA1 (automake-1.9.1.tar.bz2) = faf275ff5b01c8a24f4b53a91f3c8e26669466da +Size (automake-1.9.1.tar.bz2) = 697785 bytes |