Re: Cygwin Question?

2007-05-21 Thread Igor Peshansky
On Sat, 19 May 2007, Dustin Ochoa wrote:

 Hello Igor,

Hi.  Questions about Cygwin should be directed to one of the Cygwin lists.
See http://cygwin.com/acronyms/#PPIOSPE for details.  Redirecting.
Please follow up to the list.

 I understand that you are quite knowledgeable on Cygwin and thought
 maybe you could quickly answer my question.  I'm attempting to run
 multiple csh scripts and after I start the third script, I get the
 following error message:

 Exception: STATUS_ACCESS_VIOLATION at eip=0022DAD0
 eax= ebx=00218EA0 ecx=00218C28 edx=7C90EB94 esi=1000 edi=
 ebp=0021BED8 esp=00218D70 program=C:\cygwin\bin\tcsh.exe, pid 4300, thread 
 main
 cs=001B ds=0023 es=0023 fs=003B gs= ss=0023
 Stack trace:
 Frame Function  Args
 0021BED8  0022DAD0  (006D648A, 0021BEF9, 0001, 0040D830)
 00220F08  0041117A  (006D6488, , , )
 00224F68  00411259  (00442B1E, 00479050, 01A0, 006D1BA8)
 00224F88  004117AC  (006D1BA8, , 00225028, 61168030)
 00224FC8  0041C289  (006E5AA8, 006D1BA8, 00479050, 0002)
 00224FE8  0041C3CD  (006E5AA8, 006D6488, 0002, 00441301)
 00225028  0041DA51  (006E3008, 006E5B28, , )
 002278F8  0041B21A  (006E5B28, , , )
 0022A1C8  0041AEFF  (006E5A28, , , )
 0022ABC8  00401722  (0001, , 00479050, 0002)
 0022CCE8  004038FA  (0001, 61169728, 006D1008, 0022CC70)
 0022CD98  61006148  (, 0022CDD0, 610054C0, 0022CDD0)
 610054C0  61004416  (009C, A02404C7, E8611001, FF48)
 3 [main] csh 4300 _cygtls::handle_exceptions: Error while dumping state 
 (probably corrupted stack)

This looks like an error deep inside tcsh code, but you'd probably have to
a) provide the exact steps you took to reproduce it (preferably by
reducing your scripts to simple test cases), and/or b) build tcsh with
debugging symbols and figure out where it crashes.

 Does Cygwin have a problem with running multiple scripts at the same
 time? If so, is there a way around this?

If Cygwin had a problem with running multiple scripts at the same time, it
would have been noticed already.  This sounds like either your local
configuration is broken (multiple cygwin1.dlls, known incompatible
software, etc), or you've stumbled upon a tcsh bug.

That said, I don't use tcsh, and can only offer some generic advice.
Take a look at http://cygwin.com/problems.html and follow the guidelines
for problem reporting (pay particular attention to the part that asks you
to provide your system configuration details).
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Freedom is just another word for nothing left to lose...  -- Janis Joplin

--
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: perl DBD::mysql under cygwin question

2007-04-27 Thread Andrew DeFaria

fungazid fungazid wrote:

Brian hello,

Thank you a lot, this specific problem is solved.

I used

1)./configure --prefix=/usr/local/mysql
--without-server

So you want no server...

2) make
3) make install
4) cd /usr/local/mysql/bin
5)./mysql -h 127.0.0.1

I tested mysql and it works. I still have some little problem with 
user access to mysql table that I'm

