xc/programs/Xserver/Imakefile

xc/programs/Xserver/hw/xnest/Imakefile
//bugs.freedesktop.org/show_bug.cgi?id=2653) attachment #2020
    (https://bugs.freedesktop.org/attachment.cgi?id=2020): Cleanup Xnest
    usage of the DPMS dummy stub functions from dpmsstubs.c instead of
    using it's own copy of these functions.
This commit is contained in:
Roland Mainz 2005-03-05 21:38:29 +00:00
parent 602209990d
commit 978f3b496b

View File

@ -160,28 +160,3 @@ void ddxBeforeReset(void)
int SelectWaitTime = 10000; /* usec */
#endif
#ifdef DPMSExtension
/**************************************************************
* DPMSSet(), DPMSGet(), DPMSSupported()
*
* stubs
*
***************************************************************/
void
DPMSSet(int level)
{
}
int
DPMSGet(int *level)
{
return -1;
}
Bool
DPMSSupported()
{
return FALSE;
}
#endif