This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
automake not seeing AM_INIT_AUTOMAKE
- From: jlm <jsado at earthlink dot net>
- To: automake at gnu dot org
- Date: 24 Dec 2002 06:00:45 -0500
- Subject: automake not seeing AM_INIT_AUTOMAKE
I'm using automake version 1.5. I'm getting an error with automake, and
I can't figure out why. When I run automake, I get this error:
automake-1.5: configure.ac: `AM_INIT_AUTOMAKE' must be used
But I am using AM_INIT_AUTOMAKE, here's the top of my configure.ac file:
#Process this file with autoconf to produce a configure script.
AC_INIT(libgtkbonus, 0.1, [jlm@h006008ed341a.ne.client2.attbi.com])
AC_PREREQ([2.52])
AC_CONFIG_SRCDIR([src/trough.cpp])
AM_INIT_AUTOMAKE([no-define])
AM_DISABLE_STATIC
AM_PROG_LIBTOOL
If anyone can enlighten me to the true meaning of this erroneous error
message, I would be grateful. I need to ensure that automake does not
define VERSION, since it is used by a library that I use (hence the
no-define).
Thanks.