blob: ccff1e42ef0f74a3463def02f5879dff6bb63b59 (
plain) (
blame)
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
|
--- configure.orig 2015-10-11 18:41:42 UTC
+++ configure
@@ -3874,81 +3874,11 @@ UTIL_HAVE_PRJ_DIRECTORIES=${gnat_project
# XMLAda library
##########################################
-gnat_xml_ada=xmlada-config
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking xmlada library" >&5
-$as_echo_n "checking xmlada library... " >&6; }
-# Check whether --with-xmlada was given.
-if test "${with_xmlada+set}" = set; then :
- withval=$with_xmlada;
- gnat_xml_ada=${withval}/xmlada-config
- WITH_XML_ADA="with \"${withval}\";";
- UTIL_XML_DIR='src/xml';
- UTIL_HAVE_XML='yes';
-
-else
-
- WITH_XML_ADA='';
- UTIL_XML_DIR='src';
- UTIL_HAVE_XML='no';
-
-fi
-
-
-ac_xml_version=`$gnat_xml_ada --version 2>/dev/null | sed -e 's, ,-,g'`
-case $ac_xml_version in
- XmlAda-3.2*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_xml_version" >&5
-$as_echo "$ac_xml_version" >&6; }
- WITH_XML_ADA="with \"xmlada\";";
- UTIL_XML_DIR='src/xml';
- UTIL_XML_VERSION='3';
- UTIL_HAVE_XML='yes';
- ;;
-
- XmlAda-4.*|XmlAda-2013|XmlAda-2014)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_xml_version" >&5
-$as_echo "$ac_xml_version" >&6; }
- WITH_XML_ADA="with \"xmlada\";";
- UTIL_XML_DIR='src/xml';
- UTIL_XML_VERSION='4';
- UTIL_HAVE_XML='yes';
- ;;
-
- *)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- ;;
-
-esac
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether xmlada project exists" >&5
-$as_echo_n "checking whether xmlada project exists... " >&6; }
- echo "with \"xmlada\"; project t is for Source_Dirs use (); end t;" > t.gpr
- $GNATMAKE -p -Pt >/dev/null 2>/dev/null
- if test $? -eq 0; then
- gnat_project_xmlada=yes
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, using xmlada" >&5
-$as_echo "yes, using xmlada" >&6; }
- gnat_project_with_xmlada="with \"xmlada\";";
- else
- gnat_project_xmlada=no
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- fi;
- rm -f t.gpr
-
-
-if test T$gnat_project_xmlada_sax = Tno; then
WITH_XML_ADA='';
UTIL_XML_DIR='src';
UTIL_XML_VERSION='none';
UTIL_HAVE_XML='no';
-fi
-
-
-
-
##########################################
|