Archive for January, 2007

Now I’m punished again

Wednesday, January 31st, 2007

Half hours ago, I received a mail from core-secretary@ about my src bit. Now I’m punished again for my recent ncurses work. I would like to thank delphij@ again for mentoring me (again). Hope my collection of pointyhats will not grow too fast.

ncurses wide character support

Sunday, January 28th, 2007

Today, I spent some time to get wide character support in base’s ncurses. Basically, most work were some six months ago. I managed to get lib32 build work by defining WORLD32 in ${LIB32MAKE} and do not set ${INCS} if WORLD32 is defined. So, it looks like

.if !defined(WORLD32)
INCS= ${HEADERS} ${SRCHDRS}
INCSLINKS= curses.h ${INCLUDEDIR}/ncurses.h
.endif

I’m still running a make universe to make sure everything work. At least, amd64+lib32 and i386 build fine. On my i386 current, mutt works flawlessly with ncursesw. I will post the patch to -current once make universe is finished.

ncurses is finally updated

Saturday, January 20th, 2007

After almost four years, the base’s ncurses is finally updated to 5.6 which is released last Dec. This work starts half year ago and restarted few weeks ago. I would like to thank everyone who helped me to do this update, especially delphij@ (reviewing patch and src commit approval) and kris@ (an exp run on pointyhat).

This is my first src commit and there are few errors: I accidentally import bash.core (but cvs automatically ignores it. Thanks God!), a typo, and I forget to do a force commit before removing old ncurses build glue. Well, the best thing is buildworld is ok and the ncurses is updated.

So, the next step is to enable wide character support and merge ncurses 5.6 into RELENG_6.

a shiny pointyhat

Wednesday, January 17th, 2007

Today, I removed chinese/xcin (there is a URL explains the reason in the commit message). For some unknown reason, Tools/script/rmport does not show me that there are 3 ports depend on it. After the commit, I am kicked by portsnap index builder. Then, few hours later, after dinner and some TV series, I notice that vd@ disconnects few ports from chinese/ that makes me nervous. So, I take a look and fix them. Anyway, a shiny pointyhat is added to my collections.

Virtual Kernel in DragonFly

Wednesday, January 10th, 2007

Following DragonFly BSD Digest, I noticed there are some work on so called ‘VKernel’, which is similar to User Mode Linux. It looks interesting.