blob: 08592e1e0869fc0bb305111ef5a33c90920ef17e (
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
|
## Process this file with automake to produce Makefile.in
NULL =
SUBDIRS = private $(XMLSEC_CRYPTO_LIST)
EXTRA_DIST = skeleton mscrypto $(XMLSEC_CRYPTO_DISABLED_LIST)
xmlsecincdir = $(includedir)/xmlsec1/xmlsec
xmlsecinc_HEADERS = \
app.h \
base64.h \
bn.h \
buffer.h \
crypto.h \
dl.h \
errors.h \
exports.h \
io.h \
keyinfo.h \
keysdata.h \
keys.h \
keysmngr.h \
list.h \
membuf.h \
nodeset.h \
parser.h \
private.h \
soap.h \
strings.h \
templates.h \
transforms.h \
version.h \
x509.h \
xkms.h \
xmldsig.h \
xmlenc.h \
xmlsec.h \
xmltree.h \
$(NULL)
remove-old-headers:
@if test "x$(DESTDIR)" = "x" && test -d "$(includedir)/xmlsec"; then \
echo "----------------------------------------------------------------------"; \
echo; \
echo "*** WARNING ***:"; \
echo; \
echo "You seem to have old xmlsec header files installed in:"; \
echo; \
echo " \"$(includedir)/xmlsec\""; \
echo; \
echo "The entire directory will be removed now."; \
echo "To allow parallel installation of different xmlsec library versions,"; \
echo "the header files are now installed in a version specific subdirectory:"; \
echo; \
echo " \"$(xmlsecincdir)\""; \
echo; \
echo "----------------------------------------------------------------------"; \
echo; \
rm -rf "$(includedir)/xmlsec"; \
fi
install-exec-hook: remove-old-headers
$(mkinstalldirs) $(DESTDIR)$(xmlsecincdir)
|