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"




_______________________________________________
Help-gsl mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gsl

Reply via email to