Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Grossniklaus Bruno
Hello Igor >if [ ! -d /var/log ] ; then \ > mkdir -p /var/log ; >fi >if [ ! -f /var/log/wtmp ] ; then \ > touch /var/log/wtmp ; >fi > >FWIW, it'd be safer to also check whether this file is a symlink (i.e., >add "-a ! -l /var/log/wtmp" to the test), but this should do for now. What about a chmo

Re: 1.5.5: Problem with Convert::ASN1 module and Perl 5.8.0

2003-10-20 Thread Russell Tokuyama
Gerrit, On Mon, 20 Oct 2003 23:21:26 +0200, Gerrit wrote: >> I noticed that after compiling 5.8.0 from the source distribution >> (5.8.0-5) perldoc fails with an error message about not being able >> to create a temporary file: > >> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Re: Is multithreaded profiling on cygwin possible

2003-10-20 Thread peter garrone
Brian Ford wrote: >On Fri, 17 Oct 2003, peter garrone wrote: > > >> I have dropped the dll import library concept. >> >Probably good. Although, it would still be neat to figure out a way to >trace back to the application "leaf" functions. I guess that will be an >"exercise" for later. Unfortuna

Re: Is multithreaded profiling on cygwin possible?

2003-10-20 Thread peter garrone
>Even if no one else comments, I really appreciate all this work you're >doing! Also, thanks for continuing to send me the updated patches. I >wish I had more time to look over them in detail right now. I'll try and >do that soon. I assume it is ok to give an open invitation for anyone >else wh

RE: OT: Using sed - guru help wanted.

2003-10-20 Thread Hannu E K Nevalainen
> From: Brian Dessent > Sent: Monday, October 20, 2003 10:43 PM > Hannu E K Nevalainen wrote: > > > $ echo ' a b / c d e ' | \ sed -e 's/ *\(.*\) *\/ *\(.*\) */.\1.\2./' > > > > .a b .c d e . > > > > I want the output to be '.a b.c d e.' - that is; strip out the > > trailing spaces. > > > > HOW

RE: Using sed - guru help wanted.

