blob: b3a3e6b469ea9e685fca50e32e9dfcf61232dca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# ====================================================================
#
# bsd_crypto.cdl
#
# FreeBSD crypto functions
#
# ====================================================================
# ####ECOSPDCOPYRIGHTBEGIN####
# -------------------------------------------
# This file is part of eCos, the Embedded Configurable Operating System.
# Copyright (C) 2003 Free Software Foundation, Inc.
#
# Permission is granted to use, copy, modify and redistribute this
# file.
#
# -------------------------------------------
# ####ECOSPDCOPYRIGHTEND####
# ====================================================================
######DESCRIPTIONBEGIN####
#
# Author(s): Andrew Lunn
# Original data: Andrew Lunn
# Contributors:
# Date: 2003-11-08
#
#####DESCRIPTIONEND####
#
# ====================================================================
cdl_package CYGPKG_NET_IPSEC_LIBIPSEC {
display "Implements the libipsec library"
doc ref/net-ipsec-common.html
parent CYGPKG_NET_IPSEC
requires CYGPKG_NET_IPSEC
compile \
ipsec_dump_policy.c \
ipsec_get_policylen.c \
ipsec_strerror.c \
pfkey.c \
pfkey_dump.c \
policy_parse.tab.c \
lex.yy.c
cdl_option CYGPKG_NET_IPSEC_LIBIPSEC_CFLAGS_ADD {
display "Additional compiler flags"
flavor data
no_define
default_value { "-D__ECOS -D__FreeBSD_" }
description "
This option modifies the set of compiler flags for
building the networking package.
These flags are used in addition
to the set of global flags."
}
cdl_option CYGPKG_NET_IPSEC_LIBIPSEC_CFLAGS_REMOVE {
display "Suppressed compiler flags"
flavor data
no_define
default_value { "" }
description "
This option modifies the set of compiler flags for
building the networking package. These flags are removed from
the set of global flags if present."
}
cdl_option CYGPKG_NET_IPSEC_LIBIPSEC_TESTS {
display "libipsec tests"
flavor data
no_define
calculated { "tests/test-policy" }
description "
This option specifies the set of tests for libipsec"
}
}
|