autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: specify AC_INIT version externally


From: Carsten Heinrici
Subject: Re: specify AC_INIT version externally
Date: Thu, 7 Jan 2010 21:00:06 +0100

> What's the easiest way to specify the AC_INIT package version external to
> configure.ac?

why not including just another m4 file which defines the version number?
example:

./version.m4
  m4_define([VERSION_NUMBER],[1.2.3])

./package/configure.ac
  m4_include([../version.m4])
  AC_INIT([package],VERSION_NUMBER)


This is how we solved the same problem.

regards,
Carsten




reply via email to

[Prev in Thread] Current Thread [Next in Thread]