trying to solve (I guess it's a cygwin problem):

mysql use mysql
Nope. At the point where you typed in mysql to the command prompt you 
left cygwin!  You specified -h (for host) and 127.0.0.1 your loop back 
address. So you are trying to talk to your own machine as the server, 
which you just told it you didn't want one! Hint you might be able to 
specify -h ip address of a real server say a Linux server. Of course 
it'd need to be configured properly to allow you access, etc...

ERROR 1044 (42000): Access denied for user 'admin'@'%'
to database 'mysql'
This is a number of problems. First there's no server because you told 
it not to do one. Secondly, assuming you did make a server here, there's 
no configuration setting up the mysql database. So there's no mysql 
database to consult to see if admin can access mysql databases! 
Further - are you really named admin? That's a strange name for a 
person like you.

--
Andrew DeFaria http://defaria.com
I tried sniffing Coke once, but the ice cubes froze the end of my nose.


--
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/



perl DBD::mysql under cygwin question

2007-04-25 Thread fungazid fungazid
Hello the cygwin people,

I decided to use cygwin because I'm working with
biological packages that run on linux unix, and I work
mainly on windows. I have only little experience with
linux\unix.

I installed cygwin on my windows xp recently, with all
modules. I had no problems with running perl scripts
under cygwin, and installing perl modules like
bioperl.
   
Then I tried to install DBD::mysql. 
ccording to the instructions I have to first download
mysql linux source, to compile it and install it
under cygwin. here are the instruction -
http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql/INSTALL.pod

I followed them but 'make install' for mysql gave
errors. 
   
I used mysql source Compressed GNU TAR archive
(tar.gz) here:
http://dev.mysql.com/downloads/mysql/5.0.html
   
so: is it the right version ? 
maybe I missed other things ? 
   
I would be grateful for your help
   
  Avi




__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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: perl DBD::mysql under cygwin question

2007-04-25 Thread Brian Dessent
fungazid fungazid wrote:

 Then I tried to install DBD::mysql.
 ccording to the instructions I have to first download
 mysql linux source, to compile it and install it
 under cygwin. here are the instruction -
 http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql/INSTALL.pod
 
 I followed them but 'make install' for mysql gave
 errors.

It gave errors is way too vague.  You'll have to describe exactly what
you did and exactly what the output was if you want help.

Alternatively, Cygwin Ports has binary packages of libmysqlclient that
you can install.

Brian

--
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: perl DBD::mysql under cygwin question

2007-04-25 Thread fungazid fungazid
Brian Hello,

The input of make install for mysql ends with the
following list: 

/usr/bin/install: `bench-count-distinct' and
`/home/mysql-5.0.37/sql-bench/bench
-count-distinct' are the same file
make[3]: *** [install-benchSCRIPTS] Error 1
make[3]: Leaving directory
`/home/mysql-5.0.37/sql-bench'
make[2]: *** [install-am] Error 2
make[2]: Leaving directory
`/home/mysql-5.0.37/sql-bench'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/mysql-5.0.37'
make: *** [install] Error 2


Avi










--- Brian Dessent [EMAIL PROTECTED] wrote:

 fungazid fungazid wrote:
 
  Then I tried to install DBD::mysql.
  ccording to the instructions I have to first
 download
  mysql linux source, to compile it and install it
  under cygwin. here are the instruction -
 

http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql/INSTALL.pod
  
  I followed them but 'make install' for mysql gave
  errors.
 
 It gave errors is way too vague.  You'll have to
 describe exactly what
 you did and exactly what the output was if you want
 help.
 
 Alternatively, Cygwin Ports has binary packages of
 libmysqlclient that
 you can install.
 
 Brian
 
 --
 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/
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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: perl DBD::mysql under cygwin question

2007-04-25 Thread fungazid fungazid

It gave errors is way too vague.  You'll have to
describe exactly what you did and exactly what the
output was if you want help.


Ok:
1) cygwin is installed under C:\cygwin folde. 
2) I unpacked mysql linux source to C:\cygwin\home. 
3) I CD to the new folder
(C:\cygwin\home\mysql-5.0.37).
4) run the command:
 ./configure --prefix=/home/mysql-5.0.37
--without-server
(I tried also the command 
./configure --prefix=/home/mysql-5.0.37
--enable-server )
I got a long output.
5)  make
6) make install
for the last command I got:

/usr/bin/install: `bench-count-distinct' and
`/home/mysql-5.0.37/sql-bench/bench
-count-distinct' are the same file
make[3]: *** [install-benchSCRIPTS] Error 1
make[3]: Leaving directory
`/home/mysql-5.0.37/sql-bench'
make[2]: *** [install-am] Error 2
make[2]: Leaving directory
`/home/mysql-5.0.37/sql-bench'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/mysql-5.0.37'
make: *** [install] Error 2

 



