Re: help needed to fix contrib/ee crash/exit when receiving SIGWINCH

2009-10-26 Thread Rong-En Fan
ut the patch should quickly make it into the port version of > ncurses. devel/ncurses-devel will be updated this week. For base's ncurses, I'll check with Thomas Dickey to see if there will be 5.8 soon. If not, we can also import a recent snapshot. Thanks, Rong-En Fan pgp0ojXYkOoIt.pgp Description: PGP signature

Re: rpc.yppasswdd fails in 7.2?

2009-06-29 Thread Rong-En Fan
CHLD. It only happens when the master uses /etc/master.passwd instead of /var/yp/master.passwd. The zombie mentioned in the commit log was yppwupdate. Two possible soluutions are: we wait until the push is succeed or we use a double fork. Personally, I prefer the former approach. Regards, Rong-En Fan pgpSIhzZwtatl.pgp Description: PGP signature

Re: Disk quotas out of sync

2008-08-18 Thread Rong-en Fan
in 7.0-R? Nobody else noticed this issue? > I have this issue across multiple, different hardware, servers running 7.0-R > > Thank you for any insight and help in advance! Are you running SMP? Quotas in 7.x and 6.x (since this May) become MPSAFE. I'm CC'ing kib@ who w

Re: MODULES_OVERRIDE magic needed

2008-03-31 Thread Rong-en Fan
MODULE_OVERRIDE="if_sis" > is ok, but > MODULE_OVERRIDE="if_sis unionfs" > failes with either > if_sis: not found Try MODULE_OVERRIDE=if_sis unionfs I think that is what I used before. Regards, Rong-En Fan > if it's defined in src.conf, or with >

Re: doubt about IPSEC - Freebsd 7

2007-11-24 Thread Rong-en Fan
to treat > ESP like the old IPSEC_ESP option? Yes. Regards, Rong-En Fan > I'm having some problems right now setting up a vpn to complete phase 2, > (the error is no proposal chosen). > Since ipsec-tools uses the facilities in the kernel, I want to make sure > that th

Re: UFS2 version of ffsrecov.

2007-02-06 Thread Rong-en Fan
ybe make a port out of it. If you do and > you need a place to host the distfile, let me know. I've got the port done (in about 10 minutes). I could submit it as is, using your original url as the source. But hosting it somewhere else wouldn't be a problem either. Now it'

Re: how to determine if we are building lib32 in Makefile?

2007-01-28 Thread Rong-en Fan
On 1/28/07, Rong-en Fan <[EMAIL PROTECTED]> wrote: I'm working on wide character support in base's ncurses. For some reason, I have to make lib/ncurses/ncursesw to include ncurses.h from its object directory. However, current lib32 uses something like cc ... -I${LIB32T

how to determine if we are building lib32 in Makefile?

2007-01-27 Thread Rong-en Fan
I have the following: .if ${.TARGET} == "installincludes" && !empty(${DESTDIR:M*/lib32/*}) INCS= ${HEADERS} ${SRCHDRS} INCSLINKS= curses.h ${INCLUDEDIR}/ncurses.h .endif It works, but it's really ugly. Is there any other way