]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
android: Remove scepclient from old top-level Android.mk
authorTobias Brunner <tobias@strongswan.org>
Mon, 5 Sep 2022 17:09:31 +0000 (19:09 +0200)
committerTobias Brunner <tobias@strongswan.org>
Tue, 6 Sep 2022 07:33:00 +0000 (09:33 +0200)
Android.mk

index a69599598fef3738c673222887084574977620d8..c8815fbff6a82ba815f6e05b7d1927a71e58ad31 100644 (file)
@@ -7,12 +7,9 @@ include $(CLEAR_VARS)
 # possible executables are
 #   starter - allows to control and configure the daemon from the command line
 #   charon - the IKE daemon
-#   scepclient - SCEP client
 
-# if you enable starter or scepclient (see above) uncomment the proper
-# lines here
+# if you enable starter (see above) uncomment the following line
 # strongswan_BUILD_STARTER := true
-# strongswan_BUILD_SCEPCLIENT := true
 
 # this is the list of plugins that are built into libstrongswan and charon
 # also these plugins are loaded by default (if not changed in strongswan.conf)
@@ -20,17 +17,11 @@ strongswan_CHARON_PLUGINS := android-log openssl fips-prf random nonce pubkey \
        pkcs1 pkcs8 pem xcbc hmac kdf kernel-netlink socket-default android-dns \
        stroke eap-identity eap-mschapv2 eap-md5 eap-gtc
 
-ifneq ($(strongswan_BUILD_SCEPCLIENT),)
-# plugins loaded by scepclient
-strongswan_SCEPCLIENT_PLUGINS := openssl curl fips-prf random pkcs1 pkcs7 pem
-endif
-
 strongswan_STARTER_PLUGINS := kernel-netlink
 
 # list of all plugins - used to enable them with the function below
 strongswan_PLUGINS := $(sort $(strongswan_CHARON_PLUGINS) \
-       $(strongswan_STARTER_PLUGINS) \
-       $(strongswan_SCEPCLIENT_PLUGINS))
+       $(strongswan_STARTER_PLUGINS))
 
 include $(LOCAL_PATH)/Android.common.mk
 
@@ -106,10 +97,5 @@ strongswan_BUILD += \
        ipsec
 endif
 
-ifneq ($(strongswan_BUILD_SCEPCLIENT),)
-strongswan_BUILD += \
-       scepclient
-endif
-
 include $(addprefix $(LOCAL_PATH)/src/,$(addsuffix /Android.mk, \
                $(sort $(strongswan_BUILD))))