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
9LD_PRELOAD=./lib3dfxgl.so ./glqwcl $*
10