2003-10-20 Thread Buchbinder, Barry (NIH/NIAID)
How about $ echo ' a b / c d e ' | \ sed -e 's/ *\(.*\) *\/ *\(.*\) */.\1.\2./' \ -e 's/ \./\./g' -Original Message- From: Hannu E K Nevalainen [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 3:11 PM To: ML CygWIN Subject: OT: Using sed - guru help wanted. $ echo ' a b

[ANNOUNCEMENT] Updated: crypt-1.1-1

2003-10-20 Thread Corinna Vinschen
I've updated the version of crypt to 1.1-1. Thanks to a patch by Charles Wilson, this release now also provides a shared version of libcrypt. Additionally I rewrote a good part of /usr/share/doc/Cygwin/crypt.README. To update your installation, click on the "Install Cygwin now" link on the http

Re: 1.5.5: Problem with Convert::ASN1 module and Perl 5.8.0

2003-10-20 Thread Gerrit P. Haase
Hallo Russell, Am Montag, 20. Oktober 2003 um 21:18 schriebst du: > I noticed that after compiling 5.8.0 from the source distribution > (5.8.0-5) perldoc fails with an error message about not being able > to create a temporary file: > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Re: OT: Using sed - guru help wanted.

2003-10-20 Thread Brian Dessent
Hannu E K Nevalainen wrote: > $ echo ' a b / c d e ' | \ > sed -e 's/ *\(.*\) *\/ *\(.*\) */.\1.\2./' > .a b .c d e . > > I want the output to be '.a b.c d e.' - that is; strip out the trailing > spaces. > > HOW do I achieve that? ( \s = any ws, \S = any non ws ) > > Obviously \(.*\) grabs/i

Re: OLOCA

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Hernan M. Pulgar N. wrote: > PEBKAC : Problem Exists Between Keyboard And Chair. > > An elegant way to say is the _user_ and not the software or the > hardware who is going wrong. > > Regards >Hernan Hernan, Additions to the OLOCA are mined from the Cygwin maili

Re: OT: Using sed - guru help wanted.

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Hannu E K Nevalainen wrote: > [snip] > HOW do I achieve that? ( \s = any ws, \S = any non ws ) > > Obviously \(.*\) grabs/includes the last space. My brain has stoppped > working, so right now I can't work around that :-I Reversed character lists, e.g. '[^ ]', should work po

Re: 1.5.5: Problem with Convert::ASN1 module and Perl 5.8.0

2003-10-20 Thread Russell Tokuyama
Gerrit, Thanks for the suggestion but I wanted to avoid moving to a new version of Perl since the production application that I'm working on is 5.8.0. I noticed that after compiling 5.8.0 from the source distribution (5.8.0-5) perldoc fails with an error message about not being able to create a t

OT: Using sed - guru help wanted.

2003-10-20 Thread Hannu E K Nevalainen
$ echo ' a b / c d e ' | od -w8 -t x1z 000 20 61 20 62 20 2f 20 63 > a b / c< 010 20 64 20 65 20 0a> d e .< 016 $ echo ' a b / c d e ' | \ sed -e 's/ *\(.*\) *\/ *\(.*\) */.\1.\2./' .a b .c d e . I want the output to be '.a b.c d e.' - that is; strip out the trailing space

Re: Problem with recent GNU ld packages

2003-10-20 Thread Brian Ford
Edouard Gomez ([EMAIL PROTECTED]) wrote: >I found the change that is responsible of my bug. > >2003-04-15 Brian Ford <[EMAIL PROTECTED]> > >* peicode.h (coff_swap_scnhdr_in): If a section holds >uninitialized data and is from an object file or from an >executable image that has not in

Re: Executing programs. Cygwin on NT vs XP

2003-10-20 Thread Larry Hall
At 12:55 PM 10/20/2003, Francisco Iacobelli you wrote: >Hi. >I installed cygwin on NT and on XP. the NT >installation works great. I >compiled the same program using make on both (the >program name is >fid.exe). >Now, on XP I go to the directory where the executable >is and I have to >type "./fid"

Executing programs. Cygwin on NT vs XP

2003-10-20 Thread Francisco Iacobelli
Hi. I installed cygwin on NT and on XP. the NT installation works great. I compiled the same program using make on both (the program name is fid.exe). Now, on XP I go to the directory where the executable is and I have to type "./fid" to execute it. The program doesen't run well either (it is not r

RE: dpkg --info crashes / dpkg-deb --info hangs

2003-10-20 Thread David Byron
On Wed, 15 Oct 2003, Robert Collins wrote: > On Wed, 2003-10-08 at 10:10, David Byron wrote: > > On Tue, 07 Oct 2003, David Byron wrote: > > > > > $ strace dpkg-deb --info dpkg_1.9.21_i386.deb >dpkg-deb.info.strace > > > > > > There appears to be some kind of infinite loop in rm. > > > > Here's

Swap your Music Gear

2003-10-20 Thread Musicians World
Hi, I saw your name on one of the Music web sites. I'm putting together a nationwide musicians bartering (trading) club. Please let me know if you are interested. Thanks. Michael Parkinson [EMAIL PROTECTED] -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

Michael Kelly is on leave.

2003-10-20 Thread Jeanine Bright
I will be out of the office starting 20/10/2003 and will not return until 03/11/2003. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygw

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Jason Tishler wrote: > Bruno, > > On Mon, Oct 20, 2003 at 03:58:28PM +0200, Grossniklaus Bruno wrote: > > >$ ls -l /var/log/wtmp > > >-rw-rw-rw-1 jt Domain U 132748 Oct 15 17:27 /var/log/wtmp > > > > And how/when did you get this dir? > > Sorry I don't reca

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Corinna Vinschen
On Mon, Oct 20, 2003 at 11:33:33AM -0400, Jason Tishler wrote: > I'm not sure what package should be responsible for creating > /var/log/wtmp. Probably the base-files package should do it. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Developer

RE: Is there a 'ping' in cygwin?

2003-10-20 Thread DePriest, Jason R.
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Hughes, Bill > Sent: Monday, October 20, 2003 10:05 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Is there a 'ping' in cygwin? [- snip -] > Now do I bother writing something to rename all .EXE to lower >

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Jason Tishler
Bruno, On Mon, Oct 20, 2003 at 03:58:28PM +0200, Grossniklaus Bruno wrote: > >$ ls -l /var/log/wtmp > >-rw-rw-rw-1 jt Domain U 132748 Oct 15 17:27 /var/log/wtmp > > And how/when did you get this dir? Sorry I don't recall, but I think I created it myself. > Now I have: > $ ls

RE: Is there a 'ping' in cygwin?

2003-10-20 Thread Hughes, Bill
Sent: 20 October 2003 16:05 From: Hughes, Bill > I didn't do that is I 'PING' wouldn't work and 'PING.EXE' did, Doh! should be: I didn't do that as 'PING' wouldn't work and 'PING.EXE' did, > so I (mistakenly) assumed that I would have to use 'ping.exe' and I hate typing > extra chars when I'm co

Re: Is there a 'ping' in cygwin?

2003-10-20 Thread Sam Edge
Christopher Faylor <[EMAIL PROTECTED]> wrote in <[EMAIL PROTECTED]> in gmane.os.cygwin on Mon, 20 Oct 2003 10:36:48 -0400: > >Without the symlink I have to use 'PING.EXE', with it I can use 'ping'. > >Cygwin has two main benefits for me - it makes windows usable (mainly for > >work) and it helps m

RE: setup.exe what versions ?

2003-10-20 Thread Igor Pechtchanski
Oops, yes, you need to select a version. IIRC, the first available version will be the Curr one (in the "Curr" mode). BTW, by "Keep", I didn't mean the "Keep mode" (the radio button at the top), but rather the "Keep" version setting (for each package in the chooser - try it). Igor On Mon

RE: Is there a 'ping' in cygwin?

2003-10-20 Thread Hughes, Bill
Sent: 20 October 2003 15:37 From: Christopher Faylor >On Mon, Oct 20, 2003 at 10:09:59AM +0100, Hughes, Bill wrote: > >Sent: 18 October 2003 13:57 From: Thorsten Kampe ... > >Without the symlink I have to use 'PING.EXE', with it I can use 'ping'. > >Cygwin has two main benefits for me - it makes wi

RE: setup.exe what versions ?

2003-10-20 Thread David Balazic
Maybe I am misunderstanding something here. I do not have gcc installed currently. I wnat it to be installed. If I select "Keep" , that will leave it uninstalled, right ? So I must select a version, right ? I can't try anything right now, as I am updating everything. Regards, David > --

RE: setup.exe what versions ?

2003-10-20 Thread Igor Pechtchanski
Setup already supports versioned dependences. However, it was decided not to use those, as it'll only add to the confusion. Simply upgrade to the latest Cygwin, and things should work. If they don't, report a bug, and it will be fixed eventually. The message you quoted below was referring to th

RE: setup.exe what versions ?

2003-10-20 Thread David Balazic
What happened to that automatic dependency checking, that was talked about a few months ago ? And what about "test versions should not appear for selection if Exp is not choosen" ? I quote Larry Hall : Setup offers test versions to you even when you don't specify "Exp". But it's always done thi

Re: setup.exe what versions ?

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, David Balazic wrote: > Hi! > > I already have cygwin installed and want to install gcc ( I do not have > it currently installed ). > > I run setup.exe, and have two options for gcc , versions 3.3.1-2 and 3.2-3. > > Now I had some problems last time with some experimental packa

Re: Is there a 'ping' in cygwin?

2003-10-20 Thread Christopher Faylor
On Mon, Oct 20, 2003 at 10:09:59AM +0100, Hughes, Bill wrote: >Sent: 18 October 2003 13:57 From: Thorsten Kampe >> > I shall now fix my path and create symlinks so 'ping' works. >> >> There's no sense in creating symlinks if you fix the PATH. >> >> Thorsten > >Without the symlink I have to use 'P

Re: OpenGL and Cygwin

2003-10-20 Thread Andre Bleau
Suresh Venkatasubramanian wrote: Hi, I apologize in advance if this duplicates questions already asked and answered: I have searched the cygwin/cygwin-apps mailing lists already, and there appears to be no clear answer, and most of the FAQs are a bit outdated. I have an opengl program that I wi

setup.exe what versions ?

2003-10-20 Thread David Balazic
Hi! I already have cygwin installed and want to install gcc ( I do not have it currently installed ). I run setup.exe, and have two options for gcc , versions 3.3.1-2 and 3.2-3. Now I had some problems last time with some experimental package versions that are not compatible to the rest and ther

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Grossniklaus Bruno wrote: > Hello Igor > > >/var/log/wtmp should be created by the cygutils package postinstall > > cygutils does not have a postinstall script (?) Oops, you're right. It used to, though, back in 2002, and that's what I found on my system... Apparently, noth

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Grossniklaus Bruno
Hello Igor >/var/log/wtmp should be created by the cygutils package postinstall cygutils does not have a postinstall script (?) $ cygcheck.exe -c | grep cygu cygutils 1.2.1-2OK $ cygcheck -l cygutils /usr/bin/ascii.exe /usr/bin/banner.exe /usr/bin/cal.exe /usr/bin/col.ex

Re: ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Grossniklaus Bruno
Hello Igor >$ net helpmsg 5 >Access is denied. Hey cool. I did'n know this are the "normal" win32 network messages! Thanks -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html

RE: g++ rejects 'timezone tz'

2003-10-20 Thread Jörg Schaible
Alex Vinokur wrote on Monday, October 20, 2003 4:00 PM: > === > Windows 2000 Professional > CYGWIN_NT-5.0 1.5.4(0.94/3/2) > GNU g++ version 3.3.1 (cygming special) > === > > == C++ code : File foo.cpp : BEGIN =

Re: ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Grossniklaus Bruno wrote: > Hello Jason > > >> What does "CreateFileMapping, Win32 error 5" mean? > > $ fgrep 5 /usr/include/w32api/winerror.h | head -1 > > #define ERROR_ACCESS_DENIED 5L > > I'll get the sources ... > > Thanks! > Bruno $ net helpmsg 5 Access is denied. $

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Igor Pechtchanski
On Mon, 20 Oct 2003, Grossniklaus Bruno wrote: > Hello Jason > > >$ ls -l /var/log/wtmp > >-rw-rw-rw-1 jt Domain U 132748 Oct 15 17:27 /var/log/wtmp > > And how/when did you get this dir? > I removed the the hole cygwin installation, installed the basic distro and > finally ins

g++ rejects 'timezone tz'

2003-10-20 Thread Alex Vinokur
=== Windows 2000 Professional CYGWIN_NT-5.0 1.5.4(0.94/3/2) GNU g++ version 3.3.1 (cygming special) === == C++ code : File foo.cpp : BEGIN == #include int main() { struct timeval tv1; timeval tv2; //

Re: ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Grossniklaus Bruno
Hello Jason >> /etc/passwd >> Administrator:unused_by_nt/2000/xp:500:513:zzz:/home/Administrator:/bin/bash >Change the "513" above to "544. Any better? Yes. Now the error 5 is gone :-) Hmm, I get: $ mkpasswd -l SYSTEM:*:18:544:,S-1-5-18:: Administrators:*:544:544:,S-1-5-32-544:: Administrator:

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Grossniklaus Bruno
Hello Jason >$ ls -l /var/log/wtmp >-rw-rw-rw-1 jt Domain U 132748 Oct 15 17:27 /var/log/wtmp And how/when did you get this dir? I removed the the hole cygwin installation, installed the basic distro and finally installed a few packages (like proftpd) Now I have: $ ls -l /var

Re: ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Jason Tishler
Bruno, On Mon, Oct 20, 2003 at 01:18:15PM +0200, Grossniklaus Bruno wrote: > I think /etc/postinstall/proftpd.sh has to create /var/log/wtmp (?) if > it does not yet exist. AFAICT, no: $ ls -l /var/log/wtmp -rw-rw-rw-1 jt Domain U 132748 Oct 15 17:27 /var/log/wtmp Jason --

Re: ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Jason Tishler
Bruno, On Mon, Oct 20, 2003 at 01:24:29PM +0200, Grossniklaus Bruno wrote: > /etc/passwd > Administrator:unused_by_nt/2000/xp:500:513:zzz:/home/Administrator:/bin/bash ^^^ Change the "513" above to "544. Any better? > What does "CreateFileMapping, Win32

Re: ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Pierre A. Humblet
On Mon, Oct 20, 2003 at 01:24:29PM +0200, Grossniklaus Bruno wrote: > > Problems > > - *** CreateFileMapping, Win32 error 5. Terminating. > > /var/log/proftpd.log > > thowl0079.sb.com - ProFTPD 1.2.9rc2 (devel) (built Sun Oct 5 14:06:16 EDT > 2003) standalone mode S

Re: [CYGWIN] Install Probs

2003-10-20 Thread Jason Tishler
Shivananda, On Thu, Oct 16, 2003 at 01:17:29PM +0530, shiva wrote: > I am trying to install postgresql on Win2000 with cygwin Version is > 1.1.3 but ... ^ Cygwin 1.1.3 is very old. I highly recommend upgrading to the latest versions: $ cygcheck -cd cygipc cygrunsrv cygwin postgresql

Re: cygpath hangings: A fix - bash patch enclosed -- bash maintainer please note!

2003-10-20 Thread Ronald Landheer-Cieslak
I've just checked the patch a wee bit closer - it looks OK to me. If you want to push it upstream, please go ahead :) I'm wrapping up release -16 now. I'll make it available for upload on -apps ASAP. Thanks, rlc On Sat, Oct 18, 2003 at 01:58:36AM -0400, Christopher Faylor wrote: > On Wed, Oct

ProFTPD 1.2.9rc2: "CreateFileMapping, Win32 error 5"

2003-10-20 Thread Grossniklaus Bruno
Problems - *** CreateFileMapping, Win32 error 5. Terminating. Versions * ProFTPD 1.2.9rc2 (devel) (built Sun Oct 5 14:06:16 EDT 2003) standalone mode * 949k 2003/09/20 c:\apps\cygwin\bin\cygwin1.dll Cygwin DLL version info: DLL version: 1.5.5 DLL epoch: 19

Re: AW: Patch for building libcrypt.a as a DLL

2003-10-20 Thread Corinna Vinschen
On Mon, Oct 20, 2003 at 01:15:46PM +0200, Gerrit P. Haase wrote: > Hello Ralf, > > >> Libutil.a is deprecated and will not be part of future inetutils > >> releases anymore. > > > Only for cygwin or for the whole unix/linux world ? > > > > It seems that some linux based packages (as far as I kn

ProFTPD 1.2.9rc2: "missing /var/log/wtmp"

2003-10-20 Thread Grossniklaus Bruno
Problems - wtmp /var/log/wtmp: No such file or directory Versions * ProFTPD 1.2.9rc2 (devel) (built Sun Oct 5 14:06:16 EDT 2003) standalone mode * 949k 2003/09/20 c:\apps\cygwin\bin\cygwin1.dll Cygwin DLL version info: DLL version: 1.5.5 DLL epoch: 19 DL

Re: [ANNOUNCEMENT] new package: fltk-1.1.4

2003-10-20 Thread Gerrit P. Haase
Eric wrote: > Great! I sometimes used to build flwm for Cygwin; I assume it will > now be easier for me to do that. Hmmm, since a window manager seems to be an X application and this FLTK package is based on the windows API and not the XFree86 API, I guess this will be not that much help to have

Re: AW: Patch for building libcrypt.a as a DLL

2003-10-20 Thread Gerrit P. Haase
Hello Ralf, >> Libutil.a is deprecated and will not be part of future inetutils >> releases anymore. > Only for cygwin or for the whole unix/linux world ? > It seems that some linux based packages (as far as I know kde releated > package) are using libutil as default, which requires additional

Re: cygpath hangings: A fix - bash patch enclosed -- bash maintainer please note!

2003-10-20 Thread Ronald Landheer-Cieslak
I'll apply your patch and release a new Bash version shortly rlc On Sat, Oct 18, 2003 at 01:58:36AM -0400, Christopher Faylor wrote: > On Wed, Oct 15, 2003 at 04:30:12PM -0400, Christopher Faylor wrote: > >I just managed to duplicate the problem on my system at work. > > > >Stay tuned. > > I ma

Re: ssmtp 2.38.7-4 reads headers from message body.

2003-10-20 Thread Frank Slootweg
Corinna Vinschen" <[EMAIL PROTECTED]> wrote: > On Sat, Oct 18, 2003 at 09:08:48PM +0200, Frank Slootweg wrote: > > Anything else you need? > > Your /etc/ssmtp/ssmtp.conf file would be interesting. Here it is (wrapped (at 72 columns) by OE): # # /etc/ssmtp.conf -- a config file for sSMTP sendm

Re: Problems with phread_mutexattr_init

2003-10-20 Thread Thomas Pfaff
Joost Kraaijeveld wrote: Hi Thomas, Sorry for contacting you outside the Cgwin mailing list directly but I am really desperate for an answer. I searched the mailinglist, Googled, read the IEEE specs, studied several PThread implementations, actually ran the code on BSD, Linus, Solaris and Cygwin b

AW: Patch for building libcrypt.a as a DLL

2003-10-20 Thread Ralf Habacker
> On Sun, Oct 19, 2003 at 09:31:44PM +0200, Ralf Habacker wrote: > > BTW: There is another lib, libutil.a in the inetutils package, > which causes > > same libtool problems > > Please don't use libutil.a anymore. All functionality intentionally > exported from libutil.a is now exported genuinely b

RE: Is there a 'ping' in Cygwin?

2003-10-20 Thread Hughes, Bill
Sent: 18 October 2003 13:57 From: Thorsten Kampe > > I shall now fix my path and create symlinks so 'ping' works. > > There's no sense in creating symlinks if you fix the PATH. > > Thorsten Without the symlink I have to use 'PING.EXE', with it I can use 'ping'. Cygwin has two main benefits for m

RE: cygpath hangings: A fix - bash patch enclosed -- bash maintai ner please note!

2003-10-20 Thread Steve Fairbairn
> -Original Message- > From: Hannu E K Nevalainen > Sent: 18 October 2003 13:22 > Subject: RE: cygpath hangings: A fix - bash patch enclosed -- bash > maintainer please note! > > The simple test works flawlessly. > ditto > I've run my setup-based test with success too. > My gratulations

gcc-mingw cannot link with MSVC compiled static libraries

2003-10-20 Thread jean-michel . rouet
Hi all, I recently ugrade to gcc 3.3.1-2 gcc-mingw 20030911-3 But now got some problems linking MSVC compiled static libraries with the gcc and the -mno-cygwin option here is an example where MS.c/MS.h which contains a very simple function (plus, see code bel