I want to compile wpa_supplicant using another version of openssl then the one installed on the build system.
To do this, I set these settings in the .config
file:
CFLAGS += -I/custom-openssl/include
LIBS += -L/custom-openssl/lib
However, it is still linking against the default installed openssl version.
I also had to set
LIBS_p
. Everything else was fine.