~ubuntu-branches/ubuntu/oneiric/rng-tools/oneiric

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Henrique de Moraes Holschuh
  • Date: 2005-05-11 06:43:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050511064337-8o7u51mlv39fb7gv
Tags: 2-unofficial-mt.10-1
* "Last changes for Sarge (I hope)"
* The following changes warrant an upstream version bump:
+ Backport selected changes from rng-tools--hmh-devo--3.0--patch-80:
  + Upgrade udev and makedev versioned depends to require
    hwrng naming of the hardware random device
  + Attempt to makedev only "hwrng", deprecate all other device
    naming for hw_random and friends (closes: #308248)
+ Backport configure.ac tweaks, and call ./configure correctly
+ Backport s/TRNG/HRNG/ in all docs
+ Backport intel->intelfwh name change for Intel FWH profile

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# autogen.sh glue for rng-tools
4
4
#
5
 
# Requires: automake 1.8, autoconf 2.57+
 
5
# Requires: automake 1.9, autoconf 2.57+
 
6
# conflicts: automake, autoconf (Debian 2.13/1.4 versions)
6
7
set -e
7
8
 
8
9
# Refresh GNU autotools toolchain.
9
10
rm -rf autom4te.cache
10
11
rm -f missing install-sh mkinstalldirs depcomp
11
 
aclocal-1.8
12
 
autoheader2.50
13
 
automake-1.8 --gnu --add-missing --copy
14
 
autoconf2.50
 
12
aclocal-1.9
 
13
autoheader
 
14
automake-1.9 --gnu --add-missing --copy
 
15
autoconf
15
16
 
16
17
exit 0