diff options
author | Tobias Brunner <tobias@strongswan.org> | 2017-09-26 12:23:36 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2017-10-02 17:21:42 +0200 |
commit | 0ae19f0ced8d64bb6996a8ae01406cebacff04a1 (patch) | |
tree | c49a71a1b8cc792445798f774d6f4322aaf4ffd0 /src/starter/confread.c | |
parent | 7dd29ab4ed5f1a233b3c63f1f3504434aef4997f (diff) | |
download | strongswan-0ae19f0ced8d64bb6996a8ae01406cebacff04a1.tar.bz2 strongswan-0ae19f0ced8d64bb6996a8ae01406cebacff04a1.tar.xz |
configure: Fix gperf length parameter determination
gperf is not actually a build dependency as the generated files are
shipped in the tarball. So the type depends on the gperf version on
the host that ran gperf and created the tarball, which might not be
the same as that on the actual build host, and gperf might not even
be installed there, leaving the type undetermined.
Fixes: e0e43229736a ("configure: Detect type of length parameter for gperf generated function")
Diffstat (limited to 'src/starter/confread.c')
-rw-r--r-- | src/starter/confread.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/starter/confread.c b/src/starter/confread.c index e78f2a70b..b3e942fac 100644 --- a/src/starter/confread.c +++ b/src/starter/confread.c @@ -46,11 +46,6 @@ static const char esp_defaults[] = "aes128-sha256"; static const char firewall_defaults[] = IPSEC_SCRIPT " _updown iptables"; /** - * Provided by GPERF - */ -extern const kw_entry_t *in_word_set(register const char*, register GPERF_LEN_TYPE); - -/** * Process deprecated keywords */ static bool is_deprecated(kw_token_t token, char *name, char *conn) |