I am trying to automake
the OrientDb C++ library, but getting some errors.
Makefile.am:10: error: Libtool library used but \'LIBTOOL\' is undefi
In my case on MacOs I solved it with:
brew link libtool
I know it's an old question but just ran into this, maybe it will help someone else.
A good answer for me was to install libtool:
sudo apt-get install libtool
Fixed it. I needed to run libtoolize
in the directory, then re-run:
aclocal
autoheader
For mac it's simple:
brew install libtool
For folks who ended up here and are using CYGWIN
, install following packages in cygwin and re-run:
For people using Tiny Core Linux, you also need to install libtool-dev
as it has the *.m4 files needed for libtoolize
.