home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 14 / MA_Cover_14.iso / source / c / q1source_amy / qw / glqwcl.3dfxgl < prev    next >
Encoding:
Text File  |  1998-08-14  |  374 b   |  10 lines

  1. #!/bin/sh
  2.  
  3. # This script preloads the lib3dfxgl.so library which overrides the functions
  4. # present in libMesaGL.so.  This allows glquake to run using 3DFX's miniport
  5. # and without Mesa 3-D.  Glide and X11 libraries have to be installed tho, 
  6. # even tho GLQuake doesn't use X11, it's linked against it because Mesa 3-D
  7. # requires them.
  8.  
  9. LD_PRELOAD=./lib3dfxgl.so ./glqwcl $*
  10.