Re: HEADS UP: Destabilization due to SMP development

2000-06-23 Thread Dave Glowacki

"Daniel C. Sobral" wrote:
> "Jordan K. Hubbard" wrote:
> > 
> > Everyone talks about using bitkeeper but none of the people who
> > recommend it have ever actually tried to use it for anything.
> > Before such recommendations will bear weight, this needs to
> > change. :)
> 
> OCVS? (Or was it OVCS? I can never recall...)

I know of at least 4 open source successors to CVS:

Eivind Eklund's OVCS
http://www.OpenVCS.org/

Josh MacDonald's PRCS
http://www.cs.berkeley.edu/~jmacd/prcs.html

Jonathan Shapiro's DCMS
http://www.eros-os.org/~majordomo/dcms-dev/

tigris.org's Subversion
http://subversion.tigris.org/

Of these, PRCS the only one out of the design phase,
though it doesn't yet have a client-server mode.
Oh yeah, there's Bitkeeper too, but it's not really
open source...


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: bmake/contrib framework for egcs

1999-03-12 Thread Dave Glowacki
Doug Rabson wrote:
> On Fri, 12 Mar 1999, David O'Brien wrote:
> 
> > > Hmm environment variables?
> > 
> > That is my guess.. but I don't know an easy way to printout the entire
> > environtment a program sees.
> 
> How about hacking cpp so that it does 'system("env > /tmp/somefile")' as
> the first thing.

I like to move the executable to 'cpp.bin' then create a shell script
name 'cpp' that does something like:

env > /tmp/cpp-env.$$
exec cpp.bin "$@"

You can even have it start 'gdb' from within the script, if you really
want to...


To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-current" in the body of the message