2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
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)
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.
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/>.
17 # Check for AM_LDFLAGS = -module
18 # Report from Kevin P. Fleming.
31 cat >> configure.ac
<< 'END'
40 cat > Makefile.am
<< 'END'
42 lib_LTLIBRARIES
= nonstandard.la
43 nonstandard_la_SOURCES
= foo.c
48 AUTOMAKE_fails
--add-missing --gnu
49 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
50 grep 'Makefile.am:2:.*libnonstandard.la' stderr
52 # We will use -Wno-gnu to disable the warning about setting LDFLAGS (below)
53 # Make sure nonstandard names are diagnosed anyway.
54 AUTOMAKE_fails
--add-missing --gnu -Wno-gnu
55 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
56 grep 'Makefile.am:2:.*libnonstandard.la' stderr
58 # Make sure nonstandard_la_LDFLAGS is read even if LDFLAGS is used.
59 cat >Makefile.inc
<<'EOF'
61 nonstandard_la_LDFLAGS = $(FOO)
65 # Make sure LDFLAGS is read even if nonstandard_la_LDFLAGS is used.
66 cat >Makefile.inc
<<'EOF'
68 nonstandard_la_LDFLAGS = -lfoo
72 # Make sure AM_LDFLAGS is not read if foo_LDFLAGS is used.
73 cat >Makefile.inc
<<'EOF'
74 nonstandard_la_LDFLAGS = -lfoo
78 grep 'Makefile.am:2:.*nonstandard.la.*standard libtool library name' stderr
79 grep 'Makefile.am:2:.*libnonstandard.la' stderr
81 echo 'AM_LDFLAGS = -module' > Makefile.inc
84 # For module, Automake should not suggest the lib prefix.
85 cat > Makefile.am
<< 'END'
87 lib_LTLIBRARIES
= nonstandard
88 nonstandard_SOURCES
= foo.c
93 grep "Makefile.am:2:.*'nonstandard'.*standard libtool module name" stderr
94 grep 'Makefile.am:2:.*nonstandard.la' stderr