File tree Expand file tree Collapse file tree 1 file changed +20
-8
lines changed
Expand file tree Collapse file tree 1 file changed +20
-8
lines changed Original file line number Diff line number Diff line change 117117## Building libwebockets
118118### OS X
119119* Clone libwebsockets
120- ``` Cd /path/to/libwebsockets
121- mkdir build
122- cd build
123- cmake "-DCMAKE_OSX_ARCHITECTURES=x86_64;i386" ..
124- make
125- cmake -DCMAKE_INSTALL_PREFIX:PATH=./install . && make install```
126-
120+ ```
121+ cd /path/to/libwebsockets
122+ mkdir build
123+ cd build
124+ cmake "-DCMAKE_OSX_ARCHITECTURES=x86_64;i386" ..
125+ make
126+ cmake -DCMAKE_INSTALL_PREFIX:PATH=./install . && make install
127+ ```
128+ ### Raspberry Pi
129+ * Clone libwebsockets
130+ ```
131+ cd /path/to/libwebsockets
132+ mkdir build
133+ cd build
134+ cmake .. -DLWS_IPV6=OFF
135+ make
136+ ```
127137
128138#STATUS
129- * Version 0.8.1 (current)
139+ * Version 0.8.4 (current)
140+ * Added PRi libraries
141+ * Version 0.8.1
130142 * Overhauled all messaging, supporting senging/receiving string and binary messages of indefinite size via continuation frames
131143 * Added examples from @zebradog of sending Blob data over websockets: way faster, way cleaner!
132144 * Lots of cleanup of excessive logging, possible crashes on sending
You can’t perform that action at this time.
0 commit comments