summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-06-13 08:52:55 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-06-13 08:52:55 (GMT)
commit053e9bc973fbe88fc41a34064ffadc0deabac58d (patch)
tree6aeee286577159ffcb612d41972a9d18ab685c6d /docs
parent6e13c7b6e0888323223afd5d2e36e86243df57af (diff)
downloaduscxml-053e9bc973fbe88fc41a34064ffadc0deabac58d.zip
uscxml-053e9bc973fbe88fc41a34064ffadc0deabac58d.tar.gz
uscxml-053e9bc973fbe88fc41a34064ffadc0deabac58d.tar.bz2
Fixed dozens of memory leaks
Diffstat (limited to 'docs')
-rw-r--r--docs/BUILDING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/BUILDING.md b/docs/BUILDING.md
index 690d98e..d627208 100644
--- a/docs/BUILDING.md
+++ b/docs/BUILDING.md
@@ -337,7 +337,7 @@ In addition, you will need apache's <tt>ant</tt> in the path or in <tt>$ENV{ANT_
If both of these are given, you ought to get <tt>java</tt> as an available language binding and a new target called
<tt>java</tt> for your build system. If you used plain Makefiles (default on unices), you will get everything you need via:
- $ make && make java
+ $ make && make jar
$ ls lib/*.jnilib lib/*.jar
lib/libuscxmlNativeJava64.jnilib lib/uscxml.jar
@@ -382,6 +382,6 @@ Command Prompt (2012)</tt> and type:
> cd c:\path\to\build\dir
> cmake -G"NMake Makefiles" c:\path\to\uscxml\source
...
- > nmake && nmake csharp && nmake java
+ > nmake && nmake csharp && nmake jar
...