Code::Blocks Forums

User forums => Help => Topic started by: ir0nk0ala on February 14, 2007, 04:16:21 am

Title: problems compiling C::B in Ubuntu
Post by: ir0nk0ala on February 14, 2007, 04:16:21 am
I've been getting an error when trying to compile C::B under Ubuntu 6.10:

austin@austin-desktop:~/devel/trunk$ ./bootstrap
You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
./bootstrap: 67: aclocal: not found

What could be causing this?
Title: Re: problems compiling C::B in Ubuntu
Post by: momaa on February 14, 2007, 09:59:29 am
You are missing automake1.9 and/or libtool packages. 
Follow these instructions: http://www.ubuntuforums.org/showthread.php?p=1962696#post1962696 (http://www.ubuntuforums.org/showthread.php?p=1962696#post1962696)

This command will reveal what package contains the "aclocal".
$ dpkg -S aclocal
$ dpkg -S aclocal | less
---

Note-1: Be aware of this minor drag & drop related bug... (http://forums.codeblocks.org/index.php?topic=5083.0) in Ubuntu.

Note-2: Ubuntu repository for wxWidgets 2.8 (wxGTK) is available from:http://www.wxwidgets.org/downloads/ (http://www.wxwidgets.org/downloads/)

// moma
    http://www.futuredesktop.org
Title: Re: problems compiling C::B in Ubuntu
Post by: ir0nk0ala on February 14, 2007, 06:27:32 pm
Everything's working great now, thanks!