Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build issue on Ubuntu 16.04 #2

Closed
kachind opened this issue Nov 29, 2018 · 2 comments
Closed

build issue on Ubuntu 16.04 #2

kachind opened this issue Nov 29, 2018 · 2 comments

Comments

@kachind
Copy link

kachind commented Nov 29, 2018

I encountered a bunch of issues while trying to build the new commit... here is how I tried to resolve

autogen error

Invoking ./autogen.sh produces an error, since the compat/jansson directory is now missing, but compat/makefile.am references "compat/jansson/Makefile.in".

fixed this:

cd compat
mkdir jansson
mv bos-jansson/src/* jansson


another autogen error

"libtool library used but LIBTOOL undefined"

to resolve this error, I added an LT_INIT line to beginning of configure.ac, then
libtoolize
aclocal
autoconf

and then autogen works as expected


missing header error

./configure CFLAGS='-march=native' --with-crypto--with-curl
make

output:
fatal error: bosjansson.h: No such file or directory

solution:
cp compat/jansson/bosjansson.h .


make error

after resolving the above, make will compile for a while, then encounters the following error:

./libtool: line 7486: cd: yes/lib: No such file or directory
libtool: error: cannot determine absolute directory name of 'yes/lib'

This is probably related to the libtoolize command I used to resolve the earlier issue with the missing LIBTOOL library. I haven't been able to resolve it and at this point I'm not sure what I'm doing.

It seems to be issue with broken linking / dependencies, particularly with jansson.

Would appreciate any help

@djm34
Copy link
Contributor

djm34 commented Nov 30, 2018

please check out the master which were committed last night

@kachind
Copy link
Author

kachind commented Dec 1, 2018

New commit resolved issue. Closing, thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants