* configure.in: Bump version to 1.5b.
[automake.git] / tests / defun2.test
blobd51b301dbfd4828cdeb1136ebec836229e569306
1 #! /bin/sh
3 # Make sure we don't mistake a macro definition for an invocation.
4 # From Jim Meyering.
6 . $srcdir/defs || exit 1
8 cat >> configure.in << 'END'
9 dnl if buggy this will require getloadavg.c
10 AC_PROG_CC
11 AC_DEFUN([AC_FUNC_GETLOADAVG])
12 dnl need this to avoid LIBOBJS used but not defined.
13 AC_FUNC_MEMCMP
14 END
16 cat > Makefile.am << 'END'
17 bin_PROGRAMS = foo
18 foo_LDADD = @LIBOBJS@
19 END
21 : > memcmp.c
23 $ACLOCAL || exit 1
24 $AUTOMAKE