Fix freeradius compilation when not selecting all EAP modules (#1373)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6398 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-02-27 10:09:36 +00:00
parent 93fbb25b6d
commit 989827039d

View File

@ -271,6 +271,18 @@ else
PKG_CONFIGURE_OPTIONS+= --without-rlm_sql_postgresql
endif
ifeq ($(CONFIG_PACKAGE_freeradius-mod-eap-tls),)
PKG_CONFIGURE_OPTIONS+= --without-rlm_eap_tls
endif
ifeq ($(CONFIG_PACKAGE_freeradius-mod-eap-peap),)
PKG_CONFIGURE_OPTIONS+= --without-rlm_eap_peap
endif
ifeq ($(CONFIG_PACKAGE_freeradius-mod-eap-ttls),)
PKG_CONFIGURE_OPTIONS+= --without-rlm_eap_ttls
endif
define Build/Configure
$(call Build/Configure/Default, \
--libdir=/usr/lib/freeradius \