AIX 5.3 Support

Packages validated

We have validated a subset of the VDT on AIX 5.3:

Notable packages that are unsupported

System requirements

We installed the following RPMs on our test system when validating the software listed above:

Installing Apache

Apache does not link properly, and we currently do not know how to fix this. If you know how to fix this, please let us know! In the meantime, here's a hack to make Apache work:

  1. Install the Apache package
    pacman -get http://vdt.cs.wisc.edu/vdt_1101_cache:Apache
  2. Move some library files so that Apache can find them.
    mkdir -p /home/condor/execute/dir_25078/userdir/apache/lib
    cp -r $VDT_LOCATION/apache/lib/* /home/condor/execute/dir_25078/userdir/apache/lib
    
  3. Fix the LIBPATH to prevent other programs from linking against Apache's libexpat
    # In $VDT_LOCATION/post-setup.sh, add the following two lines
    LIBPATH =`perl -e '($tmp = $ENV{LIBPATH}) =~ s|$ENV{VDT_LOCATION}/apache/lib:?||; print $tmp'`
    export LIBPATH
    
    # Ensure that $VDT_LOCATION/apache/lib is not in LIBPATH after sourcing setup.sh