Installing cygwin on Win XP Pro for multiple users

2005-01-12 Thread Crescioli, Phil
All,
I have browsed the cygwin documentation, FAQ, and news group
emails and still have some general questions.

We have installed cygwin and checked the option to install for 
"multiple users". Does cygwin support multiple users on win XP Pro?
Is there any documentation or FYI's anyone can pass on with respect
to anything I should know about multiple users on a winXP box
using the same cygwin install?

Thanks,
Phil





--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Entry point not found

2004-11-22 Thread Crescioli, Phil
All,

I'm running cygwin on my win 2000 PC and
I keep getting the following pop-up error when compiling a bunch of C++
code
that I know other people compile fine on their cygwin/win 2000 machines.

Cc1plus.exe - Entry point not found
 The procedure entry point putc_unlocked could not be locked
in
 the dynamic link library cygwin1.dll.

Any one seen this?

Thanks,

Phil Crescioli
Software Engineer 
GENERAL DYNAMICS 
Advanced Information Systems
[EMAIL PROTECTED] 


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



tclsh

2004-11-18 Thread Crescioli, Phil
Can someone please tell me what cygwin package tclsh lives in?
Thanks,
Phil


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Cygwin install

2004-03-24 Thread Crescioli, Phil
All,
Is KDE bundled somewhere within Cygwin or do 
I have to get KDE for Cygwin/Win XP separately?
Thanks,
Phil Crescioli
[EMAIL PROTECTED]

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: GVIM

2004-03-17 Thread Crescioli, Phil
FYI,
I took your bash shell vi->gvim converter and re-wrote it
for placement in my ~/.tcshrc.

if ($?tcsh) then
if ("$TERM" == "cygwin") then
echo "Setting VI to kickoff GVIM within a cygwin window"
if (-x "C:/vim/vim62/gvim.exe") then
   alias vi "C:/vim/vim62/gvim.exe"
endif
endif
endif

Thanks for the tip!
Phil
---

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 12, 2004 9:51 AM
To: Crescioli, Phil
Subject: Re: GVIM

>>>>> "Phil" == Crescioli, Phil <[EMAIL PROTECTED]> writes:

Phil> Hello all, Why is only VIM and not GVIM included with the
Phil> Cygwin package?  I'd love to use GVIM straight from a Cygwin
Phil> install.

Cygwin packages whatever software someone has bothered to port to
Cygwin.  Apparently nobody has ported gvim.  Go ahead and do it
yourself!

As it happens, I use gvim with Cygwin, and it's fine.  I had to
install Cygwin and gvim separately, of course, but neither
installation is difficult.

To further the illusion of gvim being "part of" Cygwin, I've put this
shell function definition in ~/.bashrc:

if [  "$OSTYPE" = "cygwin" ]; then
if [ -x "/c/vim/vim62/gvim.exe" ]; then
vi ()
{
   /c/vim/vim62/gvim.exe "$@"
}
fi
fi

Thus, when I type `vi foo' in a Cygwin shell, I actually run gvim.

-- 
Always code as if the guy who ends up maintaining your code will
be a violent psychopath who knows where you live.  John F. Woods

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: Displaying The Cygwin Version

2004-03-16 Thread Crescioli, Phil
I hate when I post then find my own answer...
I need to use cygcheck -s
Sorry bout unnecessary post...  I overlooked it and found
the info in the users doc.
Thanks,
Phil

-Original Message-
From: Crescioli, Phil 
Sent: Tuesday, March 16, 2004 2:52 PM
To: [EMAIL PROTECTED]
Subject: Displaying The Cygwin Version


This is probably already been posted, but I cannot find the answer in
the users guide, FAQ, or google...

I've got Cygwin installed and working fine on my Win XP PC.
I simply want to display the version of Cygwin I currently 
have installed.  How ?
Thanks,
Phil

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Displaying The Cygwin Version

2004-03-16 Thread Crescioli, Phil

This is probably already been posted, but I cannot find the answer in
the users guide, FAQ, or google...

I've got Cygwin installed and working fine on my Win XP PC.
I simply want to display the version of Cygwin I currently 
have installed.  How ?
Thanks,
Phil

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: GVIM

2004-03-12 Thread Crescioli, Phil
Thanks for the info.  I currently have a standalone gvim that works fine
on Win XP.  For now I'm just curious. I have other pressing Cygwin
things to dive into before the gvim thing, but when the time is right, I
will gladly contribute to the gvim deal since I am a very content Cygwin
user :)  
Phil Crescioli
Software Engineer, Surface Navy Programs 
GENERAL DYNAMICS 
Advanced Information Systems
[EMAIL PROTECTED] 


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 12, 2004 9:41 AM
To: [EMAIL PROTECTED]
Subject: Re: GVIM

On Mar 12 08:37, Crescioli, Phil wrote:
> Hello all,
> Why is only VIM and not GVIM included with the Cygwin package?
> I'd love to use GVIM straight from a Cygwin install.

Then, why don't you just step forward as package maintainer for
a Cygwin version of gvim?  See http://cygwin.com/setup.html.

Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



GVIM

2004-03-12 Thread Crescioli, Phil
Hello all,
Why is only VIM and not GVIM included with the Cygwin package?
I'd love to use GVIM straight from a Cygwin install.
Phil Crescioli
[EMAIL PROTECTED]

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Test Msg

2004-03-10 Thread Crescioli, Phil


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/