Add openssl libraries to the configure script for eap submodules (#1734)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@7456 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-06-02 17:50:21 +00:00
parent 8e662d26a2
commit 005049bc43

View File

@ -267,18 +267,21 @@ endif
ifneq ($(SDK)$(CONFIG_PACKAGE_freeradius-mod-eap-peap),)
PKG_CONFIGURE_ARGS+= --with-rlm_eap_peap
PKG_CONFIGURE_LIBS+= -lcrypto -lssl
else
PKG_CONFIGURE_ARGS+= --without-rlm_eap_peap
endif
ifneq ($(SDK)$(CONFIG_PACKAGE_freeradius-mod-eap-tls),)
PKG_CONFIGURE_ARGS+= --with-rlm_eap_tls
PKG_CONFIGURE_LIBS+= -lcrypto -lssl
else
PKG_CONFIGURE_ARGS+= --without-rlm_eap_tls
endif
ifneq ($(SDK)$(CONFIG_PACKAGE_freeradius-mod-eap-ttls),)
PKG_CONFIGURE_ARGS+= --with-rlm_eap_ttls
PKG_CONFIGURE_LIBS+= -lcrypto -lssl
else
PKG_CONFIGURE_ARGS+= --without-rlm_eap_ttls
endif