b-k / apophenia

A C library for statistical and scientific computing
http://apophenia.info
198 stars 30 forks source link

aclocal version issue #12

Closed raegis closed 10 years ago

raegis commented 10 years ago

On a Debian Wheezy desktop, I cloned the git repository for Apophenia, checked out the "pkg" branch, and ran ./configure successfully. However, when I run "make all" I get

CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/rsmith/warez/Apophenia/missing aclocal-1.13 -I m4 /home/rsmith/warez/Apophenia/missing: line 81: aclocal-1.13: command not found WARNING: 'aclocal-1.13' is missing on your system. You should only need it if you modified 'acinclude.m4' or 'configure.ac' or m4 files included by 'configure.ac'. The 'aclocal' program is part of the GNU Automake package: http://www.gnu.org/software/automake It also requires GNU Autoconf, GNU m4 and Perl in order to run: http://www.gnu.org/software/autoconf http://www.gnu.org/software/m4/ http://www.perl.org/ make: *\ [aclocal.m4] Error 127

I have automake 1.11 installed, and both "aclocal" and "aclocal-1.11" are installed in /usr/bin/. I did not modify any files, so I was hoping automake 1.11 in Wheezy would work. Any suggestions?

cicku commented 10 years ago

autoreconf -fiv before ./configure

raegis commented 10 years ago

It works. Thanks!

jgmbenoit commented 10 years ago

You can also try to install from Alioth git:

http://anonscm.debian.org/cgit/debian-science/packages/apophenia.git

And eventually let me know if it rocks.

Jerome