Changes between Version 48 and Version 49 of Building
- Timestamp:
- 08/03/16 07:38:42 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building
v48 v49 128 128 == [http://www.debian.org/ Debian] and [http://www.ubuntu.com/ Ubuntu] == 129 129 130 For building you will need to install: 130 Sadly, you will need at least one patch to build on Debian / Ubuntu systems: [/browser/xpra/trunk/debian/patches]. 131 132 Install: 131 133 {{{ 132 134 apt-get install libx11-dev libxtst-dev libxcomposite-dev libxdamage-dev \ … … 134 136 python-all-dev python-gobject-dev python-gtk2-dev cython 135 137 }}} 136 If you encounter "{{{errors on char [32] keys_return .. Expected ')'}}}", then your version of Cython is probably too old, either upgrade it (from backports) or build it from source. 137 138 Make sure that your version of Cython is recent enough. 139 140 Also install some X11 utilities if not installed already: 138 141 {{{ 139 142 apt-get install xvfb xauth x11-xkb-utils 140 143 }}} 141 144 142 For x264 and vpx support, you should install: 143 {{{ 144 apt-get install libx264-dev libvpx-dev libswscale-dev libavcodec-dev 145 }}} 145 And for video support (x264 and vpx), you should install: 146 {{{ 147 apt-get install libx264-dev libvpx-dev 148 }}} 149 Note: starting with version 1.0, we use a private version of ffmpeg - see #1256 for details. 146 150 }}} 147 151