[00:01:41] *** duvjones has quit IRC
[00:08:28] *** PasNox has quit IRC
[00:13:23] *** TomMan81 is now known as TomManAway
[00:14:29] *** bryan_w has joined #haiku
[00:17:50] *** ripclaw has joined #haiku
[00:18:25] <ripclaw> hi all - building hybrid on ubuntu drives me mad.... :(
[00:18:41] <mmadia> what's going wrong?
[00:18:53] <mmadia> is this ubuntu 64 or 32bit?
[00:19:20] <ripclaw> hi mmadia - i have a script, it runs under ubuntu 32 9.10 in parallels, but appearantly after building bin, image fails.
[00:19:33] <ripclaw> it compiles, but i get no image.
[00:19:48] <mmadia> how does it fail? how did you configure it, what's your jam command?
[00:20:19] <ripclaw> is there a place like a pastebin for this channel ? don't want to paste bash in here..
[00:21:40] *** _arjen_ has quit IRC
[00:21:40] *** PacoLinux has quit IRC
[00:23:11] *** PacoLinux has joined #haiku
[00:23:55] *** cprodescu has quit IRC
[00:25:54] <ripclaw> i guess i am jamming badly, but i don't understand that part (not make, want to build anyboot, nightly-raw and vmdk hybrids)
[00:26:01] <mmadia> iirc, you should run configure with a relative path, instead of a full path.
[00:27:51] <ripclaw> that sounds like eeew... ok, will remove attribs and change code & try again. you still in here for a while ?
[00:28:01] <mmadia> whats jam -v report?
[00:29:08] <augiedoggie> the CROSSTOOLS_FLAG is basically the same for both toolchains
[00:29:27] <mmadia> good catch.
[00:30:08] <ripclaw> before i forget ... relative to where (configure)
[00:30:50] <mmadia> cd haiku/generated.x86gcc2
[00:30:54] *** PacoLinux has quit IRC
[00:31:00] <mmadia> ../configure $FLAGS
[00:31:12] <ripclaw> jam 2.5-haiku-20090626. OS=LINUX. Copyright 1993-2002 Christopher Seiwald
[00:32:14] *** PacoLinux has joined #haiku
[00:33:43] <augiedoggie> and it looks like you're setting the alternative dir to the same one you're in
[00:40:36] <ripclaw> basically i start of in ~/haiku-src, cd to the arch-to-compile, configure (with the current path).
[00:40:57] <ripclaw> so the alternative dir needs to point to the "inverse gcc".
[00:41:26] <ripclaw> ok, i think i see whats going wrong. gimme a sec to fix & restart.
[00:43:43] <ripclaw> one more error - i set bad flags for the build-cross-tools
[00:44:14] <ripclaw> mmadia this is the page i read before thinking about writing the script, because it messes my brain to type that stuff anew each time.
[00:44:32] <ripclaw> i try to automate setting up a build on ubuntu. (regression testing)
[00:45:58] <mmadia> this is the current python script for regression testing and providing the nightly images.
[00:46:19] <mmadia> i use it on FreeBSD and have briefly tested it on some linux distro.
[00:47:19] *** cprodescu has joined #haiku
[00:49:39] <ripclaw> i do not trust python (cannot read it). but i'll fetch that. thanks.
[00:49:53] <mmadia> CROSSTOOLS_FLAG="--build-cross-tools-gcc4" --> CROSSTOOLS_FLAG="--build-cross-tools" #for x86gcc2
[00:50:12] <ripclaw> yes, fixed that in the new paste already.
[00:50:47] <ripclaw> restarted build, guess it will take about an hour to see output. running too many VMs...
[00:51:06] <mmadia> $CROSSTOOLS_FLAG $HAIKU_DIR/buildtools/ \ # this will clobber the binaries for the cross-tools.
[00:51:37] <augiedoggie> that paste was exactly the same as the first
[00:51:48] <mmadia> wait, that entire line is wrong.
[00:51:53] <ripclaw> sorry, but i do not understand "clobber". my english is not that good.
[00:52:31] <mmadia> there's a --build-cross-tools option and an --alternative-gcc-output-dir <dir>
[00:52:56] <mmadia> clobber... some type of destruction, i guess :)
[00:53:37] <ripclaw> (i scp them from the VM to desktop)
[00:54:05] <mmadia> $CROSSTOOLS_FLAG ../buildtools/ \ # should be simply $CROSSTOOLS_FLAGS
[00:54:07] <augiedoggie> it's not using the ALTERNATE_DIR variable
[00:55:08] *** DiGiTal has joined #haiku
[00:55:14] <DiGiTal> Hi!
[00:55:34] <DiGiTal> why in Haiku O_LARGEFILE is not defined y libc?
[00:56:00] <DiGiTal> and why O_LARGEFILE is equal to zero?
[00:56:58] <DiGiTal> hmm
[00:56:59] <DiGiTal> ok
[00:57:18] <DiGiTal> thx!
[00:58:32] <mmadia> $CROSSTOOLS_FLAG ../buildtools/ \ # should be simply $CROSSTOOLS_FLAGS
[00:59:05] <mmadia> also, you only need to build the cross-tools once.
[00:59:15] <mmadia> after that, you can use --cross-tools-prefix
[01:01:07] <ripclaw> sorry, wrong line ...
[01:01:09] <mmadia> ripclaw : indeed, my mistake.
[01:01:45] <mmadia> in that case,line 18 should be $CROSSTOOLS_FLAG . \
[01:02:08] <mmadia> eg, output the binaries into the generated.$arch dir.
[01:02:13] <ripclaw> if i read my code correctly, i build a gcc4 hybrid with gcc2 libs and vice versa. code may be running duplicates, but the intent is to allow it to run on any new and empty VM
[01:03:06] <ripclaw> when i built non-hybrids, ../buildtools was output target. docs did not say where it has to be...
[01:03:12] <mmadia> if you want the script to run on Haiku, then you'd need to detect the HOST_OS.
[01:03:27] <ripclaw> generated arch/buildtools or arch/.
[01:04:01] <ripclaw> i'll gladly put that in, but currently i base the build on ubuntu, because WEP/WPA doesnt workin haiku
[01:04:06] <mmadia> either or is fine, as long as x86gcc4 and x86gcc2 have different directories for the binaries of the build tools.
[01:04:09] <ripclaw> which means no internet.
[01:04:28] <ripclaw> currently they have same dir. so better i fix that.
[01:04:32] <mmadia> lemme dig up a bash script of my own, this may save you time.
[01:06:29] <ripclaw> thnx, sorry for beeing a bit off-track after that long day. feel free to use my script for anything u want. e.g. website.
[01:09:27] *** Xbertl has quit IRC
[01:10:20] *** Barrett|Haiku has joined #haiku
[01:11:01] *** petterhj has quit IRC
[01:12:37] *** Nozy has joined #haiku
[01:13:18] *** GeekShadow has quit IRC
[01:14:34] <ripclaw> basic idea was to enable people to just install ubuntu into a vm, run a script and be ready to help with haiku
[01:14:34] <mmadia> man, i used to have my initial bash implementation of build-o-matic laying around somewhere.
[01:14:59] <ripclaw> bash because it is something most people understand...
[01:15:49] <ripclaw> when this works, i can have a "per revision nightly" and my own dev tree to compile, and start messing with WEP/WPA or gfx.
[01:16:20] *** OmniMancer has joined #haiku
[01:16:46] <mmadia> you could also look into setting up your own build-o-matic ;)
[01:17:21] <ripclaw> i can start a new VM clone for each revision and start that off.. build-o-matic is something i do not understand enough (python) and will have problems fixing.
[01:17:37] <ripclaw> python is anathema to me, sorry... ^^
[01:17:51] <augiedoggie> heh, "jammin" @290
[01:18:24] * augiedoggie starts singing some marley
[01:18:56] <ripclaw> mmadia - do i just read right and this x-compiles to ppc et al ? i'll give it a try
[01:19:22] <mmadia> i haven't looked at that script in almost 2 years, ripclaw.
[01:19:48] <ripclaw> mmadia - if i find a bug, may i keep that bug and upload a fix somewhere ?
[01:19:49] <mmadia> # SVN Source Tree URLS --- should be updated to use haiku's servers
[01:20:42] <mmadia> if you want, i don't have plans to work on that bash script.
[01:21:37] <ripclaw> n/p i have some time to spare... ^^ that plus it should do what i was planning to re-implement.
[01:22:07] <ripclaw> i think i can upload it to sourceforge or rocklinux, iirc.
[01:22:17] <ripclaw> ... need coffee. brb
[01:22:19] <mmadia> or dev.osdrawer.net
[01:22:47] *** dflemstr has quit IRC
[01:23:08] <ripclaw> i do not have an account on dev.osdrawer.net
[01:23:33] <mmadia> they're free. hosting of code is free too.
[01:24:15] <ripclaw> who's running that infrastructure ? for berlios and sf that part is clear. for rocklinux, too.
[01:24:39] <mmadia> plfiorini and some other users.
[01:25:23] <Barrett|Haiku> it's a dedicated server
[01:25:32] <Barrett|Haiku> where is hosted also haiku-os.it
[01:25:33] <ripclaw> ok... should be fine with me... btw, i was following the package discussion... rocklinux made use of .gem for system packages, cool format.
[01:25:44] <Barrett|Haiku> it's provided by atomozero (andrea bernardi)
[01:26:04] <mmadia> i'm going to suggest .leaf later.
[01:26:30] <ripclaw> .gem is "grep" parseable... usefull feature sometimes...
[01:27:00] <ripclaw> the entire build toolkit from rocklinux was mostly shell. could create different OS depending on input file...
[01:27:21] <ripclaw> what's in .leaf on the format side ?
[01:34:20] *** petterhj has joined #haiku
[01:47:38] *** Pinaraf has joined #haiku
[01:51:24] <mmadia> currently it's called .hpkg, but i'm meaning to suggest using ".leaf" instead ... ties into the Haiku theme and logo.
[02:07:00] *** Disreali has joined #haiku
[02:08:02] *** Barrett|Haiku has quit IRC
[02:12:53] *** DrHouse|Kerrigan has joined #haiku
[02:13:40] *** Barrett|Haiku has joined #haiku
[02:16:37] *** Senryu_user has joined #haiku
[02:17:23] *** elliottcable is now known as ec|detached
[02:21:02] *** heroid has joined #haiku
[02:22:02] <ripclaw> mmadia sounds like a good idea...
[02:23:10] *** Barrett|Haiku has quit IRC
[02:23:20] *** DiGiTal has quit IRC
[02:27:05] *** looncraz has joined #haiku
[02:27:47] <looncraz> Man, freenode is lagging something fierce for me...
[02:28:01] <mmadia> hey looncraz. how's it been?
[02:29:00] <looncraz> mmadia Terrible, mostly.
[02:29:00] <looncraz> et tu?
[02:29:20] <mmadia> ich bin mude.
[02:30:26] *** jrabbit has quit IRC
[02:30:45] <looncraz> I hear that!\
[02:32:12] <looncraz> I'm working on a simple little patch to the app_server and libbe.so for the decorators so I can see updates as I make them
[02:32:49] <looncraz> Not planning on going 'live,' though that is not out of the question, I think it would be absolute overkill
[02:33:14] * looncraz you are absolutely right - you don't change decorators THAT often...
[02:33:17] <looncraz> That is what I was thinking *
[02:33:20] <ripclaw> mmadia spricht deutsch ?
[02:33:35] <mmadia> veile kleine. ;)
[02:33:48] *** jrabbit has joined #haiku
[02:33:51] <ripclaw> holas...
[02:34:27] <ripclaw> (they are watching breakpoint demo again... grrr.. i came here to code)
[02:35:28] <looncraz> I may need to look for the cause of a few glitches in Stack & Tile as well... but I just may not worry about it..
[02:36:45] <looncraz> I can't start until I clone my source tree though.... 20mins to go...
[02:37:23] *** MUILTFN has quit IRC
[02:40:25] * looncraz wishes he could pay a sacrafice to the god of file copying and get things done so things can get done....
[02:40:41] <looncraz> wow.. bad spelling here *
[02:40:58] *** cprodescu has quit IRC
[02:45:52] <looncraz> Oh, mmadia, I was told to tell you that we were off-topic in the other channel... apparently you like that :-)
[02:46:32] *** backb0ne has quit IRC
[02:47:13] * looncraz is idle: Say my name and Haiku barks at me!
[02:48:04] *** backb0ne has joined #haiku
[02:54:59] *** Pinaraf has quit IRC
[02:57:52] *** Geoz has quit IRC
[03:06:23] *** ec|detached is now known as elliottcable
[03:08:32] *** Senryu_user has quit IRC
[03:26:24] *** bryan_w has quit IRC
[03:34:45] <ripclaw> plan9 gui sucks mooseballs through rockstraw...
[03:35:32] <looncraz> lol
[03:37:49] *** Disreali has quit IRC
[03:39:34] *** yourpalal has quit IRC
[03:43:38] *** DDevine has quit IRC
[03:47:00] *** OmniMancer has quit IRC
[03:47:23] *** ripclaw_ has joined #haiku
[03:51:29] *** ripclaw has quit IRC
[03:58:43] *** asb has quit IRC
[04:01:00] *** mmadia has quit IRC
[04:01:47] *** asb has joined #haiku
[04:07:46] *** ripclaw_ has quit IRC
[04:10:11] *** mmu_man has quit IRC
[04:18:46] *** OmniMancer has joined #haiku
[04:27:08] *** trn has joined #haiku
[04:33:33] *** elliottcable is now known as ec|detached
[04:33:43] *** ec|detached is now known as elliottcable
[04:34:46] <CIA-81> Caya GPL Protocols: barrett * r19 /trunk/protocols/ (msn/MSN.cpp xmpp/JabberHandler.cpp): cleanup...now the xmpp thread will not suck your cpu
[04:37:43] *** OmniMancer has quit IRC
[04:40:28] *** elliottcable is now known as ec|detached
[04:43:03] *** MAX2 has joined #haiku
[04:48:00] *** Barrett has quit IRC
[04:52:44] *** petterhj has quit IRC
[04:53:38] *** DrHouse|Kerrigan has quit IRC
[05:05:00] *** vision2 has joined #haiku
[05:05:23] *** vision2 has quit IRC
[05:18:59] *** dancxjo has quit IRC
[05:30:28] *** ec|detached is now known as elliottcable
[05:32:29] *** dancxjo has joined #haiku
[05:33:58] *** Disreali has joined #haiku
[05:35:32] *** DrHouse|Kerrigan has joined #haiku
[05:41:43] *** symptom has joined #haiku
[05:54:21] *** Nozy has quit IRC
[05:54:53] *** Nozy has joined #haiku
[05:55:20] *** Nozy has left #haiku
[06:04:49] *** trn has quit IRC
[06:05:15] *** trn has joined #haiku
[06:24:10] *** nagesh has joined #haiku
[06:39:42] *** nagesh has quit IRC
[06:44:35] *** r15h4b has joined #haiku
[06:45:50] *** r15h4b has left #haiku
[06:49:46] *** symptom has quit IRC
[06:51:10] *** r15h4b has joined #haiku
[06:55:47] *** r15h4b has left #haiku
[07:13:46] *** Disreali has quit IRC
[07:15:54] *** DrHouse|Kerrigan has quit IRC
[07:16:26] *** MAX2 has quit IRC
[07:21:51] *** Stellar has quit IRC
[07:29:40] *** looncraz has quit IRC
[07:34:38] *** OmniMancer has joined #haiku
[07:38:13] *** lorglas has joined #haiku
[07:39:28] <Advant> anyone use hamachi ?
[07:44:18] *** Stellar has joined #haiku
[07:50:46] *** Stellar has quit IRC
[07:56:02] *** Stellar has joined #haiku
[07:57:31] *** Riplee has joined #haiku
[07:58:51] *** asb has quit IRC
[08:01:52] *** asb has joined #haiku
[08:07:10] *** _marc` has joined #haiku
[08:19:59] *** duvjones has joined #haiku
[08:22:31] *** cprodescu has joined #haiku
[08:25:54] *** Stellar has quit IRC
[08:27:37] *** cprodescu has quit IRC
[08:39:34] *** heroid has quit IRC
[08:50:29] *** Pinaraf has joined #haiku
[08:55:18] <Riplee> hello
[08:56:03] <Riplee> anyone around?
[09:07:43] *** cebulon has joined #haiku
[09:11:57] *** Riplee has quit IRC
[09:12:15] *** _arjen_ has joined #haiku
[09:14:30] *** elliottcable is now known as ec|detached
[09:17:08] *** PulkoMandy has joined #haiku
[09:21:48] *** Hubert_ has joined #haiku
[09:37:32] *** Pinaraf has quit IRC
[09:37:40] *** Pinaraf has joined #haiku
[09:37:49] *** Pinaraf has quit IRC
[09:49:40] *** Stellar has joined #haiku
[09:52:01] *** Ingenu has joined #haiku
[09:53:11] *** negusnyul has joined #haiku
[09:58:09] *** lorglas has quit IRC
[09:58:37] <Ingenu> '
[09:58:56] <Telstar> \
[10:04:27] *** Nozy has joined #haiku
[10:13:54] *** PulkoMandy has quit IRC
[10:16:28] *** prkc has joined #haiku
[10:16:28] *** negusnyul has quit IRC
[10:18:29] *** fengshaun has quit IRC
[10:24:40] *** prkc is now known as negusnyul
[10:25:48] *** OmniMancer has quit IRC
[10:28:20] *** lukove has joined #haiku
[10:28:29] *** lukove has quit IRC
[10:28:36] *** lukove has joined #haiku
[10:31:04] *** ParadoxUn has joined #haiku
[10:33:18] *** AlienSoldier has quit IRC
[10:34:08] *** GeekShadow has joined #haiku
[10:35:23] *** brobostigon has joined #haiku
[10:35:40] *** asb has quit IRC
[10:37:46] *** GeneralMaximus has joined #haiku
[10:46:01] *** lukove has quit IRC
[10:49:32] *** prkc has joined #haiku
[10:52:54] *** negusnyul has quit IRC
[10:58:42] *** asb has joined #haiku
[11:01:25] *** trn has quit IRC
[11:07:36] *** negusnyul_ has joined #haiku
[11:10:58] *** prkc has quit IRC
[11:13:55] *** vezhlys has joined #haiku
[11:19:46] *** Pinaraf has joined #haiku
[11:25:41] *** GeneralMaximus has quit IRC
[11:30:31] *** Xbertl has joined #haiku
[11:32:14] *** negusnyul_ has quit IRC
[11:34:03] *** negusnyul_ has joined #haiku
[11:34:05] *** peerkoel has quit IRC
[11:34:49] *** peerkoel has joined #haiku
[11:46:12] *** negusnyul_ has quit IRC
[11:46:24] *** negusnyul_ has joined #haiku
[11:50:02] *** dflemstr has joined #haiku
[11:50:58] *** Pinaraf has quit IRC
[11:52:17] *** veve-mao has joined #haiku
[12:04:41] *** brechtm has joined #haiku
[12:09:27] *** mmu_man has joined #haiku
[12:13:40] *** ereslibre has joined #haiku
[12:16:19] *** GeneralMaximus has joined #haiku
[12:16:53] *** ereslibre_laptop has joined #haiku
[12:18:06] *** ereslibre has quit IRC
[12:19:20] *** DiGiTal has joined #haiku
[12:21:31] *** ereslibre_laptop has quit IRC
[12:25:51] *** plfiorini has joined #haiku
[12:25:54] <plfiorini> 'morning
[12:26:20] <brobostigon> morning plfiorini
[12:29:02] *** gouchi has joined #haiku
[12:29:13] *** Xbertl has quit IRC
[12:30:42] *** veve-mao has quit IRC
[12:31:15] <plfiorini> hello brobostigon
[12:31:20] *** ereslibre has joined #haiku
[12:31:51] *** Hubert_ has quit IRC
[12:34:11] *** ereslibre_laptop has joined #haiku
[12:34:12] *** ereslibre_laptop has joined #haiku
[12:35:37] *** ereslibre has quit IRC
[12:35:38] *** GeneralMaximus has quit IRC
[12:36:02] *** meskarune has joined #haiku
[12:36:16] *** ereslibre_laptop has quit IRC
[12:37:26] *** ereslibre has joined #haiku
[12:37:38] *** OmniMancer has joined #haiku
[12:39:37] *** ereslibre has quit IRC
[12:39:45] *** meskarune has left #haiku
[12:54:02] *** Pinaraf has joined #haiku
[13:01:16] *** cebulon has quit IRC
[13:07:25] *** brechtm has quit IRC
[13:15:52] *** Barrett has joined #haiku
[13:27:27] *** DiGiTal has quit IRC
[13:41:45] *** Barrett has quit IRC
[13:42:11] *** Barrett has joined #haiku
[13:55:42] *** mmadia has joined #haiku
[14:07:26] *** GeneralMaximus has joined #haiku
[14:08:36] *** MAX2 has joined #haiku
[14:13:31] *** negusnyul_ has quit IRC
[14:19:46] *** negusnyul has joined #haiku
[14:20:33] <CIA-81> Haiku: humdinger * r41207 /haiku/trunk/src/preferences/screensaver/ScreenSaverWindow.cpp: Renamed a few strings as discussed in #7327 by applying xray's patch with a few additions. Closing #7327.
[14:26:24] *** mmadia has quit IRC
[14:30:57] *** PacoLinux has quit IRC
[14:33:04] *** PacoLinux has joined #haiku
[14:33:38] *** GeneralMaximus has quit IRC
[14:33:55] <CIA-81> Haiku: humdinger * r41208 /haiku/trunk/src/preferences/screensaver/ScreenSaverWindow.cpp: Aligned strings and sliders by pushing them a few pixels here and there. But really, the whole app is in need of proper layouting using the layout API...
[14:38:43] *** GeneralMaximus has joined #haiku
[15:04:26] *** lollo64it has joined #haiku
[15:08:43] *** mmu has joined #haiku
[15:08:47] *** DrHouse|Kerrigan has joined #haiku
[15:24:33] *** _marc` has quit IRC
[15:25:54] *** leszek has joined #haiku
[15:26:21] <leszek> hi
[15:31:46] <Barrett> hmm haikuware seems broken
[15:33:03] <leszek> Barrett: yep it is
[15:33:32] <Barrett> doh
[15:34:04] *** plfiorini has quit IRC
[15:34:22] <Barrett> I wanted to update the Caya package : (
[15:39:24] *** JonathanThompson has quit IRC
[15:40:04] <leszek> Barrett: isn't that also on the bebits.com page ?
[15:41:12] <Barrett> no
[15:41:53] <Barrett> however, there is no hurry
[16:03:54] *** Geoz has joined #haiku
[16:05:31] *** ereslibre has joined #haiku
[16:10:30] *** Disreali has joined #haiku
[16:15:50] *** ereslibre has quit IRC
[16:15:57] *** Stellar has quit IRC
[16:16:56] *** dflemstr has quit IRC
[16:17:19] *** dflemstr has joined #haiku
[16:18:20] *** dflemstr has quit IRC
[16:18:39] *** dflemstr has joined #haiku
[16:18:48] *** ereslibre has joined #haiku
[16:18:48] *** ereslibre has joined #haiku
[16:23:33] *** oxoocoffee has joined #haiku
[16:24:17] *** oxoocoffee has quit IRC
[16:36:38] *** Nozy has left #haiku
[16:45:04] *** Stellar has joined #haiku
[16:49:29] *** The123king has joined #haiku
[16:53:54] *** OmniMancer has quit IRC
[16:55:04] *** ampharos has joined #haiku
[16:55:14] <ampharos> heh, I emulated Haiku at 500 Mhz in QEMU
[16:55:18] <ampharos> Ran like a dog
[16:55:29] <ampharos> It booted though, which it ddin't on physical hardware, so
[17:00:45] *** dflemstr has quit IRC
[17:02:31] *** dflemstr has joined #haiku
[17:09:37] *** humdinger has joined #haiku
[17:20:25] *** backb0ne_ has joined #haiku
[17:21:32] *** backb0ne has quit IRC
[17:21:39] *** prkc has joined #haiku
[17:24:33] *** negusnyul has quit IRC
[17:26:51] *** oxoocoffee has joined #haiku
[17:51:31] *** leszek has quit IRC
[17:52:42] *** rakshasa_ has joined #haiku
[17:55:43] *** rakshasa_ has quit IRC
[17:56:05] *** rakshasa_ has joined #haiku
[17:56:21] *** rakshasa_ has quit IRC
[17:56:43] *** rakshasa_ has joined #haiku
[18:01:02] *** bryan_w has joined #haiku
[18:06:59] *** kurain has joined #haiku
[18:11:03] *** jrabbit has quit IRC
[18:11:35] *** kurain has quit IRC
[18:12:02] *** kurain has joined #haiku
[18:14:46] *** mmu has quit IRC
[18:17:08] *** plfiorini has joined #haiku
[18:21:56] *** The123king has quit IRC
[18:23:51] *** kurain has quit IRC
[18:31:18] *** humdinger has left #haiku
[18:36:39] *** MasterStarman has joined #haiku
[18:36:59] *** ereslibre has quit IRC
[18:55:07] *** jrabbit has joined #haiku
[18:58:20] *** The_Ringmaster has joined #haiku
[19:05:15] *** rakshasa_ has quit IRC
[19:06:19] *** AlienSoldier has joined #haiku
[19:14:50] *** PulkoMandy has joined #haiku
[19:23:31] *** PulkoMandy has quit IRC
[19:24:13] *** jrabbit has quit IRC
[19:31:54] *** DrHouse|Kerrigan has quit IRC
[19:34:28] *** ereslibre has joined #haiku
[19:34:28] *** ereslibre has joined #haiku
[19:34:57] *** Pinaraf has quit IRC
[19:37:31] *** jrabbit has joined #haiku
[19:43:56] *** leszek has joined #haiku
[19:44:18] <leszek> re
[19:46:57] *** Hubert_ has joined #haiku
[19:49:16] *** oxoocoffee has quit IRC
[19:52:34] *** Hubert_ has quit IRC
[19:53:50] *** mmu has joined #haiku
[19:56:53] *** Riplee has joined #haiku
[20:05:20] *** Riplee has quit IRC
[20:08:46] *** ampharos has quit IRC
[20:10:36] *** DrHouse|Kerrigan has joined #haiku
[20:11:15] *** ec|detached is now known as elliottcable
[20:11:34] *** P1ersson has quit IRC
[20:11:38] *** P1ersson has joined #haiku
[20:15:12] *** ParadoxUn has quit IRC
[20:20:31] *** elliottcable is now known as ec|detached
[20:30:07] *** mmu has quit IRC
[20:42:33] *** |WiZ| has joined #haiku
[20:45:32] *** mmu has joined #haiku
[20:51:15] *** ereslibre has quit IRC
[21:00:32] *** deesharpe has quit IRC
[21:00:50] *** deesharpe has joined #haiku
[21:05:16] *** Guest49713 has joined #haiku
[21:08:47] *** vooshy has joined #haiku
[21:09:17] *** impy has quit IRC
[21:10:27] *** Guest49713 has left #haiku
[21:16:25] *** bruce_loco has joined #haiku
[21:24:52] *** brobostigon has quit IRC
[21:25:08] *** brobostigon has joined #haiku
[21:34:06] *** PasNox has joined #haiku
[21:34:24] *** GeneralMaximus has quit IRC
[21:35:40] *** negusnyul_ has joined #haiku
[21:38:38] *** prkc has quit IRC
[21:54:44] *** vooshy has quit IRC
[22:13:31] *** lollo64it has quit IRC
[22:19:22] *** ec|detached is now known as elliottcable
[22:26:21] *** evilhugbear has joined #haiku
[22:27:38] *** mmadia has joined #haiku
[22:27:46] *** lollo64it has joined #haiku
[22:34:22] *** deesharpe has quit IRC
[22:34:44] *** deesharpe has joined #haiku
[22:35:23] *** trn has joined #haiku
[22:36:11] *** negusnyul__ has joined #haiku
[22:38:12] *** GeneralMaximus has joined #haiku
[22:39:11] *** negusnyul_ has quit IRC
[22:42:13] *** Disreali has quit IRC
[22:46:06] *** OmniMancer has joined #haiku
[22:47:01] *** mmadia has quit IRC
[22:48:30] *** bruce_loco has quit IRC
[22:50:24] *** bruce_loco has joined #haiku
[22:56:01] *** plfiorini_ has joined #haiku
[22:56:58] *** plfiorini_ has quit IRC
[22:56:58] *** _arjen_ has quit IRC
[22:57:17] *** |WiZ| has quit IRC
[23:02:42] *** leszek has quit IRC
[23:05:57] *** impy has joined #haiku
[23:11:19] *** GeneralMaximus has quit IRC
[23:13:37] *** backb0ne_ has quit IRC
[23:15:49] *** backb0ne has joined #haiku
[23:30:16] *** Xbertl has joined #haiku
[23:35:19] *** dancxjo has quit IRC
[23:39:57] *** bbjimmy has joined #haiku
[23:41:43] *** gouchi has quit IRC
[23:51:38] *** Nico-izo has joined #haiku
[23:53:33] *** Ingenu has quit IRC
[23:57:10] *** bruce_loco has quit IRC
[23:58:15] *** impy has quit IRC
[23:58:40] *** impy has joined #haiku
[23:58:42] *** negusnyul__ has quit IRC
[23:59:05] *** Nico-izo has quit IRC