Hello,

>         make V=1 \
>          TARGET=linux2628 \
>          USE_SYSTEMD=1 \
>          USE_OPENSSL=1 \
>           SSL_INC=" -I/usr/local/openssl11/include" \
>           SSL_LIB=" -L/usr/local/openssl11/lib64 
> -Wl,-rpath,/usr/local/openssl11/lib64" \
>           ADDLIB="-ldl -lssl -lcrypto"

SSL_INC and SSL_LIB expect actual paths, not additional commands.
Replaces both with ADDLIB. Also you don't need to specify -lssl
-lcrypt, USE_OPENSSL does not for you.


Try:
>         make V=1 \
>          TARGET=linux2628 \
>          USE_SYSTEMD=1 \
>          USE_OPENSSL=1 \
>           ADDLIB=" -I/usr/local/openssl11/include" \
>           ADDLIB=" -L/usr/local/openssl11/lib64 
> -Wl,-rpath,/usr/local/openssl11/lib64" \
>           ADDLIB="-ldl"

You may not even need -ldl.


Lukas

Reply via email to