From 2fa51dcc2ef903e4247470f366f4463b05036838 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 5 May 2014 00:54:30 +0200 Subject: Help user understand that we need jiffy. We should make this an application sooner rather than later. --- src/https_server.erl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/https_server.erl b/src/https_server.erl index a0b81b4..ccbc2e7 100644 --- a/src/https_server.erl +++ b/src/https_server.erl @@ -3,6 +3,10 @@ start() -> io:format("Starting https server~n"), + case code:ensure_loaded(jiffy) of + {module, jiffy} -> ok; + _ -> io:format("missing jiffy -- please add to load path~n") + end, %% TODO: put this in httpd_props.conf and use that at erlang %% start. inets:start(httpd, {proplist_file, "httpd_props.conf"}). ServerRoot = "/home/linus/usr/src/ct/ctls/webroot", -- cgit v1.1