summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Gerecke <killertofu@gmail.com>2012-08-27 10:28:54 -0700
committerJason Gerecke <killertofu@gmail.com>2012-08-27 10:45:27 -0700
commit03583c5a54292cd484d41656e141e3c65ed961da (patch)
tree3c8694dc8c29c835f010880c948e71e372e9f8a0 /test
parent625a43c040fd71393be94fdfad6cf7faa49db775 (diff)
Add xf86MsgVerb to fake-symbols to let 'make distcheck' complete
The switch from 'xf86Msg' to 'xf86MsgVerb' introduced in commit e4c1af41 requires that we define the latter in our fake-symbols so that the test suite can compile correctly. Signed-off-by: Jason Gerecke <killertofu@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/fake-symbols.c7
-rw-r--r--test/fake-symbols.h1
2 files changed, 7 insertions, 1 deletions
diff --git a/test/fake-symbols.c b/test/fake-symbols.c
index 9607bf3..800c619 100644
--- a/test/fake-symbols.c
+++ b/test/fake-symbols.c
@@ -327,11 +327,16 @@ InitProximityClassDeviceStruct(DeviceIntPtr dev)
_X_EXPORT void
-xf86Msg(MessageType type, const char *format, ...)
+xf86MsgVerb(MessageType type, int verb, const char *format, ...)
{
return;
}
+_X_EXPORT void
+xf86Msg(MessageType type, const char *format, ...)
+{
+ return;
+}
_X_EXPORT void
xf86PostMotionEventP(DeviceIntPtr device,
diff --git a/test/fake-symbols.h b/test/fake-symbols.h
index a145021..f180085 100644
--- a/test/fake-symbols.h
+++ b/test/fake-symbols.h
@@ -121,6 +121,7 @@ XIRegisterPropertyHandler(DeviceIntPtr dev,
int (*DeleteProperty) (DeviceIntPtr dev,
Atom property));
extern int InitProximityClassDeviceStruct(DeviceIntPtr dev);
+extern void xf86MsgVerb(MessageType type, int verb, const char *format, ...);
extern void xf86Msg(MessageType type, const char *format, ...);
extern void