Streamlined EAP plugins to use a dash between eap-method, as used in all other places
This commit is contained in:
@@ -187,47 +187,47 @@ endif
|
||||
|
||||
if USE_EAP_IDENTITY
|
||||
SUBDIRS += plugins/eap_identity
|
||||
PLUGINS += eapidentity
|
||||
PLUGINS += eap-identity
|
||||
endif
|
||||
|
||||
if USE_EAP_SIM
|
||||
SUBDIRS += plugins/eap_sim
|
||||
PLUGINS += eapsim
|
||||
PLUGINS += eap-sim
|
||||
endif
|
||||
|
||||
if USE_EAP_SIM_FILE
|
||||
SUBDIRS += plugins/eap_sim_file
|
||||
PLUGINS += eapsim-file
|
||||
PLUGINS += eap-sim-file
|
||||
endif
|
||||
|
||||
if USE_EAP_MD5
|
||||
SUBDIRS += plugins/eap_md5
|
||||
PLUGINS += eapmd5
|
||||
PLUGINS += eap-md5
|
||||
endif
|
||||
|
||||
if USE_EAP_GTC
|
||||
SUBDIRS += plugins/eap_gtc
|
||||
PLUGINS += eapgtc
|
||||
PLUGINS += eap-gtc
|
||||
endif
|
||||
|
||||
if USE_EAP_AKA
|
||||
SUBDIRS += plugins/eap_aka
|
||||
PLUGINS += eapaka
|
||||
PLUGINS += eap-aka
|
||||
endif
|
||||
|
||||
if USE_EAP_AKA_3GPP2
|
||||
SUBDIRS += plugins/eap_aka_3gpp2
|
||||
PLUGINS += eapaka-3gpp2
|
||||
PLUGINS += eap-aka-3gpp2
|
||||
endif
|
||||
|
||||
if USE_EAP_MSCHAPV2
|
||||
SUBDIRS += plugins/eap_mschapv2
|
||||
PLUGINS += eapmschapv2
|
||||
PLUGINS += eap-mschapv2
|
||||
endif
|
||||
|
||||
if USE_EAP_RADIUS
|
||||
SUBDIRS += plugins/eap_radius
|
||||
PLUGINS += eapradius
|
||||
PLUGINS += eap-radius
|
||||
endif
|
||||
|
||||
if USE_MEDSRV
|
||||
|
||||
@@ -3,8 +3,8 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapaka.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-aka.la
|
||||
|
||||
libstrongswan_eapaka_la_SOURCES = eap_aka_plugin.h eap_aka_plugin.c eap_aka.h eap_aka.c
|
||||
libstrongswan_eapaka_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_aka_la_SOURCES = eap_aka_plugin.h eap_aka_plugin.c eap_aka.h eap_aka.c
|
||||
libstrongswan_eap_aka_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
@@ -3,13 +3,13 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapaka-3gpp2.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-aka-3gpp2.la
|
||||
|
||||
libstrongswan_eapaka_3gpp2_la_SOURCES = \
|
||||
libstrongswan_eap_aka_3gpp2_la_SOURCES = \
|
||||
eap_aka_3gpp2_plugin.h eap_aka_3gpp2_plugin.c \
|
||||
eap_aka_3gpp2_card.h eap_aka_3gpp2_card.c \
|
||||
eap_aka_3gpp2_provider.h eap_aka_3gpp2_provider.c \
|
||||
eap_aka_3gpp2_functions.h eap_aka_3gpp2_functions.c
|
||||
libstrongswan_eapaka_3gpp2_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eapaka_3gpp2_la_LIBADD = -lgmp
|
||||
libstrongswan_eap_aka_3gpp2_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_aka_3gpp2_la_LIBADD = -lgmp
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapgtc.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-gtc.la
|
||||
|
||||
libstrongswan_eapgtc_la_SOURCES = eap_gtc_plugin.h eap_gtc_plugin.c eap_gtc.h eap_gtc.c
|
||||
libstrongswan_eapgtc_la_LDFLAGS = -module -avoid-version -lpam
|
||||
libstrongswan_eap_gtc_la_SOURCES = eap_gtc_plugin.h eap_gtc_plugin.c eap_gtc.h eap_gtc.c
|
||||
libstrongswan_eap_gtc_la_LDFLAGS = -module -avoid-version -lpam
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapidentity.la
|
||||
libstrongswan_eapidentity_la_SOURCES = \
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-identity.la
|
||||
libstrongswan_eap_identity_la_SOURCES = \
|
||||
eap_identity_plugin.h eap_identity_plugin.c eap_identity.h eap_identity.c
|
||||
libstrongswan_eapidentity_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_identity_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapmd5.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-md5.la
|
||||
|
||||
libstrongswan_eapmd5_la_SOURCES = eap_md5_plugin.h eap_md5_plugin.c eap_md5.h eap_md5.c
|
||||
libstrongswan_eapmd5_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_md5_la_SOURCES = eap_md5_plugin.h eap_md5_plugin.c eap_md5.h eap_md5.c
|
||||
libstrongswan_eap_md5_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
@@ -3,10 +3,10 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapmschapv2.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-mschapv2.la
|
||||
|
||||
libstrongswan_eapmschapv2_la_SOURCES = \
|
||||
libstrongswan_eap_mschapv2_la_SOURCES = \
|
||||
eap_mschapv2_plugin.h eap_mschapv2_plugin.c \
|
||||
eap_mschapv2.h eap_mschapv2.c
|
||||
libstrongswan_eapmschapv2_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_mschapv2_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@ AM_CFLAGS = -rdynamic \
|
||||
-DIPSEC_CONFDIR=\"${sysconfdir}\" \
|
||||
-DSIM_READER_LIB=\"${sim_reader}\"
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapsim.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-sim.la
|
||||
|
||||
libstrongswan_eapsim_la_SOURCES = eap_sim.h eap_sim.c \
|
||||
libstrongswan_eap_sim_la_SOURCES = eap_sim.h eap_sim.c \
|
||||
eap_sim_plugin.h eap_sim_plugin.c
|
||||
libstrongswan_eapsim_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_sim_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
@@ -3,12 +3,12 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic -DIPSEC_CONFDIR=\"${sysconfdir}\"
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-eapsim-file.la
|
||||
plugin_LTLIBRARIES = libstrongswan-eap-sim-file.la
|
||||
|
||||
libstrongswan_eapsim_file_la_SOURCES = \
|
||||
libstrongswan_eap_sim_file_la_SOURCES = \
|
||||
eap_sim_file_plugin.h eap_sim_file_plugin.c \
|
||||
eap_sim_file_card.h eap_sim_file_card.c \
|
||||
eap_sim_file_provider.h eap_sim_file_provider.c \
|
||||
eap_sim_file_triplets.h eap_sim_file_triplets.c
|
||||
libstrongswan_eapsim_file_la_LDFLAGS = -module -avoid-version
|
||||
libstrongswan_eap_sim_file_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
||||
Reference in New Issue
Block a user