Hi, I made a short shellscript that circumvents this situation:
----
#!/bin/sh
cd /usr/lib/xscreensaver
for f in `ls /usr/lib/xscreensaver`
do
ln -s /usr/lib/xscreensaver/$f /usr/libexec/xscreensaver/$f
done
----
this only generates symlinks in /usr/libexec/xscreensaver, so that when
the bins in rss-glx are updated, they are also "updated" in
/usr/libexec/xscreensaver