--- Brian Dessent [EMAIL PROTECTED] wrote:

 fungazid fungazid wrote:
 
  Then I tried to install DBD::mysql.
  ccording to the instructions I have to first
 download
  mysql linux source, to compile it and install it
  under cygwin. here are the instruction -
 

http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql/INSTALL.pod
  
  I followed them but 'make install' for mysql gave
  errors.
 
 It gave errors is way too vague.  You'll have to
 describe exactly what
 you did and exactly what the output was if you want
 help.
 
 Alternatively, Cygwin Ports has binary packages of
 libmysqlclient that
 you can install.
 
 Brian
 
 --
 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/
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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: perl DBD::mysql under cygwin question

2007-04-25 Thread Brian Dessent
[ There is no need to email me directly.  I set the reply-to to the
list. ]

fungazid fungazid wrote:

 1) cygwin is installed under C:\cygwin folde.
 2) I unpacked mysql linux source to C:\cygwin\home.
 3) I CD to the new folder
 (C:\cygwin\home\mysql-5.0.37).
 4) run the command:
  ./configure --prefix=/home/mysql-5.0.37
 --without-server

You're configuring with a prefix that is the same as srcdir.  That's
completely nonsensical.  --prefix is the root of where the files should
be installed, typically /usr/local.  Don't set it to the directory where
you unpacked the sources.

Brian

--
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: perl DBD::mysql under cygwin question

2007-04-25 Thread fungazid fungazid
Brian hello,

Thank you a lot, this specific problem is solved. 

I used 

1)./configure --prefix=/usr/local/mysql
--without-server
2) make
3) make install
4) cd /usr/local/mysql/bin
5)./mysql -h 127.0.0.1

I tested mysql and it works. I still have some little
problem with user access to mysql table that I'm
trying to solve (I guess it's a cygwin problem):

mysql  use mysql
ERROR 1044 (42000): Access denied for user 'admin'@'%'
to database 'mysql'

Avi
















--- Brian Dessent [EMAIL PROTECTED] wrote:

 [ There is no need to email me directly.  I set the
 reply-to to the
 list. ]
 
 fungazid fungazid wrote:
 
  1) cygwin is installed under C:\cygwin folde.
  2) I unpacked mysql linux source to
 C:\cygwin\home.
  3) I CD to the new folder
  (C:\cygwin\home\mysql-5.0.37).
  4) run the command:
   ./configure --prefix=/home/mysql-5.0.37
  --without-server
 
 You're configuring with a prefix that is the same as
 srcdir.  That's
 completely nonsensical.  --prefix is the root of
 where the files should
 be installed, typically /usr/local.  Don't set it to
 the directory where
 you unpacked the sources.
 
 Brian
 
 --
 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/
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/



-mno-cygwin Question

2007-03-20 Thread Hugh McMaster

Hi all,

I know some weeks back now, that there was a lot of discussion over
the possible removal of the -mno-cygwin flag.  Could someone please
inform me as to whether the removal of this flag will be taking place
(or has)?

Thankyou.

Hugh

--
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/



about a Tcl/Tk and cygwin question

2006-08-18 Thread John Liu

Dear Cygwin friends, 
 
I installed Cygwin and Cygwin/X into my PC. It works well. But today when I
ran a program to test a Tcl/Tk script. It cannot works well. I test these
scripts on other Linux or Unix system. It works well. Definitely, in other
unix/linux system, I compile quads.f file to quads.o and excute it in
quads.tcl. Here in Cygwin, I use g77 compile it into quads.o so that can be
used in quads.tcl. I tried just excute quads.o just in Cygwin. It works
well. So it is impossible the compilation problem. I worried about the
installation problem about Tcl/Tk. Anybody can tell me why? Whether my
installation about Cygwin is inproblem. 
 
Attached are scripts and here is the error message.
 
Error: invalid number: incomprehensible list input
apparent state: unit 5(unnamed)
last format: list io
lately reading direct formatted external IO
 
Thanks,
 
Jianzhong
 
Here is quads.tcl
=
#!/usr/bin/wish -f
wm title . gui_quads
label .msg -text Solution of a x^2 + b x + c = 0
pack .msg -padx 5 -pady 3 -ipadx 5 -ipady 5 -fill x
frame .f
pack .f -padx 5 -ipadx 5


