Search code examples
fedoraalljoyn

How to install AllJoyn on Fedora 19?


Is there a procedure to install AllJoyn on Fedora 19?

AllJoyn site includes the installation procedure for Debian/Ubuntu Linux only.


Solution

  • I have used the build procedure for Debian to make the one for F19.

    1. Build tools and libs

    To install the equivalent of build-essential:

    sudo yum groupinstall "Development Tools" "Development Libraries"
    

    For the other packages, except ia32-libs:

    sudo yum install gtk2-devel openssl-devel libxslt libxml2-devel
    

    And for ia32-libs, I didn't found an adequate replacement. It looks like this package groups many others. For my case, I installed nothing. Apparently, my workstation contains already an adequate replacement (I use my workstation for development).

    2. Install Python v2.6/2.7 (Python v3.0 is not compatible and will cause errors)

    sudo yum install python
    

    3. Install SCons v2.0

    sudo yum install scons
    

    4. OpenSSL

    This package has been already installed in the first step.

    The remaining steps are exactly the same as for Debian.