building BennuGD

Started by danielt3, January 21, 2019, 01:16:12 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

danielt3

Hello
I'm trying to build BennuGD in Linux (Ubuntu). I have the necessary libraries installed and I noticed something strange.
The configure script runs fine but the 'make' command fails with error:
/home/user/devel/bennugd-svn/core/bgdc/src/../../common/b_crypt.c:60: undefined reference to `DES_key_sched'
This says that the linker can't find a symbol (a function in this case). I also noticed that the linker command have no reference to the OpenSSL DLL (in this case, crypto.so):
link: gcc -g -O2 -finline-functions -fno-strict-aliasing -o bgdc main.o main_core.o token.o identifier.o segment.o constants.o strings.o varspace.o procedure.o codeblock.o c_main.o c_data.o c_code.o c_debug.o dcbw.o error.o sysstub.o typedef.o debug.o b_crypt.o files.o xctype.o  -lc -ldl -lz
I was hoping to find something like -lcrpyto somewhere in this line and I think this is the reason it is failing. Can someone help me?

---

Daniel