36 | | When building against those private libraries, you must point the compiler and linker to their location, ie for 64-bit: |
37 | | {{{ |
38 | | LDFLAGS=-Wl,-rpath=/usr/lib64/xpra \ |
39 | | PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib64/xpra/pkgconfig \ |
40 | | ./setup.py install |
41 | | }}} |
42 | | |
43 | | The spec files used for building all the packages found in the repositories can be found here: [/browser/xpra/trunk/rpmbuild?order=name xpra/trunk/rpmbuild]. |
44 | | More information on the private libraries setup can be found here: #613. |
45 | | |
46 | | For {{{OpenGL}}} accelerated client rendering support, add: |
| 32 | For {{{OpenGL}}} accelerated client rendering support, add this runtime dependency: |
| 51 | |
| 52 | |
| 53 | {{{#!div class="box" |
| 54 | == Build Commands == |
| 55 | When building against those private libraries, you must point the compiler and linker to their location, ie for 64-bit: |
| 56 | {{{ |
| 57 | python3 ./setup.py install \ |
| 58 | --rpath=/usr/lib64/xpra --pkg-config-path=/usr/lib64/xpra/pkgconfig |
| 59 | --without-html5 --without-printing |
| 60 | python2 ./setup.py install \ |
| 61 | --rpath=/usr/lib64/xpra --pkg-config-path=/usr/lib64/xpra/pkgconfig |
| 62 | }}} |
| 63 | |
| 64 | The spec files used for building all the RPM packages found in the repositories are here: [/browser/xpra/trunk/rpmbuild?order=name xpra/trunk/rpmbuild]. |
| 65 | More information on the private libraries setup can be found here: #613. |
| 66 | }}} |