news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / stdlib2.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2004  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 for AM_LDFLAGS = -module
18 # Report from Kevin P. Fleming.
19 required=libtool
20 . ./defs || Exit 1
21
22 set -e
23
24 : > README
25 : > NEWS
26 : > AUTHORS
27 : > ChangeLog
28 : > ltconfig
29 : > ltmain.sh
30 : > config.guess
31 : > config.sub
32
33 cat >> configure.in << 'END'
34 AC_PROG_CC
35 AC_PROG_LIBTOOL
36 AC_OUTPUT
37 END
38
39 : > Makefile.inc
40
41 cat > Makefile.am << 'END'
42 include Makefile.inc
43 lib_LTLIBRARIES = nonstandard.la
44 nonstandard_la_SOURCES = foo.c
45 FOO = -module
46 END
47
48 $ACLOCAL
49 AUTOMAKE_fails --add-missing --gnu
50 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
51 grep 'Makefile.am:2:.*libnonstandard.la' stderr
52
53 # We will use -Wno-gnu to disable the warning about setting LDFLAGS (below)
54 # Make sure nonstandard names are diagnosed anyway.
55 AUTOMAKE_fails --add-missing --gnu -Wno-gnu
56 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
57 grep 'Makefile.am:2:.*libnonstandard.la' stderr
58
59 # Make sure nonstandard_la_LDFLAGS is read even if LDFLAGS is used.
60 cat >Makefile.inc <<'EOF'
61 LDFLAGS = -lfoo
62 nonstandard_la_LDFLAGS = $(FOO)
63 EOF
64 $AUTOMAKE -Wno-gnu
65
66 # Make sure LDFLAGS is read even if nonstandard_la_LDFLAGS is used.
67 cat >Makefile.inc <<'EOF'
68 LDFLAGS = $(FOO)
69 nonstandard_la_LDFLAGS = -lfoo
70 EOF
71 $AUTOMAKE -Wno-gnu
72
73 # Make sure AM_LDFLAGS is not read if foo_LDFLAGS is used.
74 cat >Makefile.inc <<'EOF'
75 nonstandard_la_LDFLAGS = -lfoo
76 AM_LDFLAGS = -module
77 EOF
78 AUTOMAKE_fails
79 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
80 grep 'Makefile.am:2:.*libnonstandard.la' stderr
81
82 echo 'AM_LDFLAGS = -module' > Makefile.inc
83 $AUTOMAKE
84
85 # For module, Automake should not suggest the lib prefix.
86 cat > Makefile.am << 'END'
87 include Makefile.inc
88 lib_LTLIBRARIES = nonstandard
89 nonstandard_SOURCES = foo.c
90 FOO = -module
91 END
92
93 AUTOMAKE_fails
94 grep "Makefile.am:2:.*nonstandard'.*standard libtool module name" stderr
95 grep 'Makefile.am:2:.*`nonstandard.la' stderr