does
sgfxi install the 32-bit OpenGL compat libs on 64-bit systems too ? ( using the
NVIDIA-Linux-x86_64-xxx.xx-pkg2.run installer that is )
a while back it did not:
http://sidux.com/PNphpBB2-viewtopic-t-8286.html
/LE: I just read the sgfxi source and it looks like it does use the right installer package
Code:
case $CARD in
$NVIDIA)
# this tweak thanks to ajw1980, who pointed out that pkg2 installs
# 32 bit compatibility libs in 64 bit without further fuss.
if [ "$BITS" == '64' ];then
nvPkgNo=2
fi
# set the package name, .run is added to it when it's needed
DRIVER_FILE="NVIDIA-Linux-x86$ARCH-$DRIVER_DEFAULT-pkg$nvPkgNo"
downloadUrl="$NVIDIA_DOWNLOAD_SITE/XFree86/Linux-x86$ARCH/$DRIVER_DEFAULT/"
;;
