util.dependencies: Not finding our own libraries is fatal

Thu, 22 Jan 2009 14:33:02 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 22 Jan 2009 14:33:02 +0000
changeset 743
99ef95e119ad
parent 742
b9f59372eb4e
child 744
328b702fb80c

util.dependencies: Not finding our own libraries is fatal

util/dependencies.lua file | annotate | diff | comparison | revisions
--- a/util/dependencies.lua	Thu Jan 22 14:29:29 2009 +0000
+++ b/util/dependencies.lua	Thu Jan 22 14:33:02 2009 +0000
@@ -67,6 +67,7 @@
 	missingdep("util.encodings", { ["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
 	 				["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
 	 			});
+	fatal = true;
 end
 
 local encodings = softreq "util.hashes"
@@ -74,6 +75,7 @@
 	missingdep("util.hashes", { ["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
 	 				["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
 	 			});
+	fatal = true;
 end
 
 if fatal then os.exit(1); end

mercurial