From: florian Date: Sat, 2 Jun 2007 17:50:21 +0000 (+0000) Subject: Add openssl libraries to the configure script for eap submodules (#1734) X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=005049bc43c900a8e7656c7486abcde7ee47d1f6;p=packages.git 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 --- diff --git a/net/freeradius/Makefile b/net/freeradius/Makefile index 02d5bc9f6..6ccfe2be9 100644 --- a/net/freeradius/Makefile +++ b/net/freeradius/Makefile @@ -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