Comment 156 for bug 185311

Revision history for this message
Martin West (martin-objectgizmos) wrote :

I am getting the problem in eclipse ide. with jdk5 and 6, I knocked up this quick script to zap all ...

#!/bin/bash

sos=`locate libmawt.so`
for SO in $sos ; do
    dir=`dirname $SO`
    # make copy of original
    if [ ! -f $dir/libmawt.so.old ]; then
      cp $SO $dir/libmawt.so.old
    fi
    sed -i 's/XINERAMA/FAKEEXTN/g' $SO
done