From 5249416d091d59c248c8dda44529b8aa4910b1a0 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sat, 11 Feb 2006 22:40:50 +0000 Subject: [PATCH] Add stub xf86WrapperInits so that the servers will build even if os/ was built with XFree86LOADER set. --- ChangeLog | 7 +++++++ hw/vfb/InitOutput.c | 2 ++ hw/xnest/Init.c | 2 ++ 3 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4dde22345..c97ab7de8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-02-11 Eric Anholt + + * hw/vfb/InitOutput.c: (xf86WrapperInit): + * hw/xnest/Init.c: (xf86WrapperInit): + Add stub xf86WrapperInits so that the servers will build even if os/ was + built with XFree86LOADER set. + 2006-02-11 Alan Coopersmith * Xext/xres.c: diff --git a/hw/vfb/InitOutput.c b/hw/vfb/InitOutput.c index 630d3e133..be9768545 100644 --- a/hw/vfb/InitOutput.c +++ b/hw/vfb/InitOutput.c @@ -1044,3 +1044,5 @@ InitOutput(ScreenInfo *screenInfo, int argc, char **argv) int SelectWaitTime = 10000; /* usec */ #endif +void xf86WrapperInit(void); +void xf86WrapperInit(void) { /* THANKS XFREE86 */ } diff --git a/hw/xnest/Init.c b/hw/xnest/Init.c index f2e7122f3..ce603e603 100644 --- a/hw/xnest/Init.c +++ b/hw/xnest/Init.c @@ -162,3 +162,5 @@ void ddxBeforeReset(void) int SelectWaitTime = 10000; /* usec */ #endif +void xf86WrapperInit(void); +void xf86WrapperInit(void) { /* THANKS XFREE86 */ }