Author Topic: problems compiling C::B in Ubuntu  (Read 3413 times)

ir0nk0ala

  • Guest
problems compiling C::B in Ubuntu
« 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?

Offline momaa

  • Multiple posting newcomer
  • *
  • Posts: 16
Re: problems compiling C::B in Ubuntu
« Reply #1 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

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... in Ubuntu.

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

// moma
    http://www.futuredesktop.org
« Last Edit: February 14, 2007, 10:11:29 am by momaa »

ir0nk0ala

  • Guest
Re: problems compiling C::B in Ubuntu
« Reply #2 on: February 14, 2007, 06:27:32 pm »
Everything's working great now, thanks!