Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

$ OpenSSL: (not needed, just use what comes with your Linux)
$ LibCurl: (usually not needed, or use =./configure --disable-static --without-ca-bundle --enable-thread --prefix=/opt/shibboleth-sp=)
$ log4cpp: ./configure --disable-static --disable-doxygen --prefix=/opt/shibboleth-sp
$ XercesC: ./runConfigure -p linux -c gcc -x g++ -r pthread -b 32 -P /opt/shibboleth-sp
$ XmlSecurityC: ./configure --without-xalan --prefix=/opt/shibboleth-sp
$ OpenSAML: ./configure --with-curl=/opt/shibboleth-sp --with-log4cpp=/opt/shibboleth-sp --prefix=/opt/shibboleth-sp -C
$ Shibboleth: ./configure --with-saml=/opt/shibboleth-sp --with-log4cpp=/opt/shibboleth-sp --enable-apache-20 --with-apxs2=/usr/sbin/apxs --prefix=/opt/shibboleth-sp -C

...

  • On most versions of Linux, the standard ONC RPC library provided should support Shibboleth properly. The configure script will attempt to verify this, and may force the use of the Shibboleth-supplied version if it appears to be necessary. Options can be passed to configure to override this detection logic.
  • RHEL3: if pkg-config is not installed (or not aware of ! OpenSSL), you should set some OpenSSL flags before running the Shibboleth configure script:
    • export SSLLIBS="-L/usr/kerberos/lib -lssl -lcrypto -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto -lresolv -ldl -lz" (you can omit -lssl and -lcrypto because the script adds them)
    • export SSLFLAGS="-I/usr/kerberos/include"
  • Debian:
    • apxs for Apache 1.3 packages will require --with-apxs=/usr/bin/apxs (also use --enable-apache-13 to build the module for Apache httpd v1.3)
    • apxs2 for Apache 2.0 packages will require --with-apxs2=/usr/bin/apxs2

...