1 | # Convenience script for regenerating all aclocal.m4, config.h.in, Makefile.in, |
---|
2 | # configure files with new versions of autoconf or automake. |
---|
3 | # |
---|
4 | # This script requires autoconf-2.58..2.59 and automake-1.8.2..1.9 in the PATH. |
---|
5 | |
---|
6 | # Copyright (C) 2003-2004 Free Software Foundation, Inc. |
---|
7 | # |
---|
8 | # This program is free software; you can redistribute it and/or modify |
---|
9 | # it under the terms of the GNU General Public License as published by |
---|
10 | # the Free Software Foundation; either version 2, or (at your option) |
---|
11 | # any later version. |
---|
12 | # |
---|
13 | # This program is distributed in the hope that it will be useful, |
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | # GNU General Public License for more details. |
---|
17 | # |
---|
18 | # You should have received a copy of the GNU General Public License |
---|
19 | # along with this program; if not, write to the Free Software |
---|
20 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
21 | |
---|
22 | aclocal |
---|
23 | autoconf |
---|
24 | automake |
---|
25 | |
---|
26 | (cd autoconf-lib-link |
---|
27 | aclocal -I m4 -I ../config/m4 |
---|
28 | autoconf |
---|
29 | automake |
---|
30 | ) |
---|
31 | |
---|
32 | (cd gettext-runtime |
---|
33 | aclocal -I m4 -I ../gettext-tools/m4 -I ../autoconf-lib-link/m4 -I ../config/m4 |
---|
34 | autoconf |
---|
35 | autoheader && touch config.h.in |
---|
36 | automake |
---|
37 | ) |
---|
38 | |
---|
39 | (cd gettext-runtime/libasprintf |
---|
40 | aclocal -I ../../config/m4 -I ../m4 |
---|
41 | autoconf |
---|
42 | autoheader && touch config.h.in |
---|
43 | automake |
---|
44 | ) |
---|
45 | |
---|
46 | cp -p gettext-runtime/ABOUT-NLS gettext-tools/ABOUT-NLS |
---|
47 | |
---|
48 | (cd gettext-tools |
---|
49 | aclocal -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../config/m4 |
---|
50 | autoconf |
---|
51 | autoheader && touch config.h.in |
---|
52 | automake |
---|
53 | ) |
---|
54 | |
---|
55 | cp -p autoconf-lib-link/config.rpath config/config.rpath |
---|