Hi,
autoreconf (GNU Autoconf) 2.61 autoconf (GNU Autoconf) 2.61 automake (GNU automake) 1.10 aclocal (GNU automake) 1.10
By running autoreconf then configure in portaudio folder i get the same problem. With original (pa_stable_v19_20140130) ditto. Note that running configure on pa_stable_v19_20140130 works fine out of the box, but fails if autoreconf is launched before. It seems that on my machine the config.sub and condig.guess files are not regenerated.
Anyway i use the makefile.mac approach now, that works fine.
----- Mail d'origine ----- De: IOhannes m zmölnig zmoelnig@iem.at À: pd-dev@lists.iem.at Envoyé: Wed, 09 Sep 2015 23:05:00 +0200 (CEST) Objet: Re: [PD-dev] Configure error while compiling Pd-vanilla on 10.6
On 09/04/2015 11:36 AM, nicolas.danet@free.fr wrote:
It seems related to missing config.sub file but i have no idea how to fix it for now. Thanks for any help.
config.sub should be automatically generated when running ./autogen.sh.
iirc, OSX shipped a somewhat broken (and/or outdated) version of autotools.
which version of autotools do you have? $ autoreconf --version $ autoconf --version $ automake --version $ aclocal --version
maybe it's just that ./autogen.sh does not re-generate the files in the sub-project. try: $ cd portaudio $ autoreconf -fiv $ cd -
after than continue with ./configure.
gfmadsr IOhannes