#
entry .f.a   -relief sunken 
label .f.x2  -text x^2 + 
entry .f.b   -relief sunken 
label .f.x   -text  x + 
entry .f.c   -relief sunken
label .f.rhs -text  = 0 

pack .f.a .f.x2 .f.b .f.x .f.c .f.rhs -in .f -side left -padx 3 -pady 3
-ipadx 2 -ipady 2

frame .zeros
pack .zeros
frame .zeros.base1 -bg red
frame .zeros.base2 -bg pink
pack .zeros.base1 -in .zeros -padx 5 -pady 5 -side top
pack .zeros.base2 -in .zeros -padx 5 -pady 5 -side top
label .zeros.x1 -text x1 =  
label .zeros.x1val -bg yellow
label .zeros.x2 -text x2 = 
label .zeros.x2val -bg yellow
pack .zeros.x1 .zeros.x1val -side left -in .zeros.base1 -padx 5 -pady 5
pack .zeros.x2 .zeros.x2val -side left -in .zeros.base2 -padx 5 -pady 5 

# 
frame .info
pack .info
frame .info.dum
pack .info.dum -side left 
set w .info.dum

label $w.disc 
label $w.type
pack $w.disc -padx 5 -pady 5 
pack $w.type -padx 5 -pady 5
#

#

#
# buttons
#
frame .bf
pack .bf -padx 5 -pady 5 -ipadx 4 -ipady 4 -fill x
button .bf.quit -text Quit -command {exit}
button .bf.clear -text Clear -command clearEntries
button .bf.solve -text Solve -command invokeQuads 
pack .bf.quit .bf.clear .bf.solve -side right \
 -padx 5 -pady 5 -ipadx 3 -ipady 3

focus .f.a


proc invokeQuads { } {
set f [open |quads.o r+]
foreach e {.f.a .f.b .f.c} {
set entry [$e get]
if { [string compare $entry ] == 0 } {
  puts stdout Some entry(ies) are null  enter them Now \n 
close $f
return
} else {
   puts $f $entry
  }
  }


flush $f   ;# you can only flush after you have written to the pipe
gets $f in_prompt  ;# Input the coefficients a,b,c
gets $f disc   ;# DISC : 1.0
gets $f iflag  ;# IFLAG =   0 
gets $f aux_msg;# ROOTS ARE REAL or ... Complex ...
gets $f roots  ;# x1 = 2.0  x2 = 1.0
close $f   ;# now you can close
  set w .info.dum;# a quick fix 
if { [regexp {(COMPLEX|complex)} $aux_msg cmplx] == 1 } {
.zeros.x1 configure -text Real Part
.zeros.x2 configure -text Imaginary Part
$w.type config -text $aux_msg 
} else {
.zeros.x1 configure -text x1
.zeros.x2 configure -text x2
$w.type config -text $aux_msg
  }
regexp {(x1 = [ ]*[+|-]*[0-9]*\.[0-9]*)} $roots val1
regexp {(x2 = [ ]*[+|-]*[0-9]*\.[0-9]*)} $roots val2 
.zeros.x1val configure -text $val1
.zeros.x2val configure -text $val2
$w.disc configure -text $disc
}

proc clearEntries { } {
  foreach e {.f.a .f.b .f.c} {
$e delete 0 end
  }
}

 

 

 

Here is quads.f



 IMPLICITDOUBLE PRECISION (a-h,o-z)
 COMMON IFLAG
 
 PRINT *, 'Input the coefficients a,b,c'
 READ *,a,b,c
 CALL qsolve(a,b,c,x1,x2)
 IF (IFLAG .EQ. 0) THEN
 PRINT*,'IFLAG = ',IFLAG 
 PRINT *, 'ROOTS ARE REAL' 
 ELSE
 PRINT*,'IFLAG = ',IFLAG
 PRINT*,'ROOTS ARE COMPLEX -- (RealPart, ImagPart) = (x1,x2)'
 END IF
 WRITE(UNIT=6, FMT=*)'x1 = ',x1,'  ','x2 = ',x2 
 END

 SUBROUTINE qsolve(a,b,c,x1,x2)

 IMPLICITDOUBLE PRECISION (a-h,o-z)
 COMMON IFLAG

 disc = (b*b - 4*a*c)
 PRINT*,'DISC : ',DISC
 IF (disc .GE. 0) THEN
 x1 = (- b + sqrt( disc ) )/(2.0*A)
 x2 = (- b - sqrt( disc ) )/(2.0*A)
 iflag = 0
 ELSE
 iflag = 1
 x1 = -b/(2*A) 
 x2 = sqrt(-disc)/(2*A)
 END IF
 RETURN
 END


