]> git.ipfire.org Git - thirdparty/strongswan.git/blame - Android.mk
kernel-netlink: Allow blank source address in routes for passthrough policies
[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 \
9804fcce 20 pkcs1 pkcs8 pem xcbc hmac kernel-netlink socket-default android-dns \
ef73bb52 21 stroke eap-identity eap-mschapv2 eap-md5 eap-gtc
1be32988 22
67307ad7
TB
23ifneq ($(strongswan_BUILD_SCEPCLIENT),)
24# plugins loaded by scepclient
36f2e11c 25strongswan_SCEPCLIENT_PLUGINS := openssl curl fips-prf random pkcs1 pkcs7 pem
67307ad7
TB
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) \
b9949e98
TB
32 $(strongswan_STARTER_PLUGINS) \
33 $(strongswan_SCEPCLIENT_PLUGINS))
9227a3b3 34
3fa8d773 35include $(LOCAL_PATH)/Android.common.mk
1be32988
TB
36
37# includes
551b0202 38strongswan_PATH := $(LOCAL_PATH)
197dbf5f 39libcurl_PATH := external/strongswan-support/libcurl/include
551b0202 40libgmp_PATH := external/strongswan-support/gmp
73940eb7 41openssl_PATH := external/openssl/include
1be32988 42
eae49aff 43# some definitions
eae49aff
TB
44strongswan_DIR := "/system/bin"
45strongswan_SBINDIR := "/system/bin"
46strongswan_PIDDIR := "/data/misc/vpn"
47strongswan_PLUGINDIR := "$(strongswan_IPSEC_DIR)/ipsec"
48strongswan_CONFDIR := "/system/etc"
49strongswan_STRONGSWAN_CONF := "$(strongswan_CONFDIR)/strongswan.conf"
50
1be32988
TB
51# CFLAGS (partially from a configure run using droid-gcc)
52strongswan_CFLAGS := \
53 -Wno-format \
54 -Wno-pointer-sign \
f9622e8c 55 -Wno-pointer-arith \
1be32988
TB
56 -Wno-sign-compare \
57 -Wno-strict-aliasing \
58 -DHAVE___BOOL \
59 -DHAVE_STDBOOL_H \
60 -DHAVE_ALLOCA_H \
61 -DHAVE_ALLOCA \
62 -DHAVE_CLOCK_GETTIME \
3e4ce886 63 -DHAVE_DLADDR \
1be32988
TB
64 -DHAVE_PRCTL \
65 -DHAVE_LINUX_UDP_H \
66 -DHAVE_STRUCT_SADB_X_POLICY_SADB_X_POLICY_PRIORITY \
67 -DHAVE_IPSEC_MODE_BEET \
68 -DHAVE_IPSEC_DIR_FWD \
61c950d9 69 -DOPENSSL_NO_ENGINE \
980ca1f7 70 -DCONFIG_H_INCLUDED \
946be4d3
TB
71 -DCAPABILITIES \
72 -DCAPABILITIES_NATIVE \
1be32988 73 -DMONOLITHIC \
9866c26c 74 -DUSE_IKEV1 \
088020fb 75 -DUSE_IKEV2 \
20c99eda 76 -DUSE_BUILTIN_PRINTF \
b66a3b3d 77 -DDEBUG \
1be32988
TB
78 -DROUTING_TABLE=0 \
79 -DROUTING_TABLE_PRIO=220 \
eae49aff 80 -DVERSION=\"$(strongswan_VERSION)\" \
eae49aff
TB
81 -DPLUGINDIR=\"$(strongswan_PLUGINDIR)\" \
82 -DIPSEC_DIR=\"$(strongswan_DIR)\" \
83 -DIPSEC_PIDDIR=\"$(strongswan_PIDDIR)\" \
84 -DIPSEC_CONFDIR=\"$(strongswan_CONFDIR)\" \
85 -DSTRONGSWAN_CONF=\"$(strongswan_STRONGSWAN_CONF)\" \
1be32988
TB
86 -DDEV_RANDOM=\"/dev/random\" \
87 -DDEV_URANDOM=\"/dev/urandom\"
88
89# only for Android 2.0+
90strongswan_CFLAGS += \
91 -DHAVE_IN6ADDR_ANY
92
1cde0a51
TB
93strongswan_BUILD := \
94 charon \
95 libcharon \
1cde0a51 96 libstrongswan \
ba5b559b 97 libtncif \
19737434 98 libtnccs \
6b726b6f
TB
99 libimcv \
100 libtpmtss
1cde0a51
TB
101
102ifneq ($(strongswan_BUILD_STARTER),)
103strongswan_BUILD += \
1cde0a51
TB
104 starter \
105 stroke \
106 ipsec
107endif
108
67307ad7
TB
109ifneq ($(strongswan_BUILD_SCEPCLIENT),)
110strongswan_BUILD += \
111 scepclient
112endif
113
1be32988 114include $(addprefix $(LOCAL_PATH)/src/,$(addsuffix /Android.mk, \
1cde0a51 115 $(sort $(strongswan_BUILD))))