summaryrefslogtreecommitdiff
path: root/docs/api/xmlsec-notes-compiling-windows.html
blob: 575fbb36a4fbe262ef9acde8eb12ef89753fcb71 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Compiling and linking on Windows.: XML Security Library Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="XML Security Library Reference Manual">
<link rel="up" href="xmlsec-notes-compiling.html" title="Building the application with XML Security Library.">
<link rel="prev" href="xmlsec-notes-compiling-unix.html" title="Compiling and linking on Unix.">
<link rel="next" href="xmlsec-notes-compiling-others.html" title="Compiling and linking on other systems.">
<meta name="generator" content="GTK-Doc V1.27 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="xmlsec-notes-compiling.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="xmlsec-notes-compiling-unix.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="xmlsec-notes-compiling-others.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="sect1">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="xmlsec-notes-compiling-windows"></a>Compiling and linking on Windows.</h2></div></div></div>
<p>On Windows there is no such simple and elegant solution.
	Please check <code class="filename">README</code> file in <code class="filename">win32</code>
	folder of the library package for latest instructions.
	However, there are few general things, that you need to remember:
	</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>	
	     <span class="emphasis"><em>All libraries linked to your application must be compiled
	    with the same Microsoft Runtime Libraries.</em></span>
	    </p></li>
<li class="listitem">
<p>	
	     <span class="emphasis"><em>Static linking with XML Security Library requires 
	     additional global defines:</em></span>
	      </p>
<div class="informalexample"><pre class="programlisting">
#define LIBXML_STATIC
#define LIBXSLT_STATIC
#define XMLSEC_STATIC	    
	     </pre></div>
<p>
	    </p>
</li>
<li class="listitem"><p>
	    If you do not want to dynamicaly load xmlsec-crypto library
	    and prefer to select crypto engine at linking then you should
	    link your application with xmlsec and at least one of 
	    xmlsec-crypto libraries.
	    </p></li>
<li class="listitem">
<p>
	    In order to enable dynamic loading for xmlsec-crypto library
	    you should add additional global define:
	      </p>
<div class="informalexample"><pre class="programlisting">
#define XMLSEC_CRYPTO_DYNAMIC_LOADING
	     </pre></div>
<p>	    
	    </p>
</li>
</ul></div>
<p>
	</p>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.27</div>
</body>
</html>