diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2009-10-15 01:53:43 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-15 08:06:53 -0700 |
commit | 9bc4e88d84daf0f4faf0599b575675e74c75f4b8 (patch) | |
tree | 7aef2628b3d0e05b4af8ced283e6d960613e6230 /hw | |
parent | a2f27b97900f335cd5f6a3e5bf8fa1d0ec9eb9ac (diff) |
Define ddxBeforeReset stubs in platform-neutral DDXs
XWin uses ddxBeforeReset, which is called in DIX. Other DDXs need to
define these in order to avoid an undefined symbol error at link time
when building alongside XWin. Xnest and Xvfb already provide empty stubs;
this does the same for Xdmx and the platform-neutral KDrive servers.
Also add a prototype to avoid a warning in all DDXs.
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/dmx/dmxinit.c | 6 | ||||
-rw-r--r-- | hw/kdrive/ephyr/ephyrinit.c | 7 | ||||
-rw-r--r-- | hw/kdrive/fake/fakeinit.c | 7 | ||||
-rw-r--r-- | hw/kdrive/sdl/sdl.c | 6 |
4 files changed, 26 insertions, 0 deletions
diff --git a/hw/dmx/dmxinit.c b/hw/dmx/dmxinit.c index e5598e331..f481cf5c9 100644 --- a/hw/dmx/dmxinit.c +++ b/hw/dmx/dmxinit.c @@ -846,6 +846,12 @@ void AbortDDX(void) } } +#ifdef DDXBEFORERESET +void ddxBeforeReset(void) +{ +} +#endif + /** This function is called in Xserver/dix/main.c from \a main() when * dispatchException & DE_TERMINATE (which is the only way to exit the * main loop without an interruption. */ diff --git a/hw/kdrive/ephyr/ephyrinit.c b/hw/kdrive/ephyr/ephyrinit.c index eecad7e42..2b72b4e0a 100644 --- a/hw/kdrive/ephyr/ephyrinit.c +++ b/hw/kdrive/ephyr/ephyrinit.c @@ -93,6 +93,13 @@ InitInput (int argc, char **argv) KdInitInput(); } +#ifdef DDXBEFORERESET +void +ddxBeforeReset (void) +{ +} +#endif + void ddxUseMsg (void) { diff --git a/hw/kdrive/fake/fakeinit.c b/hw/kdrive/fake/fakeinit.c index 2cfcbedd5..0472a7183 100644 --- a/hw/kdrive/fake/fakeinit.c +++ b/hw/kdrive/fake/fakeinit.c @@ -60,6 +60,13 @@ InitInput (int argc, char **argv) KdInitInput (); } +#ifdef DDXBEFORERESET +void +ddxBeforeReset (void) +{ +} +#endif + void ddxUseMsg (void) { diff --git a/hw/kdrive/sdl/sdl.c b/hw/kdrive/sdl/sdl.c index a83c84a5d..df63fd1b7 100644 --- a/hw/kdrive/sdl/sdl.c +++ b/hw/kdrive/sdl/sdl.c @@ -240,6 +240,12 @@ void InitInput(int argc, char **argv) KdInitInput(); } +#ifdef DDXBEFORERESET +void ddxBeforeReset(void) +{ +} +#endif + void ddxUseMsg(void) { KdUseMsg(); |