news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / ltinit.test
1 #!/bin/sh
2 # Copyright (C) 2011 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 # Test that libtool support works correctly when "newer" libtool
18 # interface (with LT_INIT etc.) is used (this interface has been
19 # present since libtool 1.9b, circa 2004).
20
21 required='libtoolize'
22 . ./defs || Exit 1
23
24 set -e
25
26 cat >>configure.in <<'END'
27 AC_PROG_CC
28 dnl Older libtool versions don't define LT_PREREQ :-(
29 m4_ifdef([LT_PREREQ],
30     [LT_PREREQ([2.0])],
31     [m4_fatal([Libtool version too old], [63])])
32 LT_INIT([dlopen])
33 AC_OUTPUT
34 END
35
36 cat >Makefile.am <<'END'
37 lib_LTLIBRARIES = libfoo.la
38 END
39
40 cat > libfoo.c <<'END'
41 int foo (void)
42 {
43   return 1;
44 }
45 END
46
47 libtoolize
48 # Skip if older libtool (pre-2.0) is used.
49 { $ACLOCAL && $AUTOCONF; } || {
50   if test $? -eq 63; then Exit 77; else Exit 1; fi
51 }
52 $EGREP 'LT_(INIT|PREREQ)' configure && Exit 1 # Sanity check.
53 $AUTOMAKE -a
54
55 cwd=`pwd`
56 ./configure --prefix="$cwd/inst" >stdout || { cat stdout; Exit 1; }
57 cat stdout
58 grep '^checking.*dlfcn\.h.* no$' stdout || grep '^checking.*dlopen' stdout
59
60 $MAKE
61 $MAKE install
62 $MAKE distcheck
63
64 :