Jellyfish icon indicating copy to clipboard operation
Jellyfish copied to clipboard

config error

Open zeeev opened this issue 10 years ago • 3 comments

jellyfish]$ autoreconf -i gtest.mk:5: error: Libtool library used but 'LIBTOOL' is undefined gtest.mk:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' gtest.mk:5: to 'configure.ac' and run 'aclocal' and 'autoconf' again. gtest.mk:5: If 'LT_INIT' is in 'configure.ac', make sure gtest.mk:5: its definition is in aclocal's search path. Makefile.am:198: 'gtest.mk' included from here autoreconf: automake failed with exit status: 1

zeeev avatar Jun 26 '14 19:06 zeeev

I had the same error. Here is what I did to get it running on my linux workstation:

  • sudo apt-get install libtool
  • in configure.ac file, change all instances of "AC_PROG_LIBTOOL" to "LT_INIT" and save
  • run "aclocal"
  • run "autoconf"
  • run "autoreconf -i"
  • run "./configure"
  • remove comment lines 4-7 (I think? May need to double check this) in sub_commands/info_main_cmdline.yaggo
  • make
  • sudo make install

Hopefully this work! Good luck

nknox avatar Aug 08 '14 18:08 nknox

the configure script is not generated in this version. The users should not have to generate this file by themselves.

kemin711 avatar Jun 24 '16 21:06 kemin711

Did you download the latest release tarball? It does contain the configure script.

If you start from the github tree, then you need to generate the configure script, and that is not a bug. autoreconf -fi should be enough to do so, provided you have autoconf/automake/libtool installed.

gmarcais avatar Jun 24 '16 21:06 gmarcais