Hi,
Can anybody tell me what the g++ option
-DU_STATIC_IMPLEMENTATION DOES?
thanks
RM
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin
Rodrigo Medina wrote:
> Hi,
> Can anybody tell me what the g++ option
> -DU_STATIC_IMPLEMENTATION DOES?
-D instructs the preprocessor (cpp, which is automatically invoked by
g++) to define a symbol; the appended text is the symbol that gets
defined.
The meaning of the symbol depends on the sourc
Hi,
I'm new to cygwin. I've just intalled it for building my C++ using QT3
lib (installed inside cygwin).
When compiling my program with 'make', I got these warnings:
This should work unless it involves constant data structures
referencing symbols from auto-imported DLLs.
Info: resolving QString::s
Barry Kelly wrote:
What do you mean by Cygwin? A bash prompt?
I used the shortcut, c:/cygwin/cygwin.bat to run bash.
As soon as I do this, Kaspersky Internet Security 2009, which can track
applications as well as network activity, informs me that the following
unix bin commands are run:
bas
Hi.
I make monthly DVD images of the Cygwin packages and have noticed that
the images are over 7GB in size -- much larger than will fit on a
single-layer DVD.
The mirror I am using is
rsync.mirrorservice.org::sourceware.org/pub/cygwin/.
I notice that there are two packages directories on the
John Sellers wrote on 09 September 2008 11:53:
> Barry Kelly wrote:
>> What do you mean by Cygwin? A bash prompt?
> I used the shortcut, c:/cygwin/cygwin.bat to run bash.
>
> As soon as I do this, Kaspersky Internet Security 2009, which can track
> applications as well as network activity, inform
Nick Booker wrote on 09 September 2008 12:00:
> Hi.
>
> I make monthly DVD images of the Cygwin packages and have noticed that
> the images are over 7GB in size -- much larger than will fit on a
> single-layer DVD.
>
> The mirror I am using is
> rsync.mirrorservice.org::sourceware.org/pub/cygwin
Thank you very much Barry and Al
RM
--
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/
On Mon, Sep 8, 2008 at 6:32 PM, Christopher Faylor
<[EMAIL PROTECTED]> wrote:
> On Mon, Sep 08, 2008 at 11:17:16PM +0100, Dave Korn wrote:
>>Christopher Faylor wrote on 08 September 2008 22:48:
>>
>>> On Mon, Sep 08, 2008 at 09:43:37PM +, Jay wrote:
You can build gcc 4.3.1 and 4.3.2 just f
NightStrike wrote on 09 September 2008 14:09:
> On Mon, Sep 8, 2008 at 6:32 PM, Christopher Faylor
> <[EMAIL PROTECTED]> wrote:
>> On Mon, Sep 08, 2008 at 11:17:16PM +0100, Dave Korn wrote:
>>> Christopher Faylor wrote on 08 September 2008 22:48:
>>>
On Mon, Sep 08, 2008 at 09:43:37PM +,
Yaakov,
On Tue, Aug 26, 2008 at 08:04:02PM -0400, Jason Tishler wrote:
> On Fri, Aug 08, 2008 at 05:23:37PM -0500, Yaakov (Cygwin Ports) wrote:
> > Jason Tishler wrote:
> > | Since the following is still open:
> > |
> > | http://bugs.python.org/issue1706863
> > |
> > | I didn't realize that th
I've been fighting with SSH for a week now, I've read everything I can
google, it's finally time to ask for help.
I can ssh to any account using a password, no problem. It bombs with a
cannot seteuid error in the event log when I use a keypair.
The account name is sfinfo.
The permissions of /ho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to NightStrike on 9/9/2008 7:08 AM:
>>> "... building where objdir is a subdirectory of srcdir is unsupported."
>>
>> I have been building gcc like that (and also in a completely separate
>> directory) for many years, but if this officially u
Just Me a écrit :
I've been fighting with SSH for a week now, I've read everything I can
google, it's finally time to ask for help.
I can ssh to any account using a password, no problem. It bombs with a
cannot seteuid error in the event log when I use a keypair.
I had the same "symptoms" rece
Yaakov,
On Tue, Sep 09, 2008 at 09:24:29AM -0400, Jason Tishler wrote:
> On Tue, Aug 26, 2008 at 08:04:02PM -0400, Jason Tishler wrote:
> > On Fri, Aug 08, 2008 at 05:23:37PM -0500, Yaakov (Cygwin Ports) wrote:
> > > Jason Tishler wrote:
> > > | Since the following is still open:
> > > |
> > > |
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Jason Tishler wrote:
> I did some more investigation and I still don't see how you were able to
> build this module without some kind of workaround. Empirically, I
> determined that setup.py is trying to find one of the following files:
>
> lib
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Jason Tishler wrote:
> Does sqlite3 have a maintainer? If so, then please release a new
> package with the static library included.
I don't know; for some reason the package is not listed on the package
maintainer list.
> This is an easy, short te
Hi, i have Cygwin install on a Windows 2003 Machine and i whant to run a
script on the background from time to time how can I accomplish that?
Thanks
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: h
Hello all,
I am using the command dos2unix to convert file from DOS to UNIX in a makefile.
But I get the return code 128 from the command which stop the make command. I
tried to find information about the meaning of this return code without any
success. Does anyone can help me ?
Thanks in adv
* Diogo Branco (Tue, 9 Sep 2008 15:47:00 +0100)
> Hi, i have Cygwin install on a Windows 2003 Machine and i whant to run
> a script on the background from time to time how can I accomplish
> that?
cron, at, schtasks
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem repor
Diogo Branco wrote:
> Hi, i have Cygwin install on a Windows 2003 Machine and i whant to run a
> script on the background from time to time how can I accomplish that?
You can do this in a Bash shell:
$ myscript &> output &
You may want to follow the above command with:
$ disown
Maika V wrote:
Hi,
I'm new to cygwin. I've just intalled it for building my C++ using QT3
lib (installed inside cygwin).
When compiling my program with 'make', I got these warnings:
This should work unless it involves constant data structures
referencing symbols from auto-imported DLLs.
Info: res
Francis Litterio wrote:
> If you want to launch the script from a Windows shortcut, make the
> shortcut run this command:
>
> cygstart --hide bash c:/path/to/myscript
>
> You will probably want to make the shortcut start minimized, otherwise
> you see a console window flash on the screen bri
Thanks for the help Francis i gonna try.
Once again, thanks.
--
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/
Hello:
I just installed Cygwin with setup version 2.573 from the net.
I installed open ssh
the XP Workstation I installed Cygwin on I created a local account called
cygwin and even dropped it into the local admin group.
I logged in with the account to verify
I ran the mkpasswd and mkgroup co
Jason Tishler wrote:
Does sqlite3 have a maintainer?
Me, sort of. :)
I adopted it reluctantly, because I use it on other platforms, and
because it looked like no one else was going to do it. This is why I'm
not releasing new versions to track upstream. Using it on Cygwin really
isn't my
> How can I view why the session is being rejected?
I know that one.
ssh -v
ssh -vv
ssh -vvv
...
Keep adding -v's until you see the information you're looking for.
A.
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Docum
Hi, I am relatively new to Cygwin, I've tried to search through the
archive but couldn't quite find exactly what i'm looking for.
I've installed Cygwin few months ago, then recently when I try to open
XTerminal, I am getting a blank screen. I've tried opening it through
startx, startwinx.bat, star
Guy Fleegman wrote:
Hello:
I just installed Cygwin with setup version 2.573 from the net.
I installed open ssh
the XP Workstation I installed Cygwin on I created a local account called
cygwin and even dropped it into the local admin group.
I logged in with the account to verify
I ran the m
Sandra Sandra wrote:
Hi, I am relatively new to Cygwin, I've tried to search through the
archive but couldn't quite find exactly what i'm looking for.
I've installed Cygwin few months ago, then recently when I try to open
XTerminal, I am getting a blank screen. I've tried opening it through
star
Is that for the SSHd server? Or the SSH Client?
I am connecting from putty and attachmate's ssh clients on XP systems.
I do not have a machine running cygwin/openssh to connect back to the sshd
server.
How can i have the sshd server give me output?
-Guy
Andrew Schulman-3 wrote:
>
>> How can I
Hello,
I am trying to install Cygwin on Vista Ultimate 32 bit. I have
downloaded the entire Cygwin archive to a windows 2003 servers. I run
setup.exe across the network and just try to do the default install.
The installation proceeds until the installer attempts to run
/etc/postinstall/base-fil
Guy Fleegman wrote:
Is that for the SSHd server? Or the SSH Client?
'ssh' is the client.
I am connecting from putty and attachmate's ssh clients on XP systems.
I do not have a machine running cygwin/openssh to connect back to the sshd
server.
That's not hard to fix, right?
How can i have
Mark Molinari wrote:
Hello,
I am trying to install Cygwin on Vista Ultimate 32 bit. I have
downloaded the entire Cygwin archive to a windows 2003 servers. I run
setup.exe across the network and just try to do the default install.
The installation proceeds until the installer attempts to run
/e
On Tue 08-09-09 04:24, Just Me wrote:
> I've been fighting with SSH for a week now, I've read everything I can
> google, it's finally time to ask for help.
>
> I can ssh to any account using a password, no problem. It bombs with a
> cannot seteuid error in the event log when I use a keypair.
I j
IIRC I had to set permissions on ~/.ssh to 700
Just Me wrote:
I've been fighting with SSH for a week now, I've read everything I can
google, it's finally time to ask for help.
I can ssh to any account using a password, no problem. It bombs with a
cannot seteuid error in the event log when I us
On Tue, Sep 9, 2008 at 10:48 AM, Heude Pascal (LTS) wrote:
> I am using the command dos2unix to convert file from DOS to UNIX in a
> makefile.
If that's the Cygwin version of dos2unix.exe, then I assume you are
also using the Cygwin version of make, which you are in turn running
from a Cygwin ba
The "poor man's mailer" included as part of the cron package uses the
following construct to generate part of the filename used in making
log file names:
DATE=$(date '+%Y%m%d_%H%M%S')
It then generates the filename as:
FILE="/tmp/cron.$DATE.$$.log"
However, it seems to be tacking on a CR charac
On Tue, Sep 9, 2008 at 5:24 AM, Just Me wrote:
> I've been fighting with SSH for a week now, I've read everything I can
> google, it's finally time to ask for help.
>
> I can ssh to any account using a password, no problem. It bombs with a
> cannot seteuid error in the event log when I use a keypa
Linus Hicks wrote:
The "poor man's mailer" included as part of the cron package uses the
following construct to generate part of the filename used in making
log file names:
DATE=$(date '+%Y%m%d_%H%M%S')
It then generates the filename as:
FILE="/tmp/cron.$DATE.$$.log"
However, it seems to be t
Hello,
I am trying to get the Audio::Data perl module because a program, rsynth
called by the HSLab
utility of HTK, needs it.
I have not found it in the cygwin perl packages and when I use
perl -MCPAN -e shell
and then
install Audio::Data (or fforce install Audio::Data) I get the following:
CPAN
Hello,
I discovered what the problem was. I was trying to only download
using setup.exe to a different directory than I was using previously.
But since I already had Cygwin installed on my windows 2003 server, it
didn't download anything I had already installed. I thought by
selecting "download
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Mary wrote:
> I am trying to get the Audio::Data perl module because a program, rsynth
> called by the HSLab utility of HTK, needs it.
> I have not found it in the cygwin perl packages and when I use
> perl -MCPAN -e shell and then
> install Audio::D
Mark Molinari wrote:
Hello,
I discovered what the problem was. I was trying to only download
using setup.exe to a different directory than I was using previously.
But since I already had Cygwin installed on my windows 2003 server, it
didn't download anything I had already installed. I thought
Larry Hall (Cygwin) wrote:
Mark Molinari wrote:
Hello,
I discovered what the problem was. I was trying to only download
using setup.exe to a different directory than I was using previously.
But since I already had Cygwin installed on my windows 2003 server, it
didn't download anything I had al
Tom Schutter wrote:
> On Tue 08-09-09 04:24, Just Me wrote:
>
>> I've been fighting with SSH for a week now, I've read everything I can
>> google, it's finally time to ask for help.
>>
>> I can ssh to any account using a password, no problem. It bombs with a
>> cannot seteuid error in the event
Mark J. Reed wrote:
> On Tue, Sep 9, 2008 at 5:24 AM, Just Me wrote:
>
>> I've been fighting with SSH for a week now, I've read everything I can
>> google, it's finally time to ask for help.
>>
>> I can ssh to any account using a password, no problem. It bombs with a
>> cannot seteuid error in
I am having a problem that I have seen reported before, but I didn't see a
resolution. I have cygwin installs on two machines, both XP SP2. This
problem occurs on one and not the other. I'm not even sure how to go about
debugging this.
The problem: I run octave from the command line, and it exits
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to rmcd on 9/9/2008 10:03 PM:
> octave -V and octave -x return nothing
>
> echo $? returns 53
Classic symptom of a missing .dll. Run 'cygcheck octave' to find out
what's missing, 'cygcheck -p filename.dll' to find which package provides
it
Rob wrote:
> 1. Why is /usr/lib/perl5/site_perl not listed on 5.8.8 ?
Because having an unversioned directory in @INC was a mistake that was
corrected.
> 2. why are there "duplicate" entries for:
>/usr/lib/perl5/site_perl/5.8
>/usr/lib/perl5/vendor_perl/5.8
vendor_perl contains modules
50 matches
Mail list logo