|
From: <mla...@us...> - 2006-11-03 19:53:36
|
Revision: 88
http://svn.sourceforge.net/g15daemon/?rev=88&view=rev
Author: mlampard
Date: 2006-11-03 11:53:28 -0800 (Fri, 03 Nov 2006)
Log Message:
-----------
auto* fixes to ensure make distclean works as expected.
Modified Paths:
--------------
trunk/g15daemon/ChangeLog
trunk/g15daemon/Makefile.am
trunk/g15daemon/Makefile.in
trunk/g15daemon/g15daemon/main.c
trunk/g15daemon/rpm/g15daemon.spec
Modified: trunk/g15daemon/ChangeLog
===================================================================
--- trunk/g15daemon/ChangeLog 2006-11-03 17:24:27 UTC (rev 87)
+++ trunk/g15daemon/ChangeLog 2006-11-03 19:53:28 UTC (rev 88)
@@ -63,18 +63,17 @@
option, no keyboard processing is done by the daemon, and the client must
be prepared to do uinput processing itself, if necessary. This limitation
may be removed in future versions of the API. Normal processing will
- resume when the client that requested this feature exits.
+ resume when the client that requested this feature exits or closes its
+ connection.
- Add manpage for the daemon.
- Fix automake bug that caused documentation not to be installed by default.
-- Add ability for the daemon to process more than one commandline option.
+- Fix the daemons cmdline processing to handle more than one commandline option.
- Refactored the code slightly to allow for easier modification in the future.
- Handle long commandline arguments such as --help --version --kill --switch.
- Greatly improve error reporting.
- Add client development documentation (man g15daemon_client_devel / README.client_devel)
- Added a 'debug' mode (-d or --debug) cmdline switch to keep the daemon in the foreground
rather than daemonising. All errors and other info will be reported to STDERR in this mode.
-
-
-
-
-
+- If compiled with libg15 1.1.0 or greater (or svn versions later than 3/11/06), the daemon
+ will now reset the keyboard to defaults on exit.
+- make distcheck && make dist now work as expected.
Modified: trunk/g15daemon/Makefile.am
===================================================================
--- trunk/g15daemon/Makefile.am 2006-11-03 17:24:27 UTC (rev 87)
+++ trunk/g15daemon/Makefile.am 2006-11-03 19:53:28 UTC (rev 88)
@@ -3,13 +3,13 @@
SUBDIRS = libg15daemon_client g15daemon
INCLUDES = -I$(top_srcdir)/libg15daemon_client -I$(top_srcdir)/g15daemon
-EXTRA_DIST = debian
+EXTRA_DIST = debian contrib Documentation g15daemon_xmms lang-bindings patches rpm README.usage FAQ LICENSE
docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
-doc_DATA = FAQ README.usage README ChangeLog TODO AUTHORS NEWS LICENSE
+doc_DATA = FAQ README.usage README ChangeLog TODO AUTHORS NEWS LICENSE
-man1_MANS = Documentation/g15daemon.1
-man3_MANS = Documentation/g15daemon_client_devel.3
+man1_MANS = $(top_srcdir)/Documentation/g15daemon.1
+man3_MANS = $(top_srcdir)/Documentation/g15daemon_client_devel.3
dist-hook:
rm -rf `find $(distdir)/debian -name .svn`
Modified: trunk/g15daemon/Makefile.in
===================================================================
--- trunk/g15daemon/Makefile.in 2006-11-03 17:24:27 UTC (rev 87)
+++ trunk/g15daemon/Makefile.in 2006-11-03 19:53:28 UTC (rev 88)
@@ -191,10 +191,10 @@
LLIBDIR = @LIBDIR@
SUBDIRS = libg15daemon_client g15daemon
INCLUDES = -I$(top_srcdir)/libg15daemon_client -I$(top_srcdir)/g15daemon
-EXTRA_DIST = debian
-doc_DATA = FAQ README.usage README ChangeLog TODO AUTHORS NEWS LICENSE
-man1_MANS = Documentation/g15daemon.1
-man3_MANS = Documentation/g15daemon_client_devel.3
+EXTRA_DIST = debian contrib Documentation g15daemon_xmms lang-bindings patches rpm README.usage FAQ LICENSE
+doc_DATA = FAQ README.usage README ChangeLog TODO AUTHORS NEWS LICENSE
+man1_MANS = $(top_srcdir)/Documentation/g15daemon.1
+man3_MANS = $(top_srcdir)/Documentation/g15daemon_client_devel.3
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
Modified: trunk/g15daemon/g15daemon/main.c
===================================================================
--- trunk/g15daemon/g15daemon/main.c 2006-11-03 17:24:27 UTC (rev 87)
+++ trunk/g15daemon/g15daemon/main.c 2006-11-03 19:53:28 UTC (rev 88)
@@ -192,7 +192,7 @@
cycle_key = G15_KEY_MR;
}
- if (!strncmp(daemonargs, "-d",2) || !strncmp(daemonargs, "--debug",8)) {
+ if (!strncmp(daemonargs, "-d",2) || !strncmp(daemonargs, "--debug",7)) {
g15daemon_debug = 1;
}
}
Modified: trunk/g15daemon/rpm/g15daemon.spec
===================================================================
--- trunk/g15daemon/rpm/g15daemon.spec 2006-11-03 17:24:27 UTC (rev 87)
+++ trunk/g15daemon/rpm/g15daemon.spec 2006-11-03 19:53:28 UTC (rev 88)
@@ -60,7 +60,7 @@
%files
%defattr(-, root, root)
-%doc AUTHORS COPYING LICENSE NEWS README README.usage contrib lang-bindings
+%doc AUTHORS COPYING LICENSE NEWS README README.usage contrib lang-bindings
%doc %{_mandir}/man*/*.*
%{prefix}/lib/*.so
%{prefix}/lib/*.so.*
@@ -69,7 +69,7 @@
%files devel
%defattr(-, root, root)
-%doc AUTHORS COPYING LICENSE NEWS README README.usage contrib lang-bindings
+%doc AUTHORS COPYING LICENSE NEWS README README.usage contrib lang-bindings Documentation/README.client_devel
%doc %{_mandir}/man*/*.*
%{prefix}/lib/libg15daemon_client.*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|