Add stub xf86WrapperInits so that the servers will build even if os/ was

built with XFree86LOADER set.
This commit is contained in:
Eric Anholt 2006-02-11 22:40:50 +00:00
parent a2a5254675
commit 5249416d09
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2006-02-11 Eric Anholt <anholt@FreeBSD.org>
* 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 <alan.coopersmith@sun.com>
* Xext/xres.c:

View File

@ -1044,3 +1044,5 @@ InitOutput(ScreenInfo *screenInfo, int argc, char **argv)
int SelectWaitTime = 10000; /* usec */
#endif
void xf86WrapperInit(void);
void xf86WrapperInit(void) { /* THANKS XFREE86 */ }

View File

@ -162,3 +162,5 @@ void ddxBeforeReset(void)
int SelectWaitTime = 10000; /* usec */
#endif
void xf86WrapperInit(void);
void xf86WrapperInit(void) { /* THANKS XFREE86 */ }