get into your svgalib source directory and then :
Code:
cd kernel/svgalib_helper
make
make install
depmod -ae
If you have problems compiling try using the makefile.alt makefile instead(although from my experience the normal one works better) :
Code:
make -f makefile.alt
If the module still doesn't modprobe then maybe it didn't install itself properly in which case you can copy the module in manually :
Code:
cp svgalib_helper.ko /lib/modules/'uname -r'/kernel/drivers/video
Or you could just insmod it as a test:
Code:
insmod -f ./svgalib_helper.ko
Oh yeah and lastly make sure that you are running as root user or have set the suid bit on the executable,you can't run svgalib programs as a normal user.