bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Resend]


From: jimmythetulip19
Subject: [Resend]
Date: Thu, 01 Mar 2001 06:44:01 -0500

[Resend]  Was Not Able To Take Last Entry..  Please Fill Out Again.

Hey... We Haven't Talked In So Long!!  How Have You Been?
Thought I would Forward you this email!

I usually delete these but I opened this one, like what I saw, 
and thought you would like to see this.

http://www.geocities.com/newest8989/

IF THE LINK IS NOT HIGHLIGHTED OR YOU CANNOT CLICK ON IT.
COPY AND PASTE IT IN YOUR BROWSER.











From michael.scheibler@onevision.de Thu Mar 01 08:02:30 2001
Received: from [212.77.172.50] (helo=dali.onevision.de)
        by fencepost.gnu.org with esmtp (Exim 3.16 #1 (Debian))
        id 14YSiz-0007Ju-00
        for <bug-gnustep@gnu.org>; Thu, 01 Mar 2001 08:02:29 -0500
Received: from miro (miro [192.168.7.109])
        by dali.onevision.de (8.11.3/8.11.3/ROSCH) with SMTP id f21D2Rl31491
        for <bug-gnustep@gnu.org>; Thu, 1 Mar 2001 14:02:27 +0100
Message-ID: <054601c0a24f$ddac8140$6d07a8c0@miro>
From: "Michael Scheibler" <michael.scheibler@onevision.de>
To: <bug-gnustep@gnu.org>
Subject: problem  in [NSFileManager fileSystemRepresentationWithPath] on 
mingw32/cygwin
Date: Thu, 1 Mar 2001 14:02:27 +0100
Organization: OneVision Software AG
MIME-Version: 1.0
Content-Type: text/plain;
        charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
Sender: bug-gnustep-admin@gnu.org
Errors-To: bug-gnustep-admin@gnu.org
X-BeenThere: bug-gnustep@gnu.org
X-Mailman-Version: 2.0
Precedence: bulk
List-Help: <mailto:bug-gnustep-request@gnu.org?subject=help>
List-Post: <mailto:bug-gnustep@gnu.org>
List-Subscribe: <http://mail.gnu.org/mailman/listinfo/bug-gnustep>,
        <mailto:bug-gnustep-request@gnu.org?subject=subscribe>
List-Id: Bug reports for the GNUstep programming environment 
<bug-gnustep.gnu.org>
List-Unsubscribe: <http://mail.gnu.org/mailman/listinfo/bug-gnustep>,
        <mailto:bug-gnustep-request@gnu.org?subject=unsubscribe>
List-Archive: <http://mail.gnu.org/pipermail/bug-gnustep/>

e.g. path="/usr/GNUstep/System/Library"


  else if (c_path[0] == '/')
    {
      NSDictionary  *env;
      env = [[NSProcessInfo processInfo] environment];
      if ([env objectForKey: @"CYGWIN"])
        {
          /* FIXME: Find cygwin drive? */
          newpath = @"c:/cygwin";
          newpath = [newpath stringByAppendingPathComponent: path];
          newpath = [newpath stringByReplacingString: @"/" withString:
@"\\"];
        }
    }


I don't have an environment variable named CYGWIN in my CYGWIN bash! Even if
I would export it, my cygwin dir is e:/cygwin. I suggest to export
CYGWIN_HOME as home directory for cygwin:

  else if (c_path[0] == '/')
    {
      NSDictionary  *env;
      NSString      *cyghome;
      env = [[NSProcessInfo processInfo] environment];

      cyghome = [env objectForKey: @"CYGWIN_HOME"];
      if (cyghome)
        {
          /* FIXME: Find cygwin drive? */
          newpath = cyghome;
          newpath = [newpath stringByAppendingPathComponent: path];
          newpath = [newpath stringByReplacingString: @"/" withString:
@"\\"];
        }
    }

Michael



reply via email to

[Prev in Thread] Current Thread [Next in Thread]