Hello, On 22-Apr-01 Oliver Neukum wrote: > On Sunday, 22. April 2001 02:55, you wrote: >> Greetings, >> >> Today I released the first version of a Philips webcam driver that >> contains >> enough source code to get a working webcam on all Linux platforms that >> support USB. Release 7.0 contains only a small binary part which is >> completely optional (with some degradation in features, yes). > > Hi, > unfortunately there seems to be an include file missing [snip] This is sloppyness from my part, my apologies. Attached is a patch that will solve this (apply in drivers/usb with patch -p1 after you installed the normal package). The patch is also on the website. - Nemosoft ----------------------------------------------------------------------------- Try SorceryNet! One of the best IRC-networks around! irc.sorcery.net:9000 URL: never IRC: nemosoft IscaBBS (bbs.isca.uiowa.edu): Nemosoft >> Never mind the daylight <<
diff -ru usb-dist/Makefile usb/Makefile --- usb-dist/Makefile Sun Apr 22 16:11:27 2001 +++ usb/Makefile Sun Apr 22 15:45:44 2001 @@ -106,6 +106,8 @@ pwc.o: $(pwc-objs) $(LD) -r -o $@ $(pwc-objs) -pwcx-objs := pwc-dec.o pwc-dec1.o pwc-dec23.o pwc-dec23-table.o -pwcx-i386.o: $(pwcx-objs) - $(LD) -r -o $@ $(pwcx-objs) +ifeq ($(CONFIG_USB_PWCX),y) +#pwcx-objs := pwc-dec.o pwc-dec1.o pwc-dec23.o pwc-dec23-table.o +#pwcx-i386.o: $(pwcx-objs) +# $(LD) -r -o $@ $(pwcx-objs) +endif diff -ru usb-dist/pwc.h usb/pwc.h --- usb-dist/pwc.h Sun Apr 22 16:12:43 2001 +++ usb/pwc.h Sun Apr 22 15:29:30 2001 @@ -37,8 +37,6 @@ #include <linux/videodev.h> #include <linux/wait.h> -#include "pwc-dec.h" - /* Defines and structures for the Philips webcam */ /* Used for checking memory corruption/pointer validation */ #define PWC_MAGIC 0x89DC10ABUL