jeffdaily / parasail

Pairwise Sequence Alignment Library
Other
243 stars 34 forks source link

configuration error on ubuntu #87

Closed kristin-watchmaker closed 3 years ago

kristin-watchmaker commented 3 years ago

I ran: git clone https://github.com/jeffdaily/parasail.git cd parasail sudo autoreconf -fi sudo ./configure

error message:

configure: ./configure: line 11088: syntax error near unexpected token `win32-dll'

./configure: line 11088: `LT_INIT(win32-dll)'

kristin-watchmaker commented 3 years ago

I was able to configure without error when downloading the zip file (parasail-2.4.3.zip)

jeffdaily commented 3 years ago

Which ubuntu version is this? Did you install libtool first? sudo apt update; sudo apt install autoconf automake libtool.

This could indicates your libtool version is too old, since libtool's LT_INIT did not understand the win32-dll directive in the configure.ac file. Or perhaps you did not have libtool installed, such that the LT_INIT macro was not processed at all during autoreconf?

kristin-watchmaker commented 3 years ago

That must have been it. Iibtool was not installed.

On Tue, Jun 1, 2021 at 11:13 AM Jeff Daily @.***> wrote:

Which OS is this? This usually indicates your libtool version is too old, since libtool's LT_INIT did not understand the win32-dll directive in the configure.ac file. Or perhaps you did not have libtool installed, such that the LT_INIT macro was not processed at all during autoreconf?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/jeffdaily/parasail/issues/87#issuecomment-852296553, or unsubscribe https://github.com/notifications/unsubscribe-auth/AUDO5R3ASKYZ443RM7GKV33TQUIJ5ANCNFSM45XAFNQA .

kristin-watchmaker commented 3 years ago

That must have been it. Libtool was not installed.