diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-03-26 10:11:26 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-03-26 10:20:56 +1000 |
commit | 3fa28c8acd3aad054f9c74e94c1411654d709dca (patch) | |
tree | 0ed6a5f480c9b8a52278b426b3a47999d585f8ef /configure.ac | |
parent | d9809d7edd2be714a15115b990286554e2979fb6 (diff) |
Remove test/ directory.
This shouldn't really be part of the driver source, it's better to just have
it as a separate repository. Code has moved to
git://people.freedesktop.org/~whot/testdevices.git
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index 545014d..e558aad 100644 --- a/configure.ac +++ b/configure.ac @@ -53,21 +53,6 @@ AC_ARG_WITH(xorg-module-dir, inputdir=${moduledir}/input AC_SUBST(inputdir) -# Enable building everything in the test/ directory. These are uinput-based -# devices that resemble random hardware that may or may not look like a mouse, -# keyboard, etc. -AC_ARG_ENABLE(testdevices, - AC_HELP_STRING([--enable-testdevices], [Build uinput-based test devices]), - [BUILD_TEST="yes"], - [BUILD_TEST="no"]) -AM_CONDITIONAL([BUILD_TEST], [test "x$BUILD_TEST" = "xyes"]) - -if test "x$BUILD_TEST" = "xyes"; then - AC_CHECK_FUNC([dlopen], [], - AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl")) - AC_SUBST([DLOPEN_LIBS]) -fi - # Checks for extensions XORG_DRIVER_CHECK_EXT(XINPUT, inputproto) @@ -96,5 +81,4 @@ AC_OUTPUT([Makefile src/Makefile man/Makefile include/Makefile - test/Makefile xorg-evdev.pc]) |