diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-12-19 11:21:40 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-12-19 11:21:40 +0000 |
commit | 4e38b0800df9879b5926d1dc2cb6b6c564ebb659 (patch) | |
tree | be0a5a2825d2988e457924fa9cfe1426a897be94 | |
parent | Supply auth_chain along with current state in '/state/', fetch auth events fr... (diff) | |
parent | Update README.rst (diff) | |
download | synapse-4e38b0800df9879b5926d1dc2cb6b6c564ebb659.tar.xz |
Merge branch 'develop' into release-v0.6.0
-rw-r--r-- | README.rst | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/README.rst b/README.rst index 8459bcac2e..f5d2b0af38 100644 --- a/README.rst +++ b/README.rst @@ -133,6 +133,37 @@ failing, e.g.:: On OSX, if you encounter clang: error: unknown argument: '-mno-fused-madd' you will need to export CFLAGS=-Qunused-arguments. +Windows Install +--------------- +Synapse can be installed on Cygwin. It requires the following Cygwin packages: + + - gcc + - git + - libffi-devel + - openssl (and openssl-devel, python-openssl) + - python + - python-setuptools + +The content repository requires additional packages and will be unable to process +uploads without them: + - libjpeg8 + - libjpeg8-devel + - zlib +If you choose to install Synapse without these packages, you will need to reinstall +``pillow`` for changes to be applied, e.g. ``pip uninstall pillow`` ``pip install +pillow --user`` + +Troubleshooting: + +- You may need to upgrade ``setuptools`` to get this to work correctly: + ``pip install setuptools --upgrade``. +- You may encounter errors indicating that ``ffi.h`` is missing, even with + ``libffi-devel`` installed. If you do, copy the ``.h`` files: + ``cp /usr/lib/libffi-3.0.13/include/*.h /usr/include`` +- You may need to install libsodium from source in order to install PyNacl. If + you do, you may need to create a symlink to ``libsodium.a`` so ``ld`` can find + it: ``ln -s /usr/local/lib/libsodium.a /usr/lib/libsodium.a`` + Running Your Homeserver ======================= |