irclog2html for uclibc on 2002.09.27

03:53:50bug1im not sure about the new udhcp patch
03:54:22bug1on one hand it easier to maintain because its insync with upstream code, and it provided udhcpd as well
03:55:02bug1on the other hand ther may be optimisations that are justifiable for busybox but not for upstream
05:45:23bug1i just fixed (but didnt test) uncompress
05:45:57bug1re-integrated it i hsould have said
12:50:35anderseemorning Manuel
12:50:53anderseeDid you see davidms commits?
12:51:00mjn3morning
12:52:10mjn3i saw he made a number of commits.  was that to the main repository?  i thought not...
12:53:35anderseeI hope not!
12:53:38anderseeLooking now
12:53:43anderseeHe deleted 1/2 the lib!
12:55:52anderseeHmm
12:56:04anderseeSeems to indeed be some other repository.
12:56:07anderseePhew
12:58:36mjn3yes.  to the uClinux-dist repository.  was just looking at it http://cvs.uclinux.org/cgi-bin/cvsweb/uClinux-dist/uClibc
13:21:05mjn3andersee: over the shock yet?
13:36:30anderseeyup
13:36:54anderseeI was a bit worried there for a sec.  It was an old script on uclinux.org...  Fixed now.
14:29:21prpplaguehowdy all, just going to hang out and listen to the convesation ( won't ask any stupid questions)
15:09:08anderseeprpplague: ask away.  Its pretty quiet today.
15:09:42prpplagueandersee: nothing specific today, just figured i needed to start listening in
15:09:56prpplagueandersee: i've got start using uclibc more as well as uclinux
15:11:46anderseek
15:22:55anderseeis trying to track down the lsh and fressh problems reported on the mailing list
15:29:28anderseemjn3: thoughts on adding isastream()
15:29:34anderseemjn3: http://www.opengroup.org/onlinepubs/007904975/functions/isastream.html
15:29:54anderseemjn3: On the one hand, STREAMS are an abomination in the sight of god
15:30:09anderseemjn3: On the other hand, it is in SuSv3
15:34:57mjn3andersee: looking...
15:38:59mjn3andersee: well, it would have to either return 0 or -1 as i can't see adding STREAMS support.  i remember something coming up in the mailing list about some app wanting it.  the only complication i see is that configure scripts might see it and assume STREAMS support
15:39:10anderseemjn3: A trivial implementation would be { return 0; }
15:41:13anderseemjn3: I suppose we could steal the stubs from glibc: sysdeps/generic/isastream.c, sysdeps/generic/getpmsg.c, etc.
15:42:25mjn3andersee: agreed.  the question becomes, should we return EBADF if the arg isn't a valid file descriptor.  i guess it doesn't really matter much though.
15:42:57mjn3andersee: (i was agreeing about the trivial implmentation.  haven't looked at glibc stubs)
15:45:53anderseeThis is the slightly more elaborate glibc stub:
15:45:56anderseeint isastream(int fildes)
15:45:56andersee{    
15:45:56andersee    /* In general we do not have a STREAMS implementation and therefore
15:45:56andersee       return 0.  But for invalid file descriptors we have to return an
15:45:56andersee       error.  */
15:45:56andersee    if (__fcntl (fildes, F_GETFD) < 0)
15:45:58andersee        return -1;
15:46:00andersee    /* No STREAM.  */
15:46:02andersee    return 0;
15:46:04andersee}
15:46:47mjn3andersee: works for me
23:37:35andersee was last seen on #uclibc 7 hours, 51 minutes and 31 seconds ago, saying: } [Fri Sep 27 16:46:04 2002]
23:37:35jacquesibot: seen andersee
23:37:45jacquesBZFlag: you awake?
23:37:55jacquesand do you have the ability to modify buildroot cvs?
23:39:28mjn3jacques: what do you need done?
23:40:10jacquesI'm in final verification, but I tink I got tinyx building again
23:40:25jacquesI would need the tinyx patch modified
23:41:19mjn3how big of a change is it?
23:41:36jacquesvery small, a sub-patch needs to be removed
23:42:11jacquesessentially the hack for wide char support is no longer needed and was preventing the build
23:43:03mjn3ah, wait... which buildroot are we talking about?
23:43:09jacquesthe tuxscreen one
23:43:28mjn3oh.. sorry.  can't help you there
23:43:32jacquesis there another one?  :-)
23:44:12mjn3erik keeps on to build a uClibc-based user mode linux demo
23:44:28mjn3s/ on / one /
23:44:42jacquesoh cool
23:44:48jacquesI didnt know that existed
23:46:33mjn3it is in the uclibc.org cvs
23:47:03jacquescool
23:48:26mjn3btw, i'm working towards more complete wide char and locale support by mid Nov
23:53:39jacquesmjn3: excellent
23:53:59jacquesI'm happy that tinyx compiled without complaint about the side char
23:54:01jacqueswide
23:54:11jacquesonly thing is a warning at link step of X server
23:54:24jacquessomething about some fnuction being hardwired to posix locale
23:54:30jacqueslocaleconv()
23:55:17mjn3the mb<->wc stuff should work ok.  currently the stdio stuff isn't multibyte and wide char aware for the most part though, and really only the time functions are locale aware
23:55:45mjn3the warning is there to cut down on the "locale doesn't work" posts to the list.  ;-)
23:56:01jacqueswell I'm sure there are lots of ppl clamoring for the more complete support :-)
23:57:16mjn3surprisingly not...  only a few have tried, and in its current state it is really only a "proof of concept" to see how small i could get the data
23:58:05jacqueshmm
23:58:47jacqueswe;; the data can definitely use size reduction - I think it's like 16MB for a full locale install in glibc
23:59:04jacquesthat's just the locale files
23:59:11mjn3i'll be cleaning that stuff up some more and implementing collation stuff.

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with infobot logs, split per channel and by date, etc.