PreviousIndexLast

[help-gsl] Re: Re: [bug #22478] Missing functions for complex vectors (2008-10-03)

From: Brian Gough <bjg@gnu.org>
Subject: Re: Re: [bug #22478] Missing functions for complex vectors
Date: Fri, 03 Oct 2008 08:46:16 +0100
To: "Liam Healy" <lnp@......................>
Cc: Help GSL <Help-gsl@gnu.org>

At Thu, 2 Oct 2008 22:45:43 -0400,
Liam Healy wrote:
>
> I'd like to try the new version, but I'm having trouble building from git.
>
> git clone git://git.savannah.gnu.org/gsl.git
> ./autogen.sh
> configure.ac:7: required file `config.h.in' not found

Looks like it needs a call to autoheader, I've added that to the
autogen.sh script.


diff --git a/autogen.sh b/autogen.sh
index 2bd2597..a358390 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,6 +5,7 @@

libtoolize --automake
aclocal
+autoheader
automake --add-missing --gnu
autoconf
echo "Now use ./configure --enable-maintainer-mode"