aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README24
1 files changed, 22 insertions, 2 deletions
diff --git a/README b/README
index 71aee37c..0d2d1ab5 100644
--- a/README
+++ b/README
@@ -35,8 +35,28 @@ sockets. This should work on OS X, Linux and recent BSD systems (at
35least). On other systems that may trigger a SIGPIPE on send/recv, the 35least). On other systems that may trigger a SIGPIPE on send/recv, the
36main application should install a signal handler to handle SIGPIPE. 36main application should install a signal handler to handle SIGPIPE.
37 37
38libmicrohttpd should work well on GNU/Linux, BSD, OS X and W32. 38libmicrohttpd should work well on GNU/Linux, BSD, OS X, W32 and z/OS.
39We also have reports of users using it on vxWorks and z/OS. 39Note that HTTPS is not supported on z/OS (yet).
40We also have reports of users using it on vxWorks.
41
42
43Notes on compiling on z/OS:
44---------------------------
45
46After extracting the archive, run
47
48iconv -f UTF-8 -t IBM-1047 contrib/ascebc > /tmp/ascebc.sh
49chmod +x /tmp/ascebc.sh
50for n in `find * -type f`
51do
52 /tmp/ascebc.sh $n
53done
54
55to convert all source files to EBCDIC. Note that you must run
56"configure" from the directory where the configure script is
57located. Otherwise, configure will fail to find the
58"contrib/xcc" script (which is a wrapper around the z/OS c89
59compiler).
40 60
41 61
42Development Status 62Development Status