tags 348390 + patch thanks Hi,
this simple patch disables the build of kernel modules (which seems brittle and unnecessary), but reinstates all drivers in the daemon itself. I've used it successfully for some weeks now.
diff -ru lirc-0.7.2-/debian/rules lirc-0.7.2/debian/rules --- lirc-0.7.2-/debian/rules 2006-01-31 21:47:24.000000000 +0100 +++ lirc-0.7.2/debian/rules 2006-01-31 22:16:32.000000000 +0100 @@ -74,7 +74,7 @@ --prefix=/usr --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ --libdir=\$${prefix}/lib --sysconfdir=/etc/lirc/ \ - --with-driver=none \ + --with-driver=any \ --with-moduledir="$(shell pwd)/debian/tmp/usr/src/modules/lirc" \ --with-port=0x3f8 --with-irq=4 \ --disable-manage-devices \ diff -ru lirc-0.7.2-/drivers/Makefile.am lirc-0.7.2/drivers/Makefile.am --- lirc-0.7.2-/drivers/Makefile.am 2005-07-30 22:43:05.000000000 +0200 +++ lirc-0.7.2/drivers/Makefile.am 2006-01-31 22:33:50.000000000 +0100 @@ -24,7 +24,7 @@ lirc_sir \ lirc_streamzap -SUBDIRS = @lirc_driver@ +SUBDIRS = CLEANFILES = *~
-- Robbe