paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | #! /bin/sh |
| 2 | # |
| 3 | # When local system does not have the latest autoconf/automake |
| 4 | # -- Kunihiro Ishiguro <kunihiro@zebra.org> |
| 5 | # |
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 6 | |
gdt | cf31388 | 2004-06-30 13:24:42 +0000 | [diff] [blame] | 7 | rm -f config.cache Makefile.in aclocal.m4 config.h.in configure |
| 8 | rm -rf autom4te.cache |
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 9 | |
paul | 0fc4294 | 2004-08-19 04:41:21 +0000 | [diff] [blame] | 10 | echo "This $0 script is deprecated, and will be removed at some stage." |
| 11 | echo "Please use the 'autoreconf' command included with autoconf." |
| 12 | |
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 13 | echo "TOOLS VERIONS:" |
| 14 | for tool in autoheader autoconf libtool libtoolize aclocal automake; do |
| 15 | $tool --version | head -1 |
| 16 | done |
| 17 | |
| 18 | echo "UPDATING:" |
paul | 72e2d82 | 2004-09-13 04:57:03 +0000 | [diff] [blame] | 19 | aclocal -I m4 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 20 | autoheader |
| 21 | autoconf |
paul | ddb07e5 | 2004-09-27 07:49:57 +0000 | [diff] [blame] | 22 | libtoolize -c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 23 | automake --foreign |