summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2012-06-14Avoid calling fclose multiple timesHEADmasterKeith Packard1-2/+6
Both the signal handler and main close the output if it's not stdout; if you do both, then fclose gets called twice, which annoys libc. Signed-off-by: Keith Packard <keithp@keithp.com>
2012-03-22Add dependencies for soelim man pagesKeith Packard1-2/+6
This lets make know how to build them, for use with -jn (n>1) Signed-off-by: Keith Packard <keithp@keithp.com>
2012-02-29Add evemu-event to play a single event from the commandline.Peter Hutterer3-3/+79
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-11-02Cranked up all warnings and enabled -WerrorStephen M. Webb1-1/+1
2011-06-28Indentation fix.Jussi Pakkanen1-3/+3
2011-06-28Add signal handler to flush data in case of abrupt exit.Jussi Pakkanen1-7/+29
2011-06-28Can set an output file on the command line.Jussi Pakkanen1-2/+15
2011-04-21Capture read errors in evemu-deviceHenrik Rydberg1-1/+2
Like the scan functions, evemu_device returns a non-positive number on failure. Adjust logic to capture the read errors returning zero. Signed-off-by: Henrik Rydberg <rydberg@bitmath.org>
2011-02-02Added GPL-3 licensing to source files.Stephen M. Webb5-5/+75
2011-01-05Add man-pages for the various evemu-tools.Henrik Rydberg3-0/+105
Using asciidoc and xmlto, conditional on their availability at configure time. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2011-01-05Use libtool to handle libutouch-evemu library flags.Henrik Rydberg1-5/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2011-01-05SOURCES is not needed for <target>.c files.Henrik Rydberg1-8/+0
If the only source for a bin_PROGRAM=foo is foo.c, automake picks it up automatically. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2011-01-05Add a couple of includes to silence compiler warnings.Henrik Rydberg4-0/+4
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2010-12-21Make evemu ABI resilientHenrik Rydberg3-30/+47
Hide the evemu struct, make it versioned, and instead use new/delete and accessor functions. This should give us enough ABI stability to run mixed library implementations.
2010-09-23Flush stdout before entering the event loopHenrik Rydberg1-1/+2
Scripts that need the device node may have difficulties if the stream is not flushed before entering the event loop. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2010-09-22Correct documentation on evemu-play usageHenrik Rydberg1-1/+1
The data should be directed into the program, not given as argument. Also make evemu-play complain if given two arguments. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2010-09-19Rename project and libraries to utouch-evemuHenrik Rydberg1-5/+5
This project is part of utouch, and the library should be named thereafter. Also helps avoid confusion with an unrelated project with the same name. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2010-09-19Show errno when failing to create deviceHenrik Rydberg1-2/+3
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
2010-09-18Initial evemu commitHenrik Rydberg6-0/+379
Evemu is a kernel device and emulator, which allows for remote creation and testing of arbitrary devices. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>