]> git.ipfire.org Git - thirdparty/strongswan.git/blame - Android.mk
Move PKCS#9 attribute lists to pkcs7 plugin, as we currently use it there only
[thirdparty/strongswan.git] / Android.mk
CommitLineData
1be32988
TB
1LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
2e0b478a
TB
4# the executables that should be installed on the final system have to be added
5# to PRODUCT_PACKAGES in
6# build/target/product/core.mk
7# possible executables are
67307ad7 8# starter - allows to control and configure the daemon from the command line
fff4b74d 9# charon - the IKE daemon
67307ad7 10# scepclient - SCEP client
1cde0a51 11
67307ad7
TB
12# if you enable starter or scepclient (see above) uncomment the proper
13# lines here
2e0b478a 14# strongswan_BUILD_STARTER := true
67307ad7 15# strongswan_BUILD_SCEPCLIENT := true
0ad58f01 16
1be32988
TB
17# this is the list of plugins that are built into libstrongswan and charon
18# also these plugins are loaded by default (if not changed in strongswan.conf)
162621ed 19strongswan_CHARON_PLUGINS := android-log openssl fips-prf random nonce pubkey \
69f731a9 20 pkcs1 pkcs8 pem xcbc hmac kernel-netlink socket-default android \
ef73bb52 21 stroke eap-identity eap-mschapv2 eap-md5 eap-gtc
1be32988 22
67307ad7
TB
23ifneq ($(strongswan_BUILD_SCEPCLIENT),)
24# plugins loaded by scepclient
25strongswan_SCEPCLIENT_PLUGINS := openssl curl fips-prf random pkcs1 pem
26endif
27
bb3357e8
TB
28strongswan_STARTER_PLUGINS := kernel-netlink
29
9227a3b3
TB
30# list of all plugins - used to enable them with the function below
31strongswan_PLUGINS := $(sort $(strongswan_CHARON_PLUGINS) \
67307ad7
TB
32 $(strongswan_STARTER_PLUGINS) \
33 $(strongswan_SCEPCLIENT_PLUGINS))
9227a3b3 34
3fa8d773 35include $(LOCAL_PATH)/Android.common.mk
1be32988
TB
36
37# includes
551b0202
TB
38strongswan_PATH := $(LOCAL_PATH)
39libvstr_PATH := external/strongswan-support/vstr/include
197dbf5f 40libcurl_PATH := external/strongswan-support/libcurl/include
551b0202 41libgmp_PATH := external/strongswan-support/gmp
73940eb7 42openssl_PATH := external/openssl/include
1be32988 43
eae49aff 44# some definitions
eae49aff
TB
45strongswan_DIR := "/system/bin"
46strongswan_SBINDIR := "/system/bin"
47strongswan_PIDDIR := "/data/misc/vpn"
48strongswan_PLUGINDIR := "$(strongswan_IPSEC_DIR)/ipsec"
49strongswan_CONFDIR := "/system/etc"
50strongswan_STRONGSWAN_CONF := "$(strongswan_CONFDIR)/strongswan.conf"
51
1be32988
TB
52# CFLAGS (partially from a configure run using droid-gcc)
53strongswan_CFLAGS := \
54 -Wno-format \
55 -Wno-pointer-sign \
f9622e8c 56 -Wno-pointer-arith \
1be32988
TB
57 -Wno-sign-compare \
58 -Wno-strict-aliasing \
59 -DHAVE___BOOL \
60 -DHAVE_STDBOOL_H \
61 -DHAVE_ALLOCA_H \
62 -DHAVE_ALLOCA \
63 -DHAVE_CLOCK_GETTIME \
64 -DHAVE_PTHREAD_COND_TIMEDWAIT_MONOTONIC \
65 -DHAVE_PRCTL \
66 -DHAVE_LINUX_UDP_H \
67 -DHAVE_STRUCT_SADB_X_POLICY_SADB_X_POLICY_PRIORITY \
68 -DHAVE_IPSEC_MODE_BEET \
69 -DHAVE_IPSEC_DIR_FWD \
61c950d9
TB
70 -DOPENSSL_NO_EC \
71 -DOPENSSL_NO_ECDSA \
72 -DOPENSSL_NO_ECDH \
73 -DOPENSSL_NO_ENGINE \
980ca1f7 74 -DCONFIG_H_INCLUDED \
946be4d3
TB
75 -DCAPABILITIES \
76 -DCAPABILITIES_NATIVE \
1be32988 77 -DMONOLITHIC \
9866c26c 78 -DUSE_IKEV1 \
088020fb 79 -DUSE_IKEV2 \
1be32988 80 -DUSE_VSTR \
b66a3b3d 81 -DDEBUG \
1be32988
TB
82 -DROUTING_TABLE=0 \
83 -DROUTING_TABLE_PRIO=220 \
eae49aff 84 -DVERSION=\"$(strongswan_VERSION)\" \
eae49aff
TB
85 -DPLUGINDIR=\"$(strongswan_PLUGINDIR)\" \
86 -DIPSEC_DIR=\"$(strongswan_DIR)\" \
87 -DIPSEC_PIDDIR=\"$(strongswan_PIDDIR)\" \
88 -DIPSEC_CONFDIR=\"$(strongswan_CONFDIR)\" \
89 -DSTRONGSWAN_CONF=\"$(strongswan_STRONGSWAN_CONF)\" \
1be32988
TB
90 -DDEV_RANDOM=\"/dev/random\" \
91 -DDEV_URANDOM=\"/dev/urandom\"
92
93# only for Android 2.0+
94strongswan_CFLAGS += \
95 -DHAVE_IN6ADDR_ANY
96
1cde0a51
TB
97strongswan_BUILD := \
98 charon \
99 libcharon \
100 libhydra \
101 libstrongswan \
ba5b559b
TB
102 libtncif \
103 libtnccs
1cde0a51
TB
104
105ifneq ($(strongswan_BUILD_STARTER),)
106strongswan_BUILD += \
1cde0a51
TB
107 starter \
108 stroke \
109 ipsec
110endif
111
67307ad7
TB
112ifneq ($(strongswan_BUILD_SCEPCLIENT),)
113strongswan_BUILD += \
114 scepclient
115endif
116
1be32988 117include $(addprefix $(LOCAL_PATH)/src/,$(addsuffix /Android.mk, \
1cde0a51 118 $(sort $(strongswan_BUILD))))