> gam_inotify.c: In function ‘mask_to_gam_event’: > gam_inotify.c:259: error: ‘IN_MOVE_SELF’ undeclared (first use in this > function) [...] > make[10]: *** [gam_inotify.o] Error 1 > make[10]: Leaving directory
Looks, like your kernel has broken inotify support, and gamin still detects inotify to be supported. Common issue... *sigh* Have a look at the Makefile in your bootstrap/gamin dir. Edit this Makefile and change the line CONFIGURE_ARGS = $(DIRPATHS) # --disable-dnotify --disable-inotify to read CONFIGURE_ARGS = $(DIRPATHS) --disable-inotify # --disable-dnotify Thus you are manually disabling building the inotify backend. After that while *still* in the gamin dir run 'make cookieclean' and build gamin by 'make install'. Gamin now should be happy. After that, just run the command again you used in the first place to build GARNOME, in the directory you ran it previously. GARNOME will pick up where it left off. Note 1: This basically is a straight copy-n-paste from a previous post of mine, which is in the archive. Just 2 minor corrections. ;) Note 2: *Please* consider subscribing to the mailing list before posting. All this manual approval of posts considerably adds to my support load... http://mail.gnome.org/mailman/listinfo/garnome-list ...guenther -- char *t="[EMAIL PROTECTED]"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i<l;i++){ i%8? c<<=1: (c=*++x); c&128 && (s+=h); if (!(h>>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} -- garnome-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/garnome-list
