[950] in testers
Re: X server does not support PLX Video extension
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Sun Jul 29 12:16:10 1990
Date: Sun, 29 Jul 90 12:15:52 -0400 (EDT)
From: John F Carr <jfc@ATHENA.MIT.EDU>
To: Ezra Peisach <epeisach@ATHENA.MIT.EDU>
Cc: testers@ATHENA.MIT.EDU
In-Reply-To: <9007291610.AA11355@MEDUSA.MIT.EDU>
You need to call PlxVideoExtensionInit(). To look like the rest of the
code, add 2 blocks:
#ifdef PLXVIDEO
extern void PlxVideoExtensionInit();
#endif
...
#ifdef PLXVIDEO
PlxVideoExtensionInit();
#endif
It should be obvious where they go when you look at the file (order of
extension initialization doesn't matter). Make sure PLXVIDEO is only
defined if the server being built supports the parallax (i.e. not for
Xq[vd]ss and non-plx Xibm servers).