e6a8922aa1578d3682dd75ea8d6b5f84739afc6c
[platform/upstream/automake.git] / t / gettext2.sh
1 #! /bin/sh
2 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Check gettext 'external' support.
18 # PR/338, reported by Charles Wilson.
19
20 required='gettext'
21 . test-init.sh
22
23 cat >>configure.ac <<END
24 AM_GNU_GETTEXT([external])
25 AC_OUTPUT
26 END
27
28 : >Makefile.am
29 mkdir foo po
30
31 $ACLOCAL
32
33 # config.rpath is required.
34 : >config.rpath
35
36 # po/ is required, but intl/ isn't.
37
38 AUTOMAKE_fails --add-missing
39 grep 'AM_GNU_GETTEXT.*SUBDIRS' stderr
40
41 echo 'SUBDIRS = foo' >Makefile.am
42 AUTOMAKE_fails --add-missing
43 grep 'AM_GNU_GETTEXT.*po' stderr
44
45 # Ok.
46
47 echo 'SUBDIRS = po' >Makefile.am
48 $AUTOMAKE --add-missing
49
50 # Don't try running ./configure --with-included-gettext if the
51 # user is using AM_GNU_GETTEXT([external]).
52 grep 'with-included-gettext' Makefile.in && exit 1
53
54 # intl/ isn't wanted with AM_GNU_GETTEXT([external]).
55
56 mkdir intl
57 echo 'SUBDIRS = po intl' >Makefile.am
58 AUTOMAKE_fails --add-missing
59 grep 'intl.*AM_GNU_GETTEXT' stderr
60
61 :