#! /bin/sh # Make sure that PACKAGE and VERSION are AC_DEFINEd when requested. . $srcdir/defs || exit 1 set -e # First, check that PACKAGE and VERSION are output by default. cat > configure.in << 'END' AC_INIT([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN]) AM_INIT_AUTOMAKE AC_OUTPUT(output) END echo 'DEFS = @DEFS@' > output.in $ACLOCAL $AUTOCONF ./configure grep 'DEFS.*-DVERSION=\\"UnIqUe' output # Then, check that PACKAGE and VERSION are not output if requested. cat > configure.in << 'END' AC_INIT([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN]) AM_INIT_AUTOMAKE([no-define]) AC_OUTPUT(output Makefile) END : > Makefile.am $ACLOCAL $AUTOCONF $AUTOMAKE # Dummy call to make sure Automake grok `no-define' silently. ./configure grep 'DEFS.*-DVERSION=\\"UnIqUe' output && exit 1 :