I'm trying to install zeosdbo into lazarus under Ubuntu.
Compiling and installing the following packages:
- zcore: compile
- zparsesql: compile
- zplain: compile
- zdbc: compile
- zcomponent: install -> error: " /usr/bin/ld: cannot find -lgds"
Under Windows, the same procedure gives no errors, components are installed normally.
Note: the same error happens when trying to install another Interbase-package: /usr/share/lazarus/components/interbase/interbaselaz.lpk
Again: no error under Windows.
I have installed libfbclient1.
Lazarus 0.9.22 beta
Zeosdbo 6.6.1 beta
Ubuntu 7.04
libfbclient1 1.5.3.4870-12ubuntu2
Error under lazarus/ubuntu: /usr/bin/ld: cannot find -lgds
Moderators: gto, cipto_kh, EgonHugeist
You need to install some deb packages, I think:
for gtk2:
for gtk1:
and try to recompile lazarus... works for me
for gtk2:
Code: Select all
sudo apt-get install build-essential libgtk2.0-dev libgdk-pixbuf-dev
Code: Select all
sudo apt-get install libglib1.2 libgtk1.2 libgtk1.2-common libgdk-pixbuf2
Thanks, this works for me.barko wrote:You need to install some deb packages, I think:
for gtk2:
Code: Select all
sudo apt-get install build-essential libgtk2.0-dev libgdk-pixbuf-dev