aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure29
1 files changed, 24 insertions, 5 deletions
diff --git a/configure b/configure
index 1238109a..a28610fa 100755
--- a/configure
+++ b/configure
@@ -700,6 +700,7 @@ OPENSSL_CONFIG_COMMAND
XSLTPROC
AWK
PYTHON
+TOP_LEVEL_SUBDIRS
PYWRAP
LIBOBJS
LTLIBOBJS'
@@ -4532,20 +4533,40 @@ fi
# If any of this fails, we need to tell the user and give useful hint
# on what to do next (doc reference, whatever).
+TOP_LEVEL_SUBDIRS=""
+
+if test $build_openssl = yes
+then
+ TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS openssl"
+fi
+
+TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS rcynic utils"
+
if test $build_pywrap = yes
then
- # Eventually this should be the installation directory, but
- # we're not there yet.
+ TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS pywrap"
+fi
+if test $build_python = yes
+then
+ TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS pow rpkid"
+fi
+
+
+
+if test $build_pywrap = yes
+then
+ # Eventually this should be the installation directory, but
+ # for now we're still running out of the build tree.
PYWRAP=`pwd`/pow/pywrap/pywrap
else
+ # If we don't need pywrap, just make it expand to python
PYWRAP=$PYTHON
fi
if test $build_python = yes
then
-
# These are plain Python scripts, do not require pywrap
ac_config_files="$ac_config_files rpkid/backup-sql:buildtools/python-header:rpkid/backup-sql.py"
@@ -4577,8 +4598,6 @@ then
ac_config_files="$ac_config_files rpkid/tests/testpoke:buildtools/pywrap-header:rpkid/tests/testpoke.py"
-
-
fi
# This isn't the complete list of Makefiles (let alone setup.py, etc
-07-27 22:49:47 +0000 Cleanup' href='/sra/rpki.net/commit/openssl/README?id=ccec6f97552c4227ca6fffe867a32053fa5db7d8'>ccec6f97
47f1e958
ccec6f97


























45e40b2e


























45e40b2e





631f65e3
45e40b2e


ebe9ea65




45e40b2e




















ccec6f97





45e40b2e


ccec6f97




08e17a4b
ccec6f97




2ba1d33c
ccec6f97

84c4212c

ccec6f97



84c4212c
ccec6f97
84c4212c
ccec6f97
84c4212c
ccec6f97



e11002b6





84c4212c
631f65e3
7cc386f7
c52eed0d


c4213b26
95970d01







1acfd110


7f1e6be4

612506bd

631f65e3


f0539942


2d26c4f5

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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236