2020-12-17T00:01:51 #kisslinux I did the same thing twelve months ago building a kernel package! 2020-12-17T00:02:08 #kisslinux I had reversed the search path on a find -exec rm command 2020-12-17T00:02:13 #kisslinux and that's why I always build in /tmp now 2020-12-17T00:09:35 #kisslinux I was doing it in home, but had a link/bind mount/something pointing to / 2020-12-17T00:09:54 #kisslinux :o :S 2020-12-17T00:09:56 #kisslinux f 2020-12-17T00:10:09 #kisslinux so :| the result is that my whole home is bombed and / is like 80% gone 2020-12-17T00:20:17 #kisslinux -xdev should be the default. it's almost always what you really want 2020-12-17T03:37:37 #kisslinux hm. firefox build is now erroring out way sooner than before 2020-12-17T03:37:48 #kisslinux it's complaining about *cairo* now. Interesting. 2020-12-17T03:38:42 #kisslinux I *think* this is progress 2020-12-17T03:50:26 #kisslinux apparently kernel 5.10 needs python to build? or did I miss uncheck something in the config 2020-12-17T03:50:45 #kisslinux that's been a need for some kernel options 2020-12-17T03:50:50 #kisslinux for a while now* 2020-12-17T03:50:51 #kisslinux i know not which 2020-12-17T03:53:05 #kisslinux .~. 2020-12-17T05:04:14 #kisslinux @freenode_micr0_:matrix.org weird, I'll try compiling it again. Could you send the KISS log ? 2020-12-17T05:39:05 #kisslinux http://ix.io/2InH how strange, that EGL would betray me like this 2020-12-17T05:45:23 #kisslinux of *course* these types are unknown, they're provided by Xlibs cairo. I explicitly told you NO x. so wtf 2020-12-17T05:50:20 #kisslinux what works and definitely shouldn't: ln -s /usr/lib/libEGL.so /usr/lib/libGL.so; CPPFLAGS=-DEGL_NO_X11=1 kiss b cairo. fuck everything, gn 2020-12-17T05:50:48 #kisslinux oof 2020-12-17T06:30:01 #kisslinux micr0_ updated the patch a tiny bit and uploaded here: https://github.com/git-bruh/kiss-bins/tree/main/testing/firefox 2020-12-17T06:31:27 #kisslinux Also @freenode_micr0_:matrix.org the other github patch should fail to build cuz it has an "#ifdef 0" instead of "#if 0" 2020-12-17T10:22:12 #kisslinux does anyone know why ff 84 source doesnt have a "configure" file? `configure.in` is there though with the same content and can be used 2020-12-17T11:01:23 #kisslinux any info on dylan yet? 2020-12-17T11:11:34 #kisslinux not yet 2020-12-17T11:12:18 #kisslinux testuser: perhaps to force the use of mozconfig thing 2020-12-17T17:24:17 #kisslinux hello 2020-12-17T17:25:24 #kisslinux hi 2020-12-17T17:25:26 #kisslinux Has someone already updated to mesa 20.3.1? Mine is errors with 'git_sha1.h not found'. My mesa is tweaked for intel graphics only. http://ix.io/2IrC 2020-12-17T17:40:18 #kisslinux Fails for me too 2020-12-17T17:40:23 #kisslinux With the default kiss config 2020-12-17T17:49:40 #kisslinux I haven't tried updating mesa yet, but was thinking about it. 2020-12-17T17:57:53 #kisslinux Has anyone used the intel media driver? 2020-12-17T17:58:31 #kisslinux Was wondering what use it has. 2020-12-17T18:07:07 #kisslinux I think it's for hw accel VAAPI stuff 2020-12-17T18:07:22 #kisslinux https://wiki.archlinux.org/index.php/Hardware_video_acceleration#Intel 2020-12-17T18:12:42 #kisslinux Thanks, my laptop has a gpu supported by it, but I haven't really used it before. 2020-12-17T18:14:55 #kisslinux okay I think our gtk+2 removal patch is a bit too aggressive - extension popup windows on firefox 83 on sway just show up blank for me :/ 2020-12-17T19:36:30 #kisslinux mcf: there are some printf's in samurai's tool.c that don't have any conversion specifiers, maybe those should be changed to fputs(..., stdout)? 2020-12-17T19:37:38 #kisslinux https://github.com/kisslinux/community/pull/1644 2020-12-17T19:37:56 #kisslinux blender on kiss :), opencl stuff will be in a seperate PR when it all works well 2020-12-17T20:21:44 #kisslinux ewwww re mesa problem: the 2.30 series is a development release. We should build 20.2.6 :p 2020-12-17T20:22:01 #kisslinux https://docs.mesa3d.org/relnotes/20.2.6.html 2020-12-17T21:06:57 #kisslinux kiss owns is broken on my system :( 2020-12-17T21:07:19 #kisslinux kiss manifest ncurses | grep bantam # /usr/share/terminfo/b/bantam 2020-12-17T21:07:33 #kisslinux kiss owns /usr/share/terminfo/b/bantam # exits -1 2020-12-17T22:06:46 #kisslinux mcpcpc: in kirc in the function "pstrlen" you call strpbrk with an accept string "m", I think you could just use strchr with 'm'? I doubt there'd be a noticeable difference, but relatively strchr should be faster 2020-12-17T22:08:22 #kisslinux also you should probably check that the strchr/strpbrk call succeeds before using ptr arith on it, I know the assumption is that if the "033" is present there will be an m following it, but it probably makes sense to verify that so you aren't doing ptr arith on NULL 2020-12-17T22:08:23 #kisslinux ah. kk. will take a look in a few. 2020-12-17T22:12:24 #kisslinux also in paramPrintChan you do "printf(p->params);", idk if that's supposed to be a printf format string, but if not it should probably be fputs(p->params, stdout) to avoid breaking if it has a % in it 2020-12-17T22:22:42 #kisslinux yup. makes sense. looking now. 2020-12-17T22:33:41 #kisslinux ah. now i remember. pstrlen can go entirely since i am no longer using escape sequences in the message name field. too many colors. lol. 2020-12-17T22:39:09 #kisslinux nice