-- 
View this message in context: 
http://www.nabble.com/about-a-Tcl-Tk-and-cygwin-question-tf2130456.html#a5880089
Sent from the Cygwin Users forum at Nabble.com.


--
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: [SWIPL] emacs prolog cygwin question

2005-03-16 Thread Steve Kelem
Stefan Bruda said the following on 3/16/2005 8:37 AM:
I am not at all familiar with Cygwin, so the following are more of
educated guesses rather than authoritative answers.
At 06:58 -0800 on 2005-3-16 Steve Kelem wrote:

 I have verified that the above version of prolog.elc is being loaded.
 When I load a prolog source file, and type C-c C-b, I cannot get a 
 prolog process to run.
 C:\cygwin\bin\pl is a symbolic link to 
 ../lib/pl-5.2.6/bin/i686-cygwin/pl.exe

I believe that the right executable to run under Windows is plcon.exe,
not pl.exe.
I couldn't find a plcon anywhere.
 This may or may not be the problem, possibly not since
you are running Prolog from Cygwin.  On the other hand, what is the
.exe suffix doing there?
Cygwin is linux on top of Windoze, so the file has to be a Microsoft 
.exe file when all's done.

 It is worth trying plcon.exe if this
exists on your system.
If you just type `pl' (without quotes) at the shell prompt do you get
the Prolog application up?  Do you get a graphical version or a
console-based version?  In the former case, do you get the Windows or
X interface?
 

I get the consol-based-version.
I am sort of confused about the way your Prolog system is installed
and what is and what is not in your search path--but then I am not
familiar with how Cygwin is doing things.
 

I ended up uninstalling the cygwin version (5.2.6) of swi prolog, loaded 
the version (5.4.7) from http://www.swi-prolog.org/,
and the new one works---in a Cygwin tcsh, in emacs, and from tcsh as a 
windows-style window.

Have you tried to set the EPROLOG environment variable instead of
setting prolog-program-name?  Have you tried following the item 4 of
instructions at
http://turing.ubishops.ca/home/bruda/emacs-prolog/install.html?  I
am not saying that these works, but they are worth a shot.
On the other hand, I do not understand the cause of the error.  The
error message is either misleading or suggests another cause.  At
least on my system I get in the error message a plain text explanation
of the actual errno (no such file or directory).  Your error message
looks nothing like mine.  Could be a different Emacs version, but it
could also be that the problem is in some other place.  Let me know
what happens with the things I mentioned before (such as launching pl
as a standalone application).
 ; In Emacs-style path:
 (setq prolog-program-name C:/cygwin/bin/pl)   Spawining child process: 
 invalid argument.

This should work as far as the path is concerned.
 ; In Windows-style path with unquoted backslashes:
 (setq prolog-program-name C:\cygwin\bin\pl)   Spawining child process: 
 invalid argument.

This should not work no matter under what system, since backslash has
special meanings Are you sure you don't get the C:cygwin^Hinpl in this
one rather than the one below?  This is what should have happened.
 ; In Windows-style path with quoted backslashes:
 (setq prolog-program-name C:\\cygwin\\bin\\pl)   Spawining child 
 process: invalid argument.   (prolog-program-name gets set to 
 C:cygwin^Hinpl, so unquoted backslashes are bad.)

See above.
Stefan
Thanks for your help,
Steve
--
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/


Perl port to cygwin question/problem

2003-11-27 Thread linda w
 I'm trying to run a program that needs Registry.pm.  I pull it down
as part of Win32::Registry, but when I try to 'make' it, it fails:
...
Writing Makefile for Win32::ODBC
Checking if your kit is complete...
Looks good
Processing hints file hints/cygwin.pl
Note (probably harmless): No library found for -lole32
Note (probably harmless): No library found for -loleaut32
Note (probably harmless): No library found for -luuid
Note (probably harmless): No library found for -lmsvcrt40
Writing Makefile for Win32::OLE
Checking if your kit is complete...
Looks good
Writing Makefile for Win32::PerfLib
Checking if your kit is complete...
Looks good
Writing Makefile for Win32::Pipe
ERROR from evaluation of 
//ishtar/share/CPAN/build-win/libwin32-0.191/Process/Ma
kefile.PL: Undefined subroutine Win32::IsWinNT called at ./Makefile.PL 
line 4.

Anyone have any ideas on why this is breaking or how to make this work?  Is
it something broken in the cygwin port, of perl, on Win32?
Thanks!
Linda W.


--
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/


Fw: [Mingw-users] This -mno-cygwin question is on topic here

2003-01-14 Thread Norman Vine
FYI

- Original Message - 
From: Greg Chicares [EMAIL PROTECTED]
To: Norman Vine [EMAIL PROTECTED]; mingw-users [EMAIL PROTECTED]
Sent: Tuesday, January 14, 2003 2:24 PM
Subject: Re: [Mingw-users] This -mno-cygwin question is on topic here


 Norman Vine wrote:
  
  Greg Chicares writes:
  
   [...] it has been proposed to use 'mno-cygwin'
   in the wxWindows makefiles by default for all cygwin
   and mingw builds (cygwin and mingw share the same
   makefiles).
  
  As long as there is a 'standard' way of building a Cygwin
  version this sounds fine.
  
  ie
  ./configure --host=cygwin
  and
  ./configure --host=mingw32
  
  should 'just do' the 'right thing' *automagically*
 
 I guess that depends on what you think the right thing is.
 The person who submitted the patch says:
 
 | Default to using -mno-cygwin, it works best in mingw/cygwin/wine
 | mkdir() takes only one argument in msvcrt, and 2 in all other cases
 
 It looks like you could override this with
   make COMMON_FLAGS='' some-wxwindows-target
 And it appears that this change has no effect on
 './configure', but affects only building with the
 canned makefiles.
 
 If you disagree with the change, here's what to do:
 
 | Patches item #667563, was opened at 2003-01-14 04:05
 | You can respond by visiting: 
 | https://sourceforge.net/tracker/?func=detailatid=309863aid=667563group_id=9863
 
 Further discussion ought to go there or a cygwin list.
 I don't have a personal interest in cygwin, and I'm not
 posting to their list because I'm not subscribed and
 wouldn't see any responses--so that would be rude. But
 if you're interested in wxWindows on cygwin, feel free
 to quote this email anywhere else.
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: [Mingw-users] This -mno-cygwin question is on topic here

2003-01-14 Thread Christopher Faylor
On Tue, Jan 14, 2003 at 02:24:28PM -0500, Greg Chicares wrote:
Norman Vine wrote:
 
 Greg Chicares writes:
 
  [...] it has been proposed to use 'mno-cygwin'
  in the wxWindows makefiles by default for all cygwin
  and mingw builds (cygwin and mingw share the same
  makefiles).
 
 As long as there is a 'standard' way of building a Cygwin
 version this sounds fine.
 
 ie
 ./configure --host=cygwin
 and
 ./configure --host=mingw32
 
 should 'just do' the 'right thing' *automagically*

I guess that depends on what you think the right thing is.
The person who submitted the patch says:

| Default to using -mno-cygwin, it works best in mingw/cygwin/wine
| mkdir() takes only one argument in msvcrt, and 2 in all other cases

It looks like you could override this with make COMMON_FLAGS=''
some-wxwindows-target And it appears that this change has no effect on
'./configure', but affects only building with the canned makefiles.

If you disagree with the change, here's what to do:

| Patches item #667563, was opened at 2003-01-14 04:05 | You can
respond by visiting: |
https://sourceforge.net/tracker/?func=detailatid=309863aid=667563group_id=9863

Further discussion ought to go there or a cygwin list.  I don't have a
personal interest in cygwin, and I'm not posting to their list because
I'm not subscribed and wouldn't see any responses--so that would be
rude.  But if you're interested in wxWindows on cygwin, feel free to
quote this email anywhere else.

Is anyone in the cygwin list interested in wxWindows?  It seems like
defaulting to -mno-cygwin is the wrong thing to do to me but I'm not
familiar with wxWindows (please, I don't need an education, just
an informed opinion) so I don't know if this seemingly nonsensical
suggestion makes sense or not.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Cygwin question - hopefully a quickie

2002-12-11 Thread Harter, Pete
Title: Cygwin question - hopefully a quickie





Christopher:
I downloaded a version of Cygwin (can't remember the source; one of those from the http://www.cygwin.com/ list) onto my new machine which uses Win 2000 Professional OS. I just now noticed that it doesn't recognize the ex (batch vi editor) command. I've used Cygwin (again, I don't know the source) before on the Win NT environment, and it recognized the ex command OK.

What can I use as a substitute for the ex command?


Pete Harter
Mechanical Analysis
ITT Aerospace/Communications





If this email is not intended for you, or you are not responsible for the delivery of this message to the addressee, please note that this message may contain ITT Privileged/Proprietary Information. In such a case, you may not copy or deliver this message to anyone. You should destroy this message and kindly notify the sender by reply email. Information contained in this message that does not relate to the business of ITT is neither endorsed by nor attributable to ITT.
 



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/


Re: Cygwin question - hopefully a quickie

2002-12-11 Thread Corneliu Rudeanu
On Wed, 11 Dec 2002, Harter, Pete wrote:

 Christopher:
 I downloaded a version of Cygwin (can't remember the source; one of those
 from the http://www.cygwin.com/ http://www.cygwin.com/  list) onto my new
 machine which uses Win 2000 Professional OS.   I just now noticed that it
 doesn't recognize the ex  (batch vi editor) command.   I've used Cygwin
 (again, I don't know the source) before on the Win NT environment, and it
 recognized the ex command OK.
 
 What can I use as a substitute for the ex command?
 

ln -sf /usr/bin/vim.exe /usr/bin/ex

Best Regards,
rudy


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Cygwin question - hopefully a quickie

2002-12-11 Thread [EMAIL PROTECTED]
Well, that's a reasonable recommendation but, as it turns out,
it won't work unless the VIM package is installed and if VIM 
is installed, it's not necessary to do this manually, since 
the link is created as part of the installation of this package.

Here's the FAQ entry that should prove useful when trying to figure 
out what Cygwin package a particular utility is in.

What packages should I download?
http://cygwin.com/faq/faq_2.html#SEC13

Ah the FAQ.  It's a wonderfull concept! ;-)

Larry


Original Message:
-
From: Corneliu Rudeanu [EMAIL PROTECTED]
Date: Wed, 11 Dec 2002 22:01:38 +0200 (EET)
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Cygwin question - hopefully a quickie


On Wed, 11 Dec 2002, Harter, Pete wrote:

 Christopher:
 I downloaded a version of Cygwin (can't remember the source; one of those
 from the http://www.cygwin.com/ http://www.cygwin.com/  list) onto my
new
 machine which uses Win 2000 Professional OS.   I just now noticed that it
 doesn't recognize the ex  (batch vi editor) command.   I've used Cygwin
 (again, I don't know the source) before on the Win NT environment, and it
 recognized the ex command OK.
 
 What can I use as a substitute for the ex command?
 

ln -sf /usr/bin/vim.exe /usr/bin/ex

Best Regards,
rudy


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



mail2web - Check your email from the web at
http://mail2web.com/ .



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Your Cygwin question / cygreadline

2002-02-19 Thread Jason Tishler

Wayne,

Please post to [EMAIL PROTECTED] instead of sending private email.

On Mon, Feb 18, 2002 at 10:41:03PM -0500, [EMAIL PROTECTED] wrote:
 Did you ever arrive at an answer as to how to address the missing
 cygreadline.dll?

Why are you asking me?

 It cropped up when I was working/playing with Octave.
 
 I tried searching the archives, got 160 some odd hits. No obvious
 titles, so I was left with searching that many files.

Hmm...

 Heres the funny, when I have tried to email the mailing list, my email is
 rejected, both from here, and my airbase email account.

So?

 Anyway, thanks, even if you haven't gotten it resolved.

See the following:

http://cygwin.com/ml/cygwin-announce/2002/msg00011.html

Jason

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/