[xiph-commits] r17614 - trunk/vorbis

giles at svn.xiph.org giles at svn.xiph.org
Tue Nov 2 14:22:37 PDT 2010


Author: giles
Date: 2010-11-02 14:22:37 -0700 (Tue, 02 Nov 2010)
New Revision: 17614

Modified:
   trunk/vorbis/Makefile.am
Log:
Prefer dist-xz to dist-bzip2. This requires automake 1.11.

The newer xz compression utility offers superiour compression
efficiency *and* speed over bzip2. Since adoption of bzip2
never became near universal, we still provide gzip for those
on older or more conservative systems. Furthermore, for smaller
archives the performance penalty often doesn't pay for the savings
in transfer time we might as well replace the 'smaller' bzip2
option with xz, which at least does better in this regard.

Since Automake 1.11 isn't available in all environments yes
(e.g. some scratchbox toolchains) we leave the old Makefile.am
AUTOMAKE_OPTIONS line commented out. Just uncomment this to
build on systems with older automakes.


Modified: trunk/vorbis/Makefile.am
===================================================================
--- trunk/vorbis/Makefile.am	2010-11-02 21:16:52 UTC (rev 17613)
+++ trunk/vorbis/Makefile.am	2010-11-02 21:22:37 UTC (rev 17614)
@@ -1,6 +1,7 @@
 ## Process this file with automake to produce Makefile.in
 
-AUTOMAKE_OPTIONS = 1.7 foreign dist-zip dist-bzip2
+#AUTOMAKE_OPTIONS = 1.7 foreign dist-zip dist-bzip2
+AUTOMAKE_OPTIONS = foreign 1.11 dist-zip dist-xz
 
 SUBDIRS = m4 include vq lib test doc
 



More information about the commits